CheckMK
From Indie IT Wiki
Introduction
CheckMK is a software developed in Python and C++ for IT Infrastructure monitoring. It is used for the monitoring of servers, applications, networks, cloud infrastructures, containers, storage, databases and environment sensors.
https://checkmk.com/product/features
Installation
Docker
https://docs.checkmk.com/latest/en/introduction_docker.html
Server
version: '3.3' services: check-mk-raw: image: 'checkmk/check-mk-raw:2.2.0-latest' container_name: checkmk-server ports: - '8080:5000' - '8000:8000' tmpfs: '/opt/omd/sites/cmk/tmp:uid=1000,gid=1000' volumes: - './data/monitoring:/omd/sites' - '/etc/localtime:/etc/localtime:ro' restart: always