Search found 28 matches

by adminfun
Wed Feb 07, 2018 4:03 am
Forum: Nagios XI
Topic: Current load - localhost
Replies: 3
Views: 384

Current load - localhost

Dear users Our Nagios has a high current load. My first question is where can I change the values that indicate "ok", "warning" or "critical"? I can't seem to find it, not even in the core config manager. Second: does this mean that our Nagios servers lacks CPU power? T...
by adminfun
Wed Sep 30, 2015 2:58 am
Forum: Nagios XI
Topic: Empty Event Log
Replies: 9
Views: 5873

Re: Empty Event Log

It's a virtual machine. Installed with an OVF template.
There is a lot going on at night. Backups via the network and such, could it be that the storage box or the network is saturated?
by adminfun
Tue Sep 29, 2015 9:46 am
Forum: Nagios XI
Topic: Empty Event Log
Replies: 9
Views: 5873

Re: Empty Event Log

Here you are. In the mean time I increased the amount of memory from 2GB to 4GB and increased the CPU cores from 1 to 2. df -h [root@localhost ~]# df -h Filesystem Size Used Avail Use% Mounted on /dev/mapper/VolGroup-lv_root 7.3G 5.3G 1.7G 77% / tmpfs 1.9G 0 1.9G 0% /dev/shm /dev/sda1 477M 66M 386M ...
by adminfun
Tue Sep 29, 2015 6:59 am
Forum: Nagios XI
Topic: Empty Event Log
Replies: 9
Views: 5873

Re: Empty Event Log

We received a bunch of faulty emails again this night.
All emails were about Service checks that timed out.
So my guess is that the Nagios lost connection with those.
In attachement a screenshot of the Nagios Performance.

What could be the cause of this?
by adminfun
Mon Sep 28, 2015 9:27 am
Forum: Nagios XI
Topic: Empty Event Log
Replies: 9
Views: 5873

Re: Empty Event Log

There were about a dozen errors.
I ran the repair command and will keep you guys posted.
by adminfun
Fri Sep 25, 2015 2:35 am
Forum: Nagios XI
Topic: Empty Event Log
Replies: 9
Views: 5873

Empty Event Log

Dear members Last night, the Nagios went haywire. We received a massive amount of faulty e-mails. (Service checks that timed out) I couldn't connect through SSH nor the web-interface so I had to force restart the virtual machine. I wanted to check the event log, but it is completely empty which is a...
by adminfun
Mon Sep 21, 2015 4:33 am
Forum: Nagios XI
Topic: Return Critical if no process is running
Replies: 6
Views: 1014

Re: Return Critical if no process is running

No without the ":" for services.
And it works perfectly that way.
by adminfun
Thu Sep 17, 2015 7:44 am
Forum: Nagios XI
Topic: Return Critical if no process is running
Replies: 6
Views: 1014

Re: Return Critical if no process is running

A bit confusing that it works different with services...

Code: Select all

./check_wmi_plus.pl -H 10.20.1.88 -u <username> -p <password> -m checkservice -a WsusService -c 0
...works perfectly when the service isn't running.
by adminfun
Fri Sep 11, 2015 7:25 am
Forum: Nagios XI
Topic: Return Critical if no process is running
Replies: 6
Views: 1014

Re: Return Critical if no process is running

Dear members Found it after some trial and error. Seems like with ":" you can set how many processes there are allowed to run. ./check_wmi_plus.pl -H 10.20.1.203 -u <username> -p <password> -m checkprocess -s Commandline -a PDFCreator.exe -c 1:2 So if the PDFCreator.exe process is running ...
by adminfun
Fri Sep 11, 2015 7:14 am
Forum: Nagios XI
Topic: Return Critical if no process is running
Replies: 6
Views: 1014

Return Critical if no process is running

Dear members I have a certain process that has to be monitored. If the process isn't running it should return Critical. Below is the code what I have so far, but it always returns critical. ./check_wmi_plus.pl -H 10.20.1.203 -u <username> -p <password> -m checkprocess -s Commandline -a PDFCreator.ex...