Search found 3722 matches

by mcapra
Wed Jul 07, 2021 12:37 pm
Forum: Open Source Nagios Projects
Topic: Email notification when Disabling notification on service
Replies: 5
Views: 2515

Re: Email notification when Disabling notification on servic

Think you're going to need to write a script for this. There's nothing native to Nagios that would do this to my knowledge. Is there alternative way to have each unique login logged in the nagios.log when a service is disabled or anything done with the service? log_external_commands can be set withi...
by mcapra
Tue Jul 06, 2021 12:48 pm
Forum: Open Source Nagios Projects
Topic: Thruk Nagios Logcache Problem
Replies: 1
Views: 667

Re: Thruk Nagios Logcache Problem

That's a question probably best asked within the Thruk communities:
https://www.thruk.org/support.html

Not 100% sure how Thruk gets logging info into MySQL. Sounds like there's a cron job you could try running by hand on some of your Nagios hosts.
by mcapra
Tue Jul 06, 2021 10:40 am
Forum: Open Source Nagios Projects
Topic: Nagios Web Interface "Home Page" is blank
Replies: 2
Views: 784

Re: Nagios Web Interface "Home Page" is blank

There isn't really anyone on these forums responsible for the various apt/yum/etc distributions of Nagios Core. The official documentation has you compiling Nagios Core from source, and that setup is what you'll get the best support on here: https://support.nagios.com/kb/article/nagios-core-installi...
by mcapra
Tue Jul 06, 2021 9:59 am
Forum: Open Source Nagios Projects
Topic: Problems with Pluging and graphics
Replies: 1
Views: 659

Re: Problems with Pluging and graphics

What you're referring to is performance data , and there's a variety of ways to collect and visualize Nagios performance data. In that sense, it's hard for me to say why the data is not being visualized without knowing specifically what add-ons you have configured (like nagiosgraph , nagflux , pnp4n...
by mcapra
Tue Jul 06, 2021 9:53 am
Forum: Open Source Nagios Projects
Topic: first use
Replies: 3
Views: 1095

Re: first use

Did you create a set of host and service definitions for this Windows host that has NSClient++ installed? You might consider using NCPA instead; There is official documentation for monitoring windows machines using NCPA, including the creation of various Nagios object definitions: https://assets.nag...
by mcapra
Tue Jul 06, 2021 9:47 am
Forum: Open Source Nagios Projects
Topic: Check NRPE unable to read output but only with custom check
Replies: 2
Views: 1375

Re: Check NRPE unable to read output but only with custom ch

NRPE doesn't execute commands with a full shell -- it uses popen . In your NRPE command definition, I would suggest including a full path to the particular Python binary rather than relying on the shebang. I would also make sure the system user associated with the NRPE or xinetd daemon (which might ...
by mcapra
Tue Jul 06, 2021 9:43 am
Forum: Open Source Nagios Projects
Topic: Application Mobile Nagios?
Replies: 1
Views: 662

Re: Application Mobile Nagios?

There's a set of mobile pages you can install on-top of a Nagios Core 4 installation: https://exchange.nagios.org/directory/Addons/Frontends-%28GUIs-and-CLIs%29/Mobile-Device-Interfaces/Nagios-Mobile/details It's a bit long-in-the-tooth though, is a mobile website rather than a native application, a...
by mcapra
Tue Jul 06, 2021 9:28 am
Forum: Open Source Nagios Projects
Topic: nagios4 check_jvm plugin
Replies: 2
Views: 1066

Re: nagios4 check_jvm plugin

If your Java process is running as root (UID 0), you'll need to also run your check_jvm plugin as root. This is a limitation of the JvmInspector jar file included with this plugin . JvmInspector doesn't need local or remote JMX network socket. It directly attaches to JVM's PerfData, so it must be st...
by mcapra
Tue Jun 29, 2021 8:01 am
Forum: Nagios XI
Topic: Nagios XI vulnerabilities
Replies: 2
Views: 93

Re: Nagios XI vulnerabilities

You'll probably want to provide the specific CVE IDs.
by mcapra
Mon Jun 21, 2021 3:30 pm
Forum: Open Source Nagios Projects
Topic: Help - how to use own email server?
Replies: 3
Views: 1215

Re: Help - how to use own email server?

Here's the manpage for mail : https://linux.die.net/man/1/mail Usually the hangup is with SMTP servers that have actual security features ... There's a wide variety of CLI utilities you can use to interact in a secure fashion to send emails via a remote SMTP server: * sendEmail ( tutorial on integra...