├── .gitignore ├── FOSDEM2024 ├── 3D_print │ ├── cmkhexagon.scad │ ├── cmkhexagon.stl │ ├── cmkhexagonbase.scad │ ├── cmkhexagonbase.stl │ ├── cmkhexagondrill.scad │ ├── cmkhexagondrill.stl │ ├── cmkhexagonspacer.scad │ ├── cmkhexagonspacer.stl │ ├── cmkhexpcbmount.scad │ └── cmkhexpcbmount.stl ├── Arduino │ ├── CO2-Ampel │ │ ├── examples │ │ │ ├── BMP280_Test │ │ │ │ └── BMP208_Test.ino │ │ │ ├── Blink │ │ │ │ └── Blink.ino │ │ │ ├── Button-Switch │ │ │ │ └── Button-Switch.ino │ │ │ ├── CO2-Ampel │ │ │ │ ├── CO2-Ampel.ino │ │ │ │ ├── CO2-Ampel.ino.co2ampel.bin │ │ │ │ └── CO2-Ampel.ino.with_bootloader.co2ampel.bin │ │ │ ├── ECC608_Test │ │ │ │ └── ECC608_Test.ino │ │ │ ├── ECCX08_CSR │ │ │ │ └── ECCX08_CSR.ino │ │ │ ├── I2C-Scanner │ │ │ │ └── I2C-Scanner.ino │ │ │ ├── RFM9X_TTN │ │ │ │ └── RFM9X_TTN.ino │ │ │ ├── RFM9X_Test │ │ │ │ └── RFM9X_Test.ino │ │ │ ├── SSL_Test │ │ │ │ └── SSL_Test.ino │ │ │ ├── WINC1500_Test │ │ │ │ └── WINC1500_Test.ino │ │ │ └── WINC1500_Updater │ │ │ │ ├── Endianess.ino │ │ │ │ └── WINC1500_Updater.ino │ │ ├── library.properties │ │ └── src │ │ │ └── co2ampel.h │ ├── LoraReceiverTest │ │ └── LoraReceiverTest.ino │ └── LoraSenderTest │ │ ├── LoraSenderTest.ino │ │ ├── LoraSenderTest.ino.co2ampel.bin │ │ └── LoraSenderTest.ino.with_bootloader.co2ampel.bin ├── MicroPython │ ├── discobaby.py │ └── fulltest.py ├── Python │ ├── dumplora.py │ └── status2ws.py ├── README.md └── images │ ├── IMG_20240615_150747.jpg │ ├── IMG_20240615_150804.jpg │ └── IMG_20240615_150829.jpg ├── README.md ├── bootstrap ├── README.md ├── dummybridge.sh └── quickdebuntu.sh ├── docserve ├── README.md ├── autoreload.js ├── auxiliary │ └── DocserveAuxiliary.rb ├── branding.dic ├── builddocs.rb ├── checkmk-docserve.cfg.example ├── docserve.css ├── docserve.rb ├── favicon.ico ├── favicon.png └── fold.js ├── mkp ├── hellobakery │ ├── README.md │ └── mkp │ │ ├── _agent_based │ │ └── hello_bakery.py │ │ ├── _agents │ │ ├── plugins │ │ │ └── hello_bakery │ │ └── windows │ │ │ └── plugins │ │ │ └── hello_bakery.cmd │ │ ├── _checkman │ │ └── hello_bakery │ │ ├── _lib │ │ └── check_mk │ │ │ └── base │ │ │ └── cee │ │ │ └── plugins │ │ │ └── bakery │ │ │ └── hello_bakery.py │ │ ├── _web │ │ └── plugins │ │ │ ├── metrics │ │ │ └── hellobakery_metric.py │ │ │ ├── perfometer │ │ │ └── hellobakery_perfometer.py │ │ │ └── wato │ │ │ ├── hellobakery_bakery.py │ │ │ └── hellobakery_parameters.py │ │ ├── hello_bakery-0.1.3.mkp │ │ ├── hello_bakery-0.1.6.mkp │ │ ├── hello_bakery-0.1.8.mkp │ │ ├── info │ │ └── info.json ├── helloco2 │ ├── ao2ampel.py │ └── json_receiver.py ├── helloworld │ ├── README.md │ └── mkp │ │ ├── _agent_based │ │ └── hello_world.py │ │ ├── _agents │ │ └── plugins │ │ │ └── hello_world │ │ ├── _checkman │ │ └── hello_world │ │ ├── _web │ │ └── plugins │ │ │ ├── metrics │ │ │ └── helloworld_metric.py │ │ │ ├── perfometer │ │ │ └── helloworld_perfometer.py │ │ │ └── wato │ │ │ └── helloworld_parameters.py │ │ ├── hello_world-0.1.3.mkp │ │ ├── info │ │ └── info.json └── watterott_co2_ampel │ ├── mkp │ ├── _agent_based │ │ └── co2welectronic.py │ ├── _web │ │ └── plugins │ │ │ └── wato │ │ │ └── co2welectronic_parameters.py │ ├── info │ └── info.json │ └── serial2spool.py └── scripts ├── certcompare.rb ├── fonttest.html ├── megax.sh ├── rki_covid.py ├── rki_covid_agbased.py └── rki_covid_metrics.py /.gitignore: -------------------------------------------------------------------------------- 1 | *secrets.h 2 | 3 | -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagon.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagon.scad -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagon.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagon.stl -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagonbase.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagonbase.scad -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagonbase.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagonbase.stl -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagondrill.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagondrill.scad -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagondrill.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagondrill.stl -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagonspacer.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagonspacer.scad -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexagonspacer.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexagonspacer.stl -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexpcbmount.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexpcbmount.scad -------------------------------------------------------------------------------- /FOSDEM2024/3D_print/cmkhexpcbmount.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/3D_print/cmkhexpcbmount.stl -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/BMP280_Test/BMP208_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/BMP280_Test/BMP208_Test.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/Blink/Blink.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/Blink/Blink.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/Button-Switch/Button-Switch.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/Button-Switch/Button-Switch.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino.co2ampel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino.co2ampel.bin -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino.with_bootloader.co2ampel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/CO2-Ampel/CO2-Ampel.ino.with_bootloader.co2ampel.bin -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/ECC608_Test/ECC608_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/ECC608_Test/ECC608_Test.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/ECCX08_CSR/ECCX08_CSR.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/ECCX08_CSR/ECCX08_CSR.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/I2C-Scanner/I2C-Scanner.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/I2C-Scanner/I2C-Scanner.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/RFM9X_TTN/RFM9X_TTN.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/RFM9X_TTN/RFM9X_TTN.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/RFM9X_Test/RFM9X_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/RFM9X_Test/RFM9X_Test.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/SSL_Test/SSL_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/SSL_Test/SSL_Test.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Test/WINC1500_Test.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Test/WINC1500_Test.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Updater/Endianess.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Updater/Endianess.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Updater/WINC1500_Updater.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/examples/WINC1500_Updater/WINC1500_Updater.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/library.properties -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/CO2-Ampel/src/co2ampel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/CO2-Ampel/src/co2ampel.h -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/LoraReceiverTest/LoraReceiverTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/LoraReceiverTest/LoraReceiverTest.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino.co2ampel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino.co2ampel.bin -------------------------------------------------------------------------------- /FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino.with_bootloader.co2ampel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Arduino/LoraSenderTest/LoraSenderTest.ino.with_bootloader.co2ampel.bin -------------------------------------------------------------------------------- /FOSDEM2024/MicroPython/discobaby.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/MicroPython/discobaby.py -------------------------------------------------------------------------------- /FOSDEM2024/MicroPython/fulltest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/MicroPython/fulltest.py -------------------------------------------------------------------------------- /FOSDEM2024/Python/dumplora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Python/dumplora.py -------------------------------------------------------------------------------- /FOSDEM2024/Python/status2ws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/Python/status2ws.py -------------------------------------------------------------------------------- /FOSDEM2024/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/README.md -------------------------------------------------------------------------------- /FOSDEM2024/images/IMG_20240615_150747.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/images/IMG_20240615_150747.jpg -------------------------------------------------------------------------------- /FOSDEM2024/images/IMG_20240615_150804.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/images/IMG_20240615_150804.jpg -------------------------------------------------------------------------------- /FOSDEM2024/images/IMG_20240615_150829.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/FOSDEM2024/images/IMG_20240615_150829.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bootstrap/dummybridge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/bootstrap/dummybridge.sh -------------------------------------------------------------------------------- /bootstrap/quickdebuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/bootstrap/quickdebuntu.sh -------------------------------------------------------------------------------- /docserve/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/README.md -------------------------------------------------------------------------------- /docserve/autoreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/autoreload.js -------------------------------------------------------------------------------- /docserve/auxiliary/DocserveAuxiliary.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/auxiliary/DocserveAuxiliary.rb -------------------------------------------------------------------------------- /docserve/branding.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/branding.dic -------------------------------------------------------------------------------- /docserve/builddocs.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/builddocs.rb -------------------------------------------------------------------------------- /docserve/checkmk-docserve.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/checkmk-docserve.cfg.example -------------------------------------------------------------------------------- /docserve/docserve.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/docserve.css -------------------------------------------------------------------------------- /docserve/docserve.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/docserve.rb -------------------------------------------------------------------------------- /docserve/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/favicon.ico -------------------------------------------------------------------------------- /docserve/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/favicon.png -------------------------------------------------------------------------------- /docserve/fold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/docserve/fold.js -------------------------------------------------------------------------------- /mkp/hellobakery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/README.md -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_agent_based/hello_bakery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_agent_based/hello_bakery.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_agents/plugins/hello_bakery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_agents/plugins/hello_bakery -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_agents/windows/plugins/hello_bakery.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_agents/windows/plugins/hello_bakery.cmd -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_checkman/hello_bakery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_checkman/hello_bakery -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_lib/check_mk/base/cee/plugins/bakery/hello_bakery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_lib/check_mk/base/cee/plugins/bakery/hello_bakery.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_web/plugins/metrics/hellobakery_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_web/plugins/metrics/hellobakery_metric.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_web/plugins/perfometer/hellobakery_perfometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_web/plugins/perfometer/hellobakery_perfometer.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_web/plugins/wato/hellobakery_bakery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_web/plugins/wato/hellobakery_bakery.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/_web/plugins/wato/hellobakery_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/_web/plugins/wato/hellobakery_parameters.py -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/hello_bakery-0.1.3.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/hello_bakery-0.1.3.mkp -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/hello_bakery-0.1.6.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/hello_bakery-0.1.6.mkp -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/hello_bakery-0.1.8.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/hello_bakery-0.1.8.mkp -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/info -------------------------------------------------------------------------------- /mkp/hellobakery/mkp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/hellobakery/mkp/info.json -------------------------------------------------------------------------------- /mkp/helloco2/ao2ampel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloco2/ao2ampel.py -------------------------------------------------------------------------------- /mkp/helloco2/json_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloco2/json_receiver.py -------------------------------------------------------------------------------- /mkp/helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/README.md -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_agent_based/hello_world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_agent_based/hello_world.py -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_agents/plugins/hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_agents/plugins/hello_world -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_checkman/hello_world: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_checkman/hello_world -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_web/plugins/metrics/helloworld_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_web/plugins/metrics/helloworld_metric.py -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_web/plugins/perfometer/helloworld_perfometer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_web/plugins/perfometer/helloworld_perfometer.py -------------------------------------------------------------------------------- /mkp/helloworld/mkp/_web/plugins/wato/helloworld_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/_web/plugins/wato/helloworld_parameters.py -------------------------------------------------------------------------------- /mkp/helloworld/mkp/hello_world-0.1.3.mkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/hello_world-0.1.3.mkp -------------------------------------------------------------------------------- /mkp/helloworld/mkp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/info -------------------------------------------------------------------------------- /mkp/helloworld/mkp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/helloworld/mkp/info.json -------------------------------------------------------------------------------- /mkp/watterott_co2_ampel/mkp/_agent_based/co2welectronic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/watterott_co2_ampel/mkp/_agent_based/co2welectronic.py -------------------------------------------------------------------------------- /mkp/watterott_co2_ampel/mkp/_web/plugins/wato/co2welectronic_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/watterott_co2_ampel/mkp/_web/plugins/wato/co2welectronic_parameters.py -------------------------------------------------------------------------------- /mkp/watterott_co2_ampel/mkp/info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/watterott_co2_ampel/mkp/info -------------------------------------------------------------------------------- /mkp/watterott_co2_ampel/mkp/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/watterott_co2_ampel/mkp/info.json -------------------------------------------------------------------------------- /mkp/watterott_co2_ampel/serial2spool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/mkp/watterott_co2_ampel/serial2spool.py -------------------------------------------------------------------------------- /scripts/certcompare.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/certcompare.rb -------------------------------------------------------------------------------- /scripts/fonttest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/fonttest.html -------------------------------------------------------------------------------- /scripts/megax.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/megax.sh -------------------------------------------------------------------------------- /scripts/rki_covid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/rki_covid.py -------------------------------------------------------------------------------- /scripts/rki_covid_agbased.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/rki_covid_agbased.py -------------------------------------------------------------------------------- /scripts/rki_covid_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschlenker/checkmk-snippets/HEAD/scripts/rki_covid_metrics.py --------------------------------------------------------------------------------