Questions tagged [check-mk]

Check_MK is an extension to the Nagios monitoring system that allows creating rule-based configuration using Python and offloading work from the Nagios core to make it scale better, allowing more systems to be monitored from a single Nagios server.

is a comprehensive, open-source addon for the monitoring software . The extension is offloading work from the Nagios core to make it scale better, allowing more systems to be monitored from a single Nagios server. You can integrate into your existing Nagios/Icinga environment.

simplifies the configuration and makes monitoring with Nagios much more efficient.

is fully open source and available under the terms of the GNU GPL.

85 questions
0
votes
1 answer

OMD vs Ubuntu install issues

When installing OMD 1.3 on Ubuntu, I get the following output dpkg: dependency problems prevent configuration of omd-1.31.20160708: omd-1.31.20160708 depends on libapache2-mod-proxy-html; however: Package libapache2-mod-proxy-html is not…
0
votes
0 answers

Translation of SNMP traps dosen't work in check_mk

I'm working on processing SNMP traps from CISCO devices by check_mk 1.2.8p20 version. The configuration is in progress and I've have already untranslated traps in Event Console. Here (http://mathias-kettner.com/cms_ec.html) is simple instruction…
0
votes
1 answer

Check_mk recurring scheduled maintenace

I'm trying to create script to put host in downtime, created user (check_mk administrator), and set a secret, then run su sitename curl -n -s…
user7472983
0
votes
1 answer

Check_MK/Nagios script to monitor multipath count

i'm noob in bash. I want to create check so if 1 path is dead i want to get warning message,more than 1 path down-critical, no dead path-all is OK i would use this command and it's output: powermt display dev=all CHECK_DEGRADED=/usr/local/bin/sudo…
user7472983
0
votes
2 answers

How to write check_mk manual checks

I have a python scripts which checks for the processes import subprocess s = subprocess.check_output('tasklist', shell=True) if "cmd.exe" in s: if "java.exe" not in str(s): print "selenium server is not up" if…
Dheeraj
  • 297
  • 1
  • 5
  • 17
0
votes
1 answer

pnp4nagios perfrormance report-regular expression pattern/filter

I edited the cfg file "/opt/omd/sites/sitename/etc/pnp4nagios/pages" to include CPU, filesystem and memory. Is it possible to report only for root volume (Filesystem / ) and not for Filesystem /var, Filesystem /opt/omd etc.? I've tried with regular…
user7472983
0
votes
1 answer

Nagios / check_mk - Duplicate host

I've been having a dupliate host problem with nagios3 and check_mk from the Jessie repos. After installing and config nagios3, I added my web.cfg for nagios. I wanted to additional chekcs done by check_mk, so added the hosts to main.mk. Then…
thms0
  • 494
  • 1
  • 7
  • 15
0
votes
1 answer

Check-mk installation. Failed dependencies (Mariadb, Python-reportlab, libgsf)

I have problem with installation check_mk on amazon-ec2. I have already installed nagios core successfully and I try now install check_mk plugin by rpm: rpm -ivh check-mk-raw-1.2.8p17-el7-40.x86_64.rpm Rpm stop and return list of needed…
0
votes
1 answer

Check_mk event triggered

I am using checK_mk 1.2.6p12 version I want to trigger an event on arrival of certain messages of crictical state. But I am unable to find where to put my shell script so that it performs actions if something goes down. please help me out am stuck…
krishna kumar
  • 1,190
  • 12
  • 14
0
votes
1 answer

Ping from VM - Check MK

I would like to install check MK Monitoring Server on an Ubuntu VM in Azure. The query of the services to external works, however, not the ping. (Ubuntu 14.04. LTS) Which port or setting do I need to set in Azure? PING stackoverflow.com…
mgtz
  • 1
0
votes
1 answer

Setting downtime on service in Check_MK

I want to be able to set a service in Check_MK into downtime via a curl command. This is quite well documented here: https://mathias-kettner.de/checkmk_multisite_automation.html So I followed the guide above and created the following curlcommand to…
Zanmato
  • 235
  • 8
  • 13
0
votes
0 answers

check_mk_agent output

I have a problem with check_mk. I wrote a Java jar which is able to scan all active windows on my PC (more than 100 will be detected). When I start check_mk_agent.exe test in cmd the jar file works like I expect. In this case it detects all active…
Mukeratov
  • 1
  • 2
0
votes
2 answers

puppet notify xinetd doesn't reload xinetd service

I’m trying to install check_mk agent with the standard check_mk xinetd config file via puppet on a Debian 7 server. Check_mk installs without a problem but I've got an issue with the xinetd config. When I change the port in the source config file on…
elcaos
  • 150
  • 8
0
votes
1 answer

New Nagios/OMD/Check_MK setup - can't inventory new host via cmk

I just setup Check_MK (so Nagios and OMD as well) on a new CentOS 7 server, and I'm pretty sure everything's setup fine. I created a new check_mk "site" via OMD (called staging). I logged into another server and installed the check_mk_agent, then I…
Justin
  • 1,959
  • 5
  • 22
  • 40
0
votes
2 answers

Check_MK syntax to to make python add new hosts

I´m using Check_MK and i was trying to implement a python script to run via cfengine to add automatically new installed hosts. I´m having some trouble with both using pycurl or running and external curl. An example of the command i want to be able…