Skip to content

Commit

Permalink
mixin-utils: drop unsupported step target parameter (#1128)
Browse files Browse the repository at this point in the history
The actual parameter is called interval so step has no effect.

Signed-off-by: György Krajcsovits <[email protected]>
  • Loading branch information
krajorama authored Jan 18, 2024
1 parent 359f760 commit 3d58bd5
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions mixin-utils/utils.libsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ local g = import 'grafana-builder/grafana.libsonnet';
format: 'time_series',
legendFormat: '%(legend)s99th percentile' % legend,
refId: 'A',
step: 10,
},
{
expr: 'histogram_quantile(0.50, sum by (%(sumBy)s) (%(labels)s:%(metric)s_bucket:sum_rate%(selector)s)) * %(multiplier)s' % {
Expand All @@ -81,7 +80,6 @@ local g = import 'grafana-builder/grafana.libsonnet';
format: 'time_series',
legendFormat: '%(legend)s50th percentile' % legend,
refId: 'B',
step: 10,
},
{
expr: '%(multiplier)s * sum(%(labels)s:%(metric)s_sum:sum_rate%(selector)s)%(sumBy)s / sum(%(labels)s:%(metric)s_count:sum_rate%(selector)s)%(sumBy)s' % {
Expand All @@ -94,7 +92,6 @@ local g = import 'grafana-builder/grafana.libsonnet';
format: 'time_series',
legendFormat: '%(legend)sAverage' % legend,
refId: 'C',
step: 10,
},
],
},
Expand Down

0 comments on commit 3d58bd5

Please sign in to comment.