-
-
Save yogeek/de22a2b1ae575117f1adf0a0623fc569 to your computer and use it in GitHub Desktop.
prometheus-adapter helm chart values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
rbac: | |
create: true | |
prometheus: | |
url: http://linkerd-prometheus.linkerd.svc.cluster.local | |
port: 9090 | |
rules: | |
default: false | |
custom: | |
- seriesQuery: 'response_latency_ms_bucket{namespace!="",pod!=""}' | |
resources: | |
template: <<.Resource>> | |
name: | |
matches: ^(.*)_bucket$ | |
as: "${1}_50th" | |
metricsQuery: histogram_quantile(0.50, sum(irate(<<.Series>>{<<.LabelMatchers>>, direction="inbound"}[5m])) by (le, <<.GroupBy>>)) | |
- seriesQuery: 'response_latency_ms_bucket{namespace!="",pod!=""}' | |
resources: | |
template: <<.Resource>> | |
name: | |
matches: ^(.*)_bucket$ | |
as: "${1}_95th" | |
metricsQuery: histogram_quantile(0.95, sum(irate(<<.Series>>{<<.LabelMatchers>>, direction="inbound"}[5m])) by (le, <<.GroupBy>>)) | |
- seriesQuery: 'response_latency_ms_bucket{namespace!="",pod!=""}' | |
resources: | |
template: <<.Resource>> | |
name: | |
matches: ^(.*)_bucket$ | |
as: "${1}_99th" | |
metricsQuery: histogram_quantile(0.99, sum(irate(<<.Series>>{<<.LabelMatchers>>, direction="inbound"}[5m])) by (le, <<.GroupBy>>)) | |
- seriesQuery: 'response_total{namespace!="",pod!=""}' | |
resources: | |
template: <<.Resource>> | |
name: | |
matches: "^(.*)_total$" | |
as: "${1}_per_second" | |
metricsQuery: |- | |
sum( | |
irate( | |
<<.Series>>{ | |
<<.LabelMatchers>>, | |
direction="inbound", | |
tls="true" | |
}[30s] | |
) | |
) by ( | |
<<.GroupBy>> | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment