Skip to content

Commit

Permalink
Don't filter routes in authfe route rules
Browse files Browse the repository at this point in the history
  • Loading branch information
jml committed Oct 25, 2016
1 parent a9de8c1 commit bb3974a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions monitoring/prometheus/recording.rules
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
histogram_quantile(0.5, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe",route!~"(admin|metrics).*"}[5m])) by (le))

route:scope_authfe_request_duration_seconds:99quantile =
histogram_quantile(0.99, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe",route!~"(admin|metrics).*"}[5m])) by (le, route))
histogram_quantile(0.99, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe"}[5m])) by (le, route))
route:scope_authfe_request_duration_seconds:95quantile =
histogram_quantile(0.95, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe",route!~"(admin|metrics).*"}[5m])) by (le, route))
histogram_quantile(0.95, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe"}[5m])) by (le, route))
route:scope_authfe_request_duration_seconds:50quantile =
histogram_quantile(0.5, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe",route!~"(admin|metrics).*"}[5m])) by (le, route))
histogram_quantile(0.5, sum(rate(scope_request_duration_seconds_bucket{ws="false",job="default/authfe"}[5m])) by (le, route))

job:scope_request_duration_seconds:99quantile =
histogram_quantile(0.99, sum(rate(scope_request_duration_seconds_bucket{ws="false"}[5m])) by (job,le))
Expand Down

0 comments on commit bb3974a

Please sign in to comment.