Skip to content

Commit d1cbd53

Browse files
authored
Update README.md
Fixed some typos and improved formatting.
1 parent 72231db commit d1cbd53

File tree

1 file changed

+14
-15
lines changed

1 file changed

+14
-15
lines changed

check_salt-minion/README.md

+14-15
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
# About check_salt-minion
2-
check_salt-minion is a plugin for Naemon / op5 / Nagios and other Nagios compatible monitoring software to
3-
end-to-end test salt-minion daemons.
2+
check_salt-minion is a plugin for Naemon / op5 / Nagios and other Nagios compatible monitoring software to end-to-end test salt-minion daemons.
43

54
This plugin contains 3 different files
65
#### check_salt-minion
76
The actual check command that are used by nrpe
87

98
#### ping_salt-minion
10-
Script that test salt-minion by issuing test.ping command for all accepted salt-minions and stores the result that are used by check_salt-minion. This script contains hard coded path's for binaries since it most likely will be executed by root user.
11-
Tested on Redhat 6.6, CentOS 6.6 and Ubuntu 14.04. Please make sure all path's is correct for your system.
9+
Script that test salt-minion by issuing test.ping command for all accepted salt-minions and stores the result that are used by `check_salt-minion`. This script contains hard coded paths for binaries since it most likely will be executed by root user.
10+
Tested on Redhat 6.6, CentOS 6.6 and Ubuntu 14.04. Please make sure all paths are correctly set for your system.
1211

1312
#### check_minions.php
1413
pnp template to be used with pnp4nagios (http://pnp4nagios.org).
1514

1615
# Installation
1716
### check_salt-minion
18-
Copy check_salt-minion to your nrpe plugin folder on your salt-master host
19-
Make sure check_salt-minion can be executed (chmod +x path_to_check_salt-minion)
17+
Copy `check_salt-minion` to your nrpe plugin folder on your salt-master host
18+
Make sure `check_salt-minion` can be executed (`chmod +x path_to_check_salt-minion`)
2019

2120
### ping_salt-minion
22-
Copy ping_salt-minion to /etc/cron.hourly on your salt-master host.
23-
Make sure ping_salt-minion can be executed (chmod +x path_to_ping_salt-minion)
21+
Copy `ping_salt-minion` to `/etc/cron.hourly` on your salt-master host.
22+
Make sure `ping_salt-minion` can be executed (`chmod +x path_to_ping_salt-minion`)
2423

25-
By placing ping_salt-minion in /etc/cron.hourly the script will be executed once every hour. If you have many thousands of salt-minions you might want to move the script to cron.daily instead since it will take some time to test all salt-minions.
24+
By placing ping_salt-minion in `/etc/cron.hourly` the script will be executed once every hour. If you have many thousands of salt-minions you might want to move the script to cron.daily instead since it will take some time to test all salt-minions.
2625

2726
If you want to use a custom scheduler instead, please execute the script via cron
2827

@@ -32,25 +31,25 @@ Copy check_minions.php to your pnp template folder on the monitoring host and ma
3231
- https://kb.op5.com/display/HOWTOs/Add+new+templates+to+op5+Monitor+performance+graphs
3332

3433
# Exclude salt-minion
35-
If you want to exclude salt-minions from the test please create "/var/cache/check_salt-minion/exclude-salt-minion.txt" on the same host running ping_salt-minion and and one salt-minion id per row
34+
If you want to exclude salt-minions from the test please create `/var/cache/check_salt-minion/exclude-salt-minion.txt` on the same host running ping_salt-minion and one salt-minion id per row
3635
```
3736
minion1
3837
minion2
3938
minion3
4039
```
4140
# Test ping_salt-minion
42-
It's a good idéa to test pign_salt-minion the first time to make sure everything works as expected.
43-
```
41+
It's a good idea to test ping_salt-minion the first time to make sure everything works as expected.
42+
```bash
4443
sudo /etc/cron.hourly/ping_salt-minion
4544
```
4645

47-
By default, the versbose flag in the script is set to true. Once the script has executed sucessfully first time you can disable output by changing the row:
48-
```
46+
By default, the verbose flag in the script is set to true. Once the script has executed successfully first time you can disable output by changing the row:
47+
```bash
4948
# Set VERBOSE to 1 if you would like some output
5049
VERBOSE="1"
5150
```
5251
to
53-
```
52+
```bash
5453
# Set VERBOSE to 1 if you would like some output
5554
VERBOSE="0"
5655
```

0 commit comments

Comments
 (0)