I am using Grafana 8.5 to display signal processing results in my application.
For example, I need to display a signal/noise graph. This value can be either positive or negative, so I use Gauge.
I am using time series for visualisation and query like this
idelta(MyApp_gauge{Channel_type=“Global”,Metric_name=“SNR_average”,Channel_index=“0”}[1m])
The problem is that the graph shows data that is about twice as large as the real data (real data is about 18-20, and about 45 on the chart).
Perhaps another query should be used?
How can I get the same values on the chart as in my application?