Skip to content

Commit

Permalink
Fix JaegerQueryReqsFailing alert rule missing 'operation' in query (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
james-ryans committed Oct 3, 2023
1 parent fac5baf commit b83bda6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring/jaeger-mixin/prometheus_alerts.yml
Expand Up @@ -61,7 +61,7 @@
"annotations":
"message": |
{{ $labels.job }} {{ $labels.instance }} is seeing {{ printf "%.2f" $value }}% query errors on {{ $labels.operation }}.
"expr": "100 * sum(rate(jaeger_query_requests_total{result=\"err\"}[1m])) by (instance, job, namespace) / sum(rate(jaeger_query_requests_total[1m])) by (instance, job, namespace)> 1"
"expr": "100 * sum(rate(jaeger_query_requests_total{result=\"err\"}[1m])) by (instance, job, namespace, operation) / sum(rate(jaeger_query_requests_total[1m])) by (instance, job, namespace, operation)> 1"
"for": "15m"
"labels":
"severity": "warning"

0 comments on commit b83bda6

Please sign in to comment.