Different collection intervals compatibility in Grafana 7.5.5
See original GitHub issueDescribe the bug With Grafana 7.5.5 version, stacking option with Graph visualization is not working properly with different metric collection intervals.
Screenshot of the issue:
Screenshot of expected behavior
There’s a workaround to use groupBy(5m, avg)
to group all metrics with 5 minutes interval.
Software versions
Grafana | Zabbix | Grafana-Zabbix Plugin |
---|---|---|
7.5.5 | x.x.x | 4.1.4 |
Issue Analytics
- State:
- Created 2 years ago
- Reactions:1
- Comments:6 (4 by maintainers)
Top Results From Across the Web
Configure Grafana | Grafana documentation
By default it is set to false for compatibility reasons. ... Grafana needs a database to store users and dashboards (and other things)....
Read more >Release notes for Grafana 7.5.5
In this webinar, learn how to leverage Grafana's plugin ecosystem for access to 80+ data sources, including plugins for Datadog, Splunk, MongoDB, and...
Read more >Alerting | Grafana documentation
A single Grafana Alerting page consolidates both Grafana-managed alerts and alerts that reside in your Prometheus-compatible data source in one single place ...
Read more >Upgrade Grafana | Grafana documentation
In order to make this a reality, Grafana upgrades are backward compatible and the upgrade process is simple and quick. Upgrading between many...
Read more >Elasticsearch data source | Grafana documentation
Hover the cursor over the Configuration (gear) icon. Select Data Sources. Select the Elasticsearch data source. Set the data source's basic configuration ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@k-korn yes, in this case I decided to perform it in a bit different way. I use interpolation (which original stacking algorithm used in Grafana) to find all common points and prepare series for proper stacking. This is an example of how it works:
Original Zabbix data:
Prepared for stacking:
Looks like the fix does no cover all possible cases, so I have to find better solution.