Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

monitoring long-term network speed #23

Open
milahu opened this issue Dec 31, 2023 · 0 comments
Open

monitoring long-term network speed #23

milahu opened this issue Dec 31, 2023 · 0 comments

Comments

@milahu
Copy link

milahu commented Dec 31, 2023

im looking for tools to measure my exact network speed (exact to one minute) over one month
historical data should not be compressed like RRD (round-robin database)

use case: document the illegal network speed throttling by my ISP
which causes my network speed to drop to near-zero for about 1/3 of the month
(this speed throttling is illegal, because my ISP guarantees a minimum speed)

there are hundreds of apps to monitor my network traffic (bytes)
but i want to monitor both traffic (bytes) and speed (bytes per second)

possible solutions

grafana

grafana + prometheus + node exporter
https://grafana.com/grafana/dashboards/?search=Node+Exporter

source

rate(node_network_receive_bytes_total{device="eth0"}[1m])
rate(node_network_transmit_bytes_total{device="eth0"}[1m])

source

irate(node_network_receive_bytes_total{instance="192.168.207.161:9100",device="ens33"}[1m]) * 8
irate(node_network_transmit_bytes_total{instance="192.168.207.161:9100",device="ens33"}[1m]) * 8

speedometer

speedometer - too simple

not wanted

internet speed monitors based on speedtest.net
my network is already saturated, so i dont want to add more network load

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant