From 3a2dc5149b1cf2e41794b741e4cb24ee107f069e Mon Sep 17 00:00:00 2001 From: Ilya Mashchenko Date: Mon, 31 Oct 2022 21:24:19 +0200 Subject: add ping dashboard info and alarms (#13916) Co-authored-by: Shyam Sreevalsan --- web/gui/dashboard_info.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'web') diff --git a/web/gui/dashboard_info.js b/web/gui/dashboard_info.js index 530f15e263..c61ad2bb12 100644 --- a/web/gui/dashboard_info.js +++ b/web/gui/dashboard_info.js @@ -303,6 +303,12 @@ netdataDashboard.menu = { info: 'Network latency statistics, via fping. fping is a program to send ICMP echo probes to network hosts, similar to ping, but much better performing when pinging multiple hosts. fping versions after 3.15 can be directly used as netdata plugins.' }, + 'ping': { + title: 'Ping', + icon: '', + info: 'Measures round-trip time and packet loss by sending ping messages to network hosts.' + }, + 'gearman': { title: 'Gearman', icon: '', @@ -7564,6 +7570,18 @@ netdataDashboard.context = { 'More info.' }, + // Ping + + 'ping.host_rtt': { + info: 'Round-trip time (RTT) is the time it takes for a data packet to reach its destination and return back to its original source.' + }, + 'ping.host_packet_loss': { + info: 'Packet loss occurs when one or more transmitted data packets do not reach their destination. Usually caused by data transfer errors, network congestion or firewall blocking. ICMP echo packets are often treated as lower priority by routers and target hosts, so ping test packet loss may not always translate to application packet loss.' + }, + 'ping.host_packets': { + info: 'Number of ICMP messages sent and received. These counters should be equal if there is no packet loss.' + }, + // ------------------------------------------------------------------------ }; -- cgit v1.2.3