Search found 3722 matches

by mcapra
Fri Sep 17, 2021 2:15 pm
Forum: Open Source Nagios Projects
Topic: Windows Event Logs monitoring
Replies: 3
Views: 3213

Re: Windows Event Logs monitoring

Is it possible to use both plugins at the same time using a nsclient++ agent on different port? Yes. Within your nsclient configuration file. You can configure NSClient++ with a NRPE server (to receive check_nrpe requests) using the NRPEServer block: https://docs.nsclient.org/reference/client/NRPES...
by mcapra
Mon Sep 13, 2021 8:05 am
Forum: Open Source Nagios Projects
Topic: What language is used to create the default check commands
Replies: 2
Views: 1588

Re: What language is used to create the default check comman

C, for the most part: https://github.com/nagios-plugins/nagios-plugins Some Perl, Bash, and Python in there too. Depends on the specific plugin you're looking at. Here's check_ping and check_dummy: https://github.com/nagios-plugins/nagios-plugins/blob/master/plugins/check_dummy.c https://github.com/...
by mcapra
Fri Sep 10, 2021 7:52 am
Forum: Open Source Nagios Projects
Topic: Is nagios upgrade dependent to centos ios
Replies: 1
Views: 1144

Re: Is nagios upgrade dependent to centos ios

This depends mostly on how Nagios Core and it's various plugins were installed. You'll probably need to rebuild an awful lot of Nagios Core plugins going from CentOS 5 to 7, primarily due to significant differences in the Perl and C dependencies. Also, migrating from Nagios Core 3.x to 4.x is going ...
by mcapra
Thu Sep 09, 2021 8:10 am
Forum: Open Source Nagios Projects
Topic: Where do I submit a feature request for Nagios XI?
Replies: 1
Views: 1448

Re: Where do I submit a feature request for Nagios XI?

I'm not sure about the present, but in the past this could be a simple forums post in the customer section (not here) or a support ticket.
by mcapra
Wed Sep 08, 2021 5:06 pm
Forum: Open Source Nagios Projects
Topic: Display All Services for a specific contactgroup
Replies: 1
Views: 1110

Re: Display All Services for a specific contactgroup

The JSON CGIs are your best friend: https://labs.nagios.com/2014/06/19/exploring-the-new-json-cgis-in-nagios-core-4-0-7-part-1/ Those CGIs should be included with any modern Nagios Core installation. To get all services associated with a contactgroup named admins : http://your.nagios.instance/cgi-bi...
by mcapra
Wed Sep 08, 2021 6:03 am
Forum: Open Source Nagios Projects
Topic: Nagios experts - a quick question please
Replies: 1
Views: 1108

Re: Nagios experts - a quick question please

Kinda depends on the setup, but you're usually re-deploying or re-configuring the particular agent. With a less secure setup you might be able to just hit it with check_nrpe / check_ncpa (if the token is known) without any additional reconfiguration. and how many can you do per day? If you're using ...
by mcapra
Wed Aug 25, 2021 11:43 am
Forum: Open Source Nagios Projects
Topic: Host group member regex confusion
Replies: 3
Views: 1572

Re: Host group member regex confusion

You might try ^(a-).* instead.
by mcapra
Wed Aug 25, 2021 11:28 am
Forum: Open Source Nagios Projects
Topic: JMX plugin - issue
Replies: 3
Views: 1746

Re: JMX plugin - issue

Simply put: https://docs.oracle.com/javase/7/docs/api/javax/management/InstanceNotFoundException.html The specified MBean does not exist in the repository. You're asking for an MBean VisServerManager872 that doesn't exist in the repository located at service:jmx:rmi:///jndi/rmi://ch00sa120:1099/jmxr...
by mcapra
Tue Aug 24, 2021 11:05 am
Forum: Open Source Nagios Projects
Topic: JMX plugin - issue
Replies: 3
Views: 1746

Re: JMX plugin - issue

Tough to provide much insight without a detailed understanding of the VisServerManager872 object structure. This plugin does have a -v argument which should provide you with better debugging output: -v[vvv] verbatim level controlled as a number of v (optional) Might try -vvvv and see if it provides ...
by mcapra
Mon Aug 23, 2021 11:29 am
Forum: Open Source Nagios Projects
Topic: Exclude one single SQL Job
Replies: 2
Views: 1927

Re: Exclude one single SQL Job

Looks like this plugin has an exclude argument baked-in: https://bitbucket.org/jetole/mssql-job-history/src/2c4fcd2d1571dfb779427c8f05c52a76dae7dcdc/check_mssql_job_history.py#lines-67 parser.add_argument("-x", "--exclude", action="store", help="A comma seperated l...