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 2.25 KiB
Newer Older
thl-cmk's avatar
thl-cmk committed
# Contributing

thl-cmk's avatar
thl-cmk committed
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_.
thl-cmk's avatar
thl-cmk committed

thl-cmk's avatar
thl-cmk committed
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)
thl-cmk's avatar
thl-cmk committed

thl-cmk's avatar
thl-cmk committed
For agent based plugins I might need also the agent output of the plugin.
thl-cmk's avatar
thl-cmk committed
```
OMD[build]:~$ cmk -D ares | grep Program
  Program: /omd/sites/build/share/check_mk/agents/special/agent_fritzbox 192.168.10.254
  Program: /omd/sites/build/local/share/check_mk/agents/special/agent_fritzbox_smarthome --pwstore=3@0@ares 192.168.10.254 --password '********************' --user checkmk --port 8443 --ignore_ssl --no-piggyback
thl-cmk's avatar
thl-cmk committed
```
thl-cmk's avatar
thl-cmk committed
Then run the agnt with exact the same options and add `--debug`
thl-cmk's avatar
thl-cmk committed
```
thl-cmk's avatar
thl-cmk committed
OMD[build]:~$  /omd/sites/build/local/share/check_mk/agents/special/agent_fritzbox_smarthome --pwstore=3@0@ares 192.168.10.254 --password '********************' --user checkmk --port 8443 --ignore_ssl --no-piggyback --debug
Raw XML:
b'<devicelist version="1"><device identifier="13979 0878454" id="16" functionbitmask="320" fwversion="05.16" manufacturer="AVM" productname="Comet DECT"><present>1</present><name>Temp01</name><temperature><celsius>205</celsius><offset>0</offset></temperature><hkr><tist>41</tist><tsoll>39</tsoll><absenk>35</absenk><komfort>39</komfort><lock>0</lock><devicelock>1</devicelock><errorcode>0</errorcode><batterylow>0</batterylow><nextchange><endperiod>1703973600</endperiod><tchange>35</tchange></nextchange></hkr></device></devicelist>\n'
<<<fritzbox_smarthome:sep(0)>>>
[{"identifier": "13979 0878454", "id": "16", "functionbitmask": "320", "fwversion": "05.16", "manufacturer": "AVM", "productname": "Comet DECT", "present": "1", "name": "Temp01", "temperature": {"celsius": "205", "offset": "0"}, "hkr": {"tist": "41", "tsoll": "39", "absenk": "35", "komfort": "39", "lock": "0", "devicelock": "1", "errorcode": "0", "batterylow": "0", "nextchange": {"endperiod": "1703973600", "tchange": "35"}}}]
```
thl-cmk's avatar
thl-cmk committed
The first part is the raw XML output from your FritzBox. The second part is the parsed agent output. I will need the complete output please.
thl-cmk's avatar
thl-cmk committed