summaryrefslogtreecommitdiffstats
path: root/health
diff options
context:
space:
mode:
authorIlya Mashchenko <ilya@netdata.cloud>2022-12-09 17:35:53 +0200
committerGitHub <noreply@github.com>2022-12-09 17:35:53 +0200
commit4322b1973d23a93d4e78a6cdf4c6da295da9f71c (patch)
tree7e6c2705a96ab94fe4315db11432282354fbcd05 /health
parentab28a99a4837b6a5de4073a6200cdb098a3c0920 (diff)
remove deprecated fping.plugin in accordance with v1.37.0 deprecation notice (#14073)
Diffstat (limited to 'health')
-rw-r--r--health/Makefile.am1
-rw-r--r--health/QUICKSTART.md2
-rw-r--r--health/health.d/fping.conf64
3 files changed, 1 insertions, 66 deletions
diff --git a/health/Makefile.am b/health/Makefile.am
index 7c8d7f9d2f..f97ca40d37 100644
--- a/health/Makefile.am
+++ b/health/Makefile.am
@@ -42,7 +42,6 @@ dist_healthconfig_DATA = \
health.d/dockerd.conf \
health.d/entropy.conf \
health.d/exporting.conf \
- health.d/fping.conf \
health.d/geth.conf \
health.d/ioping.conf \
health.d/gearman.conf \
diff --git a/health/QUICKSTART.md b/health/QUICKSTART.md
index bc2da2df19..25adcdbd44 100644
--- a/health/QUICKSTART.md
+++ b/health/QUICKSTART.md
@@ -52,7 +52,7 @@ Navigate to the health configuration directory to see all the available files an
cd /usr/lib/netdata/conf.d/health.d/
ls
adaptec_raid.conf entropy.conf memory.conf squid.conf
-am2320.conf fping.conf mongodb.conf
+am2320.conf mongodb.conf
apache.conf mysql.conf swap.conf
...
```
diff --git a/health/health.d/fping.conf b/health/health.d/fping.conf
deleted file mode 100644
index bb22419faa..0000000000
--- a/health/health.d/fping.conf
+++ /dev/null
@@ -1,64 +0,0 @@
-
- template: fping_last_collected_secs
- families: *
- on: fping.latency
- class: Latency
- type: Other
-component: Network
- calc: $now - $last_collected_t
- units: seconds ago
- every: 10s
- warn: $this > (($status >= $WARNING) ? ($update_every) : ( 5 * $update_every))
- crit: $this > (($status == $CRITICAL) ? ($update_every) : (60 * $update_every))
- delay: down 5m multiplier 1.5 max 1h
- info: number of seconds since the last successful data collection
- to: sysadmin
-
- template: fping_host_reachable
- families: *
- on: fping.latency
- class: Errors
- type: Other
-component: Network
- calc: $average != nan
- units: up/down
- every: 10s
- crit: $this == 0
- delay: down 30m multiplier 1.5 max 2h
- info: reachability status of the network host (0: unreachable, 1: reachable)
- to: sysadmin
-
- template: fping_host_latency
- families: *
- on: fping.latency
- class: Latency
- type: Other
-component: Network
- lookup: average -10s unaligned of average
- units: ms
- every: 10s
- green: 500
- red: 1000
- warn: $this > $green OR $max > $red
- crit: $this > $red
- delay: down 30m multiplier 1.5 max 2h
- info: average latency to the network host over the last 10 seconds
- to: sysadmin
-
- template: fping_packet_loss
- families: *
- on: fping.quality
- class: Errors
- type: System
-component: Network
- lookup: average -10m unaligned of returned
- calc: 100 - $this
- green: 1
- red: 10
- units: %
- every: 10s
- warn: $this > $green
- crit: $this > $red
- delay: down 30m multiplier 1.5 max 2h
- info: packet loss ratio to the network host over the last 10 minutes
- to: sysadmin