- What Grafana version and what operating system are you using?
Grafana 8.3.3 on Raspbian 11
- What are you trying to achieve?
Get a panel with total bytes received (in MB), for a monitoring dashboard of my RP4
- How are you trying to achieve it?
SELECT mean(“bytes_recv”) FROM “net” WHERE time >= now() - 5m and time <= now() GROUP BY time(200ms) fill(null)
- What happened?
Amount shown is not accurate
- What did you expect to happen?
select bytes_recv from net limit 10
name: net
time bytes_recv
1639567740000000000 764927256
1639567740000000000 0
1639567750000000000 764945614
1639567750000000000 0
1639567760000000000 764972573
1639567760000000000 0
1639567770000000000 764979437
1639567770000000000 0
1639567780000000000 764987662
1639567780000000000 0
—> I assume 764987662 is the total number of bytes received. This translates into 764 MB, which i was expecting.
The value in the panel should be 764MB and not 70.5MB as shown.
see this screenshot: