Skip to content

Commit

Permalink
Add query scheduler to "Read Resources" mixin dashboard (#6028)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
chaudum committed Apr 29, 2022
1 parent c4ebfd3 commit e2cde40
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions production/loki-mixin/dashboards/loki-reads-resources.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit e2cde40

Please sign in to comment.