Collection of CheckMK checks (see https://checkmk.com/). All checks and plugins are provided as is. Absolutely no warranty. Send any comments to thl-cmk[at]outlook[dot]com

Skip to content
CONTRIBUTING.md 1.16 KiB
Newer Older
thl-cmk's avatar
thl-cmk committed
# Contributing

If you have any issues or ideas for improvement you can contact me in the [CMK forum](https://forum.checkmk.com/) by sending me a direct message to `@thl-cmk` (this is the prefered way) or send an email to _thl-cmk[at]outlook[dot]com_.

Please include:
- your CMK version/edition
- your environment (stand alone or distributed)
- the OS of your CMK server(s)
- the version of the plugin
- the crash report (if any)

For active checks I might need the output of the check command. I.e.

```
thl-cmk's avatar
thl-cmk committed
~$ ./local/lib/nagios/plugins/check_radius -H radiusserver --username dummyuser --password dummypassword --secret secret
Response: access reject, Response time 1006ms
Response: access reject
Response time 1006ms|radius_response_time=1.006008138
thl-cmk's avatar
thl-cmk committed
```

```
thl-cmk's avatar
thl-cmk committed
~$ ~/local/lib/nagios/plugins/check_radius --host radiusserver --secret secret --username aabbccddeeff --password aabbccddeeff 
Response: access accept, Response time 6ms
Response: access accept
Response time 6ms
Number of attributes in response: 4
thl-cmk's avatar
thl-cmk committed

thl-cmk's avatar
thl-cmk committed
Response attributes:
Tunnel-Type: [13]
Tunnel-Medium-Type: ['IEEE-802']
Tunnel-Private-Group-Id: ['10']
Service-Type: ['Outbound-User']|radius_response_time=0.006371595999999999
thl-cmk's avatar
thl-cmk committed
```