Skip to content

Commit

Permalink
Merge pull request #876 from jkroepke/iops
Browse files Browse the repository at this point in the history
Fix IOPS panel
  • Loading branch information
povilasv authored Oct 30, 2023
2 parents 3efc200 + de24ed9 commit e6b3318
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions dashboards/resources/cluster.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -101,18 +101,18 @@ local template = grafana.template;
},
'Value #A': {
alias: 'IOPS(Reads)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #B': {
alias: 'IOPS(Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #C': {
alias: 'IOPS(Reads + Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #D': {
alias: 'Throughput(Read)',
Expand Down
12 changes: 6 additions & 6 deletions dashboards/resources/namespace.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -102,18 +102,18 @@ local template = grafana.template;
},
'Value #A': {
alias: 'IOPS(Reads)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #B': {
alias: 'IOPS(Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #C': {
alias: 'IOPS(Reads + Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #D': {
alias: 'Throughput(Read)',
Expand Down
12 changes: 6 additions & 6 deletions dashboards/resources/pod.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -73,18 +73,18 @@ local template = grafana.template;
},
'Value #A': {
alias: 'IOPS(Reads)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #B': {
alias: 'IOPS(Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #C': {
alias: 'IOPS(Reads + Writes)',
unit: 'short',
decimals: -1,
unit: 'iops',
decimals: 3,
},
'Value #D': {
alias: 'Throughput(Read)',
Expand Down

0 comments on commit e6b3318

Please sign in to comment.