Skip to content

Commit

Permalink
Update panels
Browse files Browse the repository at this point in the history
  • Loading branch information
v-zhuravlev committed Sep 27, 2023
1 parent 62c4666 commit 569b248
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions windows-observ-lib/panels.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -260,14 +260,14 @@ local commonlib = import 'github.com/grafana/jsonnet-libs/common-lib/common/main
),
memoryUsageTsBytes: commonlib.panels.memory.timeSeries.usageBytes.new(targets=[t.memoryUsedBytes, t.memoryTotalBytes]),
diskTotalC:
commonlib.panels.filesystem.stat.total.new(
commonlib.panels.disk.stat.total.new(
'Disk C: size',
targets=[t.diskTotalC],
description=|||
Total storage capacity on the primary hard drive (usually the system drive) of a computer running a Windows operating system.
|||
),
diskUsage: commonlib.panels.filesystem.table.usage.new(
diskUsage: commonlib.panels.disk.table.usage.new(
totalTarget=
(t.diskTotal
+ g.query.prometheus.withFormat('table')
Expand All @@ -277,7 +277,7 @@ local commonlib = import 'github.com/grafana/jsonnet-libs/common-lib/common/main
+ g.query.prometheus.withInstant(true),
groupLabel='volume'
),
diskUsagePercent: commonlib.panels.filesystem.timeSeries.usagePercent.new(
diskUsagePercent: commonlib.panels.disk.timeSeries.usagePercent.new(
targets=[t.diskUsagePercent]
),
diskUsagePercentTopK: commonlib.panels.all.timeSeries.topkPercentage.new(
Expand Down

0 comments on commit 569b248

Please sign in to comment.