Skip to content

Commit

Permalink
fix: change override literal from max to maximum
Browse files Browse the repository at this point in the history
  • Loading branch information
Irene Chong committed Nov 17, 2023
1 parent b670375 commit 0b44dc8
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ local createGraphPanel(sliSpec) =
selectors: std.join(',', dashboardSelectors),
evalInterval: sliSpec.evalInterval,
},
legendFormat='max saturation',
legendFormat='maximum saturation',
),
).addTarget(
prometheus.target(
Expand All @@ -94,16 +94,16 @@ local createGraphPanel(sliSpec) =
selectors: std.join(',', dashboardSelectors),
evalInterval: sliSpec.evalInterval,
},
legendFormat='avg period where max saturation > %s percentage' % sliSpec.counterPercentTarget,
legendFormat='avg period where maximum saturation > %s percentage' % sliSpec.counterPercentTarget,
)
).addSeriesOverride(
{
alias: '/avg period where max saturation > %s percentage/' % sliSpec.counterPercentTarget,
alias: '/avg period where maximum saturation > %s percentage/' % sliSpec.counterPercentTarget,
color: 'red',
},
).addSeriesOverride(
{
alias: '/max saturation/',
alias: '/maximum saturation/',
color: 'green',
},
);
Expand Down

0 comments on commit 0b44dc8

Please sign in to comment.