Browse Source

Replace mistaken ) with }, resulting in parsable promql

Signed-off-by: Ryan J. Geyer <me@ryangeyer.com>
pull/2548/head
Ryan J. Geyer 2 years ago committed by Johannes 'fish' Ziemke
parent
commit
5e552bac02
  1. 2
      docs/node-mixin/dashboards/use.libsonnet

2
docs/node-mixin/dashboards/use.libsonnet

@ -453,7 +453,7 @@ local diskSpaceUtilisation =
sum ( sum (
sum without (device) ( sum without (device) (
max without (fstype, mountpoint, instance, pod) (( max without (fstype, mountpoint, instance, pod) ((
node_filesystem_size_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s) - node_filesystem_avail_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s} node_filesystem_size_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s} - node_filesystem_avail_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s}
) != 0) ) != 0)
) )
/ scalar(sum(max without (fstype, mountpoint) (node_filesystem_size_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s}))) / scalar(sum(max without (fstype, mountpoint) (node_filesystem_size_bytes{%(nodeExporterSelector)s, %(fsSelector)s, %(fsMountpointSelector)s})))

Loading…
Cancel
Save