Add query scheduler to "Read Resources" mixin dashboard (#6028)

This component has been around for a while but has not been added to the
loki-mixin yet.

Signed-off-by: Christian Haudum <christian.haudum@gmail.com>
pull/6056/head
Christian Haudum 3 years ago committed by GitHub
parent c4ebfd3020
commit e2cde40009
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      production/loki-mixin/dashboards/loki-reads-resources.libsonnet

@ -32,6 +32,18 @@ local utils = import 'mixin-utils/utils.libsonnet';
$.goHeapInUsePanel('Memory (go heap inuse)', 'query-frontend'),
)
)
.addRow(
$.row('Query Scheduler')
.addPanel(
$.containerCPUUsagePanel('CPU', 'query-scheduler'),
)
.addPanel(
$.containerMemoryWorkingSetPanel('Memory (workingset)', 'query-scheduler'),
)
.addPanel(
$.goHeapInUsePanel('Memory (go heap inuse)', 'query-scheduler'),
)
)
.addRow(
$.row('Querier')
.addPanel(

Loading…
Cancel
Save