Open bboreham opened 3 years ago
This issue has been automatically marked as stale because it has not had any activity in the past 60 days. The next time this stale check runs, the stale label will be removed if there is new activity. The issue will be closed after 15 days if there is no new activity. Please apply keepalive label to exempt this Issue.
Describe the bug Rates are using a
[4m]
window. This stems from here: https://github.com/grafana/tempo/blob/eabe781c0f0985b0835c6c7472d8d0be1144c82f/operations/tempo-mixin/dashboard-utils.libsonnet#L38 coupled with the use of[$__rate_interval]
which is floored at 4xinterval
. E.g. https://github.com/grafana/tempo/blob/c865ea8a41b7c5cb26862302390aa13f55e123c5/operations/tempo-mixin/yamls/tempo-operational.json#L612To Reproduce Bring up a Tempo dashboard, e.g.:
Expected behavior with minimum edited to 15s:
Environment: N/A
Additional Context There are also lots of
rate(...[$__interval])
, so in the dashboards, which would then have a too-small interval if we just changed the one line at the top.$__rate_interval
should be used throughout.