Search found 3722 matches

by mcapra
Tue Feb 28, 2017 10:16 am
Forum: Nagios XI
Topic: Showing multiple services on 1 chart
Replies: 1
Views: 50

Re: Showing multiple services on 1 chart

Using the "Graph Explorer" tool, you could build a Multistacked Performance Graph to achieve this:
2017_02_28_09_15_24_Nagios_XI.png
by mcapra
Mon Feb 27, 2017 4:24 pm
Forum: Nagios XI
Topic: Flap and Retain status issues with the service
Replies: 23
Views: 832

Re: Flap and Retain status issues with the service

You could try adding a separate regex match to check_selenium for Jetty (the web server component used by the RC server) server exceptions: my $output = `perl $script 2>&1`; if ( $output =~ m/(ERROR Server Exception.+\n)/ ) { $message = $1; $rc = 3; #end it with an unknown } elsif ( $output =~ m...
by mcapra
Mon Feb 27, 2017 3:50 pm
Forum: Nagios Log Server
Topic: Problem receiving different logs from same IP
Replies: 6
Views: 1405

Re: Problem receiving different logs from same IP

Can you share the output of the following commands executed from the CLI of your Nagios Log Server machine:

Code: Select all

netstat -an | grep 5550
netstat -an | grep 5551
iptables -S
grep '' /usr/local/nagioslogserver/logstash/etc/conf.d/*
by mcapra
Mon Feb 27, 2017 3:44 pm
Forum: Open Source Nagios Projects
Topic: Availability reports and Trends incomplete data
Replies: 10
Views: 4748

Re: Availability reports and Trends incomplete data

The way Core works on the back-end to generate reports relies in part on the date that is in the log file's name (nagios- 02-17-2017-00 .log). I would try splitting that log file up into a few specific dates, as it was with the old installation, and see if that affects your reports in a meaningful w...
by mcapra
Mon Feb 27, 2017 2:52 pm
Forum: Open Source Nagios Projects
Topic: Custom check from check_procs
Replies: 7
Views: 8639

Re: Custom check from check_procs

If nmap from the Nagios Core machine to the NRPE machine says the port is closed, it's probably not wrong. We can't provide much assistance with firewall/networking related issues though. That aside, lets say I want to monitor the qmgr process with specific arguments: postfix 2332 0.0 0.1 91836 4560...
by mcapra
Mon Feb 27, 2017 2:39 pm
Forum: Open Source Nagios Projects
Topic: Could not complete SSL handshake.
Replies: 3
Views: 1395

Re: Could not complete SSL handshake.

In the future, it'd be best to open a new thread and reference the original. Since this thread contains good information we'll let it stay. Just to be clear, the steps mentioned in this documentation were unable to provide a resolution? https://assets.nagios.com/downloads/nagiosxi/docs/NRPE-Troubles...
by mcapra
Mon Feb 27, 2017 2:21 pm
Forum: Open Source Nagios Projects
Topic: BUG check_users v2.1.4 (nagios-plugins 2.1.4)
Replies: 2
Views: 965

Re: BUG check_users v2.1.4 (nagios-plugins 2.1.4)

Here's the diff on that plugin VS the 2.1.3 version: https://github.com/nagios-plugins/nagios-plugins/commit/972ee5bc7286b2ed7c7774e09f35bddeb1d05189#diff-aa2a70d05a7819aaafdd91ae65fb29e5 It doesn't look like much has changed aside from altering how the thresholds are detected. Rather than altering ...
by mcapra
Mon Feb 27, 2017 1:48 pm
Forum: Nagios XI
Topic: REST service and host status + downtime and acknowledgements
Replies: 11
Views: 353

Re: REST service and host status + downtime and acknowledgem

There was a feature request to better explain what each JSON property represents (ID 11169). Did you have additional questions regarding this topic, or can I close this thread?
by mcapra
Mon Feb 27, 2017 1:32 pm
Forum: Nagios XI
Topic: Deleting host via API
Replies: 5
Views: 222

Re: Deleting host via API

Assuming you're running an apply config at the appropriate stage, the sleep is probably the best option right now. My suspicion is that (not unlike your guess) there's a nit-picky timing issue between when the host's services are removed from the database VS when the host attempts to resolve it's de...
by mcapra
Mon Feb 27, 2017 12:43 pm
Forum: Nagios Log Server
Topic: Encrypted syslog
Replies: 8
Views: 198

Re: Encrypted syslog

That looks like something specific to SumoLogic's could-base syslog service. It's hard to say if/how that particular piece needs to be integrated with Nagios Log Server without having a closer look at some things Cylance is doing on the back-end. Are you required to enter a token while running throu...