Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@
"datasource": "${prometheusds}",
"editorMode": "builder",
"exemplar": false,
"expr": "argo_pod_missing{juju_application=~\"$juju_application\",juju_model=~\"$juju_model\",juju_model_uuid=~\"$juju_model_uuid\",juju_unit=~\"$juju_unit\"}",
"expr": "argo_workflows_pod_missing_total{juju_application=~\"$juju_application\",juju_model=~\"$juju_model\",juju_model_uuid=~\"$juju_model_uuid\",juju_unit=~\"$juju_unit\"}",
"format": "time_series",
"instant": false,
"interval": "",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
alert: ArgoWorkflowPodsMissing
expr: max_over_time(argo_pod_missing[5m]) > 0
for: 5m
expr: sum without (node_phase, recently_started) (increase(argo_workflows_pod_missing_total[10m])) > 0
for: 0s
labels:
severity: critical
annotations:
summary: "Missing workflow pods detected"
description: >
Detected missing workflow pods in the last 5 minutes.
Missing pods are expected pods that never appeared or were deleted.
See https://argo-workflows.readthedocs.io/en/release-3.7/metrics/#argo_pod_missing for details.
The number of missing workflow pods has increased in the past 10 minutes.
This indicates that expected pods never appeared or were deleted unexpectedly.
See https://argo-workflows.readthedocs.io/en/release-3.7/metrics/#pod_missing for details.
Loading