Search found 3722 matches

by mcapra
Tue Aug 08, 2017 8:21 am
Forum: Open Source Nagios Projects
Topic: check_jmx error: JMX CRITICAL com.sun.enterprise.admin.util.
Replies: 8
Views: 4380

Re: check_jmx error: JMX CRITICAL com.sun.enterprise.admin.u

Can you show us the specific error your are getting? A copy+paste of the command executed and it's corresponding output would be useful.

Can you also describe how JMX is configured in the remote application you are trying to monitor?
by mcapra
Mon Aug 07, 2017 1:13 pm
Forum: Nagios Log Server
Topic: FortiOS 5.6 GrokParseFailure
Replies: 12
Views: 5096

Re: FortiOS 5.6 GrokParseFailure

Can you share some samples of the raw log files being shipped from the FortiOS machine to the FortiLog input? Also the rsyslog configuration you are using to ship those logs? Have you also tried changing the input plugin used from syslog to tcp ? Like so: tcp { type => 'FortiLog' tags => 'FortiLog' ...
by mcapra
Mon Aug 07, 2017 9:50 am
Forum: Nagios XI
Topic: Nagios XI backups failing
Replies: 2
Views: 138

Re: Nagios XI backups failing

Have you verified there are no storage space issues on this machine? Error 28 usually pertains to that specifically. It can also be produced when the system's tmp dir has no space, even if the main path which holds the mysql files has plenty of space.

What is the output of df -h?
by mcapra
Mon Aug 07, 2017 9:44 am
Forum: Open Source Nagios Projects
Topic: Nagios monitoring 0365
Replies: 2
Views: 3325

Re: Nagios monitoring 0365

Selenium is a pretty common solution: https://assets.nagios.com/downloads/nagiosxi/docs/Integrating-Selenium-With-Nagios-XI.pdf Otherwise I've been exploring developing a plugin that works with CasperJS to reduce the overhead needed for such use cases, since Nagios XI already includes a PhantomJS bi...
by mcapra
Mon Aug 07, 2017 9:41 am
Forum: Open Source Nagios Projects
Topic: Client's side checks' store and forward
Replies: 3
Views: 1659

Re: Client's side checks' store and forward

Just chiming in to say this exists as a feature request for NCPA:
https://github.com/NagiosEnterprises/ncpa/issues/319

I don't know of any agent that currently has that functionality, but it looks like a future release of NCPA will include it.
by mcapra
Mon Aug 07, 2017 9:37 am
Forum: Open Source Nagios Projects
Topic: Integration Nagios3 withServiceNow
Replies: 15
Views: 4967

Re: Integration Nagios3 withServiceNow

The fields might be empty because those macros (like $HOSTNAME$ and $HOSTSTATE$) are evaluated within Nagios Core at run-time. They are not present as proper Linux environment variables unless you have enable_environment_macros enabled. Even then, since there is no context under which a $HOSTNAME$ e...
by mcapra
Mon Aug 07, 2017 9:34 am
Forum: Nagios XI
Topic: Getting wrong alerts for check_rabbitmq_queue in nagios
Replies: 4
Views: 1298

Re: Getting wrong alerts for check_rabbitmq_queue in nagios

I am going to assume you are using this plugin: https://github.com/nagios-plugins-rabbitmq/nagios-plugins-rabbitmq/blob/master/scripts/check_rabbitmq_queue No one here wrote that plugin, so the assistance you will receive might be limited. The maintainers of this plugin have a gitter chat which seem...
by mcapra
Mon Aug 07, 2017 8:44 am
Forum: Nagios XI
Topic: CGI URL?
Replies: 3
Views: 4405

Re: CGI URL?

Never heard of Nagstamon before this post, but try this:

Code: Select all

http://FQDN/nagios/cgi-bin
by mcapra
Mon Aug 07, 2017 8:40 am
Forum: Nagios XI
Topic: Upgrade NRPE / Ndoutils / Nagios Plugins on Nagios XI
Replies: 4
Views: 131

Re: Upgrade NRPE / Ndoutils / Nagios Plugins on Nagios XI

The upgrade script used to upgrade Nagios XI includes multiple considerations for updates to NRPE, nagios-plugins, ndoutils, and Nagios Core. $ cat upgrade | grep NRPE NRPE_UPDATED=0 # Upgrade NRPE to latest if [ $NRPE_UPDATED -eq 0 ]; then NRPE_UPDATED=1 $ cat upgrade | grep NDO NDO_UPDATED=0 # Mod...
by mcapra
Mon Aug 07, 2017 8:34 am
Forum: Open Source Nagios Projects
Topic: check_nrpe Checkfile syntax question
Replies: 2
Views: 1792

Re: check_nrpe Checkfile syntax question

Which version of NSClient++ are you using? There are major differences between 0.3, 0.4, and 0.5. https://docs.nsclient.org/reference/windows/CheckDisk/#check_files I don't think you can use regular expressions in the pattern argument, though you're certainly welcome to try. Assuming the timestamp i...