Skip to content

Commit

Permalink
Update receive overview dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
kakkoyun committed Sep 3, 2019
1 parent a4b19b8 commit 4e1bfa7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions jsonnet/thanos-mixin/dashboards/receive.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -141,18 +141,18 @@ local g = import '../lib/thanos-grafana-builder/builder.libsonnet';
g.row('Receive')
.addPanel(
g.panel('Incoming Requests Rate') +
g.httpQpsPanel('thanos_http_requests_total', 'namespace="$namespace",%(thanosReceiveSelector)s' % $._config) +
g.httpQpsPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(thanosReceiveSelector)s' % $._config) +
g.addDashboardLink($._config.grafanaThanos.dashboardReceiveTitle)
)
.addPanel(
g.panel('Incoming Requests Errors') +
g.httpErrPanel('thanos_http_requests_total', 'namespace="$namespace",%(thanosReceiveSelector)s' % $._config) +
g.httpErrPanel('http_requests_total', 'handler="receive",namespace="$namespace",%(thanosReceiveSelector)s' % $._config) +
g.addDashboardLink($._config.grafanaThanos.dashboardReceiveTitle)
)
.addPanel(
g.sloLatency(
'Incoming Requests Latency 99th Percentile',
'thanos_http_request_duration_seconds_bucket{namespace="$namespace",%(thanosReceiveSelector)s}' % $._config,
'http_request_duration_seconds_bucket{handler="receive",namespace="$namespace",%(thanosReceiveSelector)s}' % $._config,
0.99,
0.5,
1
Expand Down

0 comments on commit 4e1bfa7

Please sign in to comment.