Search found 3722 matches

by mcapra
Thu Aug 03, 2017 9:35 am
Forum: Nagios XI
Topic: Nagios Report CSV
Replies: 2
Views: 900

Re: Nagios Report CSV

I think that all the Highcharts stuff uses PhantomJS to export the CSV. Hopefully someone will correct me if I'm wrong, but fudging that from the command-line to leverage something like awk ahead of the writes would be difficult I think. Here's a simple PHP script that takes a tab-delimited file wit...
by mcapra
Thu Aug 03, 2017 9:05 am
Forum: Nagios XI
Topic: Ingore Alarms during a certain time
Replies: 3
Views: 748

Re: Ingore Alarms during a certain time

It would depend on what you mean by "ignore". You can leverage the notification_interval in your service objects to fine-tune when you get notifications (via text, email, etc). Those settings should be under the "Alert Settings" tab in the Core Config Manager for a given service ...
by mcapra
Thu Aug 03, 2017 8:56 am
Forum: Open Source Nagios Projects
Topic: Nagios and status.cgi parameter
Replies: 2
Views: 13016

Re: Nagios and status.cgi parameter

I don't know of any manual or descriptions for all the parameters a given CGI in Nagios Core can accept. Here's all the available CGI variables for status.cgi in code: https://github.com/NagiosEnterprises/nagioscore/blob/master/cgi/status.c#L594-L821 Or in a more human readable fashion: navbarsearch...
by mcapra
Thu Aug 03, 2017 8:44 am
Forum: Nagios XI
Topic: Using System Macros in Alert Messages
Replies: 8
Views: 1142

Re: Using System Macros in Alert Messages

Here's a big old list of all the Nagios macros and the contexts in which you can use a given macro: https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/macrolist.html You might find the "Service Notifications" and "Host Notifications" columns particularly useful i...
by mcapra
Thu Aug 03, 2017 8:42 am
Forum: Nagios XI
Topic: Monitoring Openmanage Issue
Replies: 7
Views: 1110

Re: Monitoring Openmanage Issue

Which plugin are you using for this? I assume you're using check_openmanage ? If so, which version of check_openmanage are you using? The plugin hasn't been updated in a while, and the last OMSA version mention I see in the changelog is 7.2.0. Can you share the specific check you are using, and it's...
by mcapra
Thu Aug 03, 2017 8:28 am
Forum: Nagios XI
Topic: Need to monitor an application in Nagios XI
Replies: 7
Views: 1570

Re: Need to monitor an application in Nagios XI

I don't know of any automated drivers for Visual Basic applications. You might be able to script something out using AutoHotKey , but the work required to call those AutoHotKey scripts remotely and verify that the login was successful would be non-trivial. If the VB application submits credentials t...
by mcapra
Thu Aug 03, 2017 8:17 am
Forum: Open Source Nagios Projects
Topic: Nagios Core User Permission
Replies: 2
Views: 4371

Re: Nagios Core User Permission

This documentation should be useful to that end: https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/cgiauth.html Essentially, you can manage permissions by defining a contact that shares the name with a Nagios Core web interface user, then assigning that contact to their associated ...
by mcapra
Wed Aug 02, 2017 1:47 pm
Forum: Nagios Log Server
Topic: Logstash stopping abruptly
Replies: 8
Views: 1721

Re: Logstash stopping abruptly

It would appear as though Logstash is unable to talk to Elasticsearch for some period of time.

Can you share your Elasticsearch logs? They can typically be found here:

Code: Select all

/var/log/elasticsearch/*.log
by mcapra
Wed Aug 02, 2017 9:23 am
Forum: Open Source Nagios Projects
Topic: Email Notification - Is there a way to display the error?
Replies: 11
Views: 3481

Re: Email Notification - Is there a way to display the error

You would have to edit the command definition associated with your notification handler. This documentation describes all the macros you will have available for Host Notifications and Service Notifications: https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/macrolist.html You might ...
by mcapra
Wed Aug 02, 2017 8:52 am
Forum: Open Source Nagios Projects
Topic: Nagios NRPE Concern
Replies: 6
Views: 2505

Re: Nagios NRPE Concern

I think there may be some syntax errors with your check_command directives for the services you defined. Here are some from my lab machine: define service{ use elasticsearch-prod hostgroup_name esprod service_description CPU Usage check_command check_elasticsearch!checkcpu!-w 80 -c 90 } define servi...