You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.
4
3
5
4
This plugin contains 3 different files
6
5
#### check_salt-minion
7
6
The actual check command that are used by nrpe
8
7
9
8
#### 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.
12
11
13
12
#### check_minions.php
14
13
pnp template to be used with pnp4nagios (http://pnp4nagios.org).
15
14
16
15
# Installation
17
16
### 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`)
20
19
21
20
### 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`)
24
23
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.
26
25
27
26
If you want to use a custom scheduler instead, please execute the script via cron
28
27
@@ -32,25 +31,25 @@ Copy check_minions.php to your pnp template folder on the monitoring host and ma
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
36
35
```
37
36
minion1
38
37
minion2
39
38
minion3
40
39
```
41
40
# 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
44
43
sudo /etc/cron.hourly/ping_salt-minion
45
44
```
46
45
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:
0 commit comments