diff --git a/doc/Extensions/Fast-Ping-Check.md b/doc/Extensions/Fast-Ping-Check.md index af6193e7a0..f261763070 100644 --- a/doc/Extensions/Fast-Ping-Check.md +++ b/doc/Extensions/Fast-Ping-Check.md @@ -18,12 +18,12 @@ to run ping checks as quickly as possible without increasing snmp load on your d ### Setting the ping check to 1 minute 1. Change the ping_rrd_step setting in config.php - ```php + ``` $config['ping_rrd_step'] = 60; ``` 2. Update the rrd files to change the step (step is hardcoded at file creation in rrd files) - ```bash + ``` ./scripts/rrdstep.php -h all ``` @@ -41,12 +41,12 @@ We add two entries, but add a delay before one. >Alerts are only run every minute, so you will have to modify them as well. Remove the original alerts.php entry. 1. Set ping_rrd_step - ```php + ``` $config['ping_rrd_step'] = 30; ``` 2. Update the rrd files - ```bash + ``` ./scripts/rrdstep.php -h all ```