Skip to content

monitoring long-term network speed #23

@milahu

Description

@milahu

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions