Search found 43 matches

by AngeloMileto
Thu May 08, 2025 7:37 am
Forum: Nagios XI
Topic: Offline Documentation
Replies: 2
Views: 486

Offline Documentation

Is there a way to download the Documentation Guides from Nagios for an offline installation and then edit the html to point to the local copy?

URL for current guides:
https://assets.nagios.com/downloads/nag ... inistrator
by AngeloMileto
Mon Feb 24, 2025 7:32 am
Forum: Nagios XI
Topic: View Effective Configuration
Replies: 5
Views: 1094

Re: View Effective Configuration

@jsimon Thanks!! I've not done anything in core as, when I inherited this system, core doesn't work - at least the web UI doesn't. It shows "It appears you do not have permission to view information for any of the hosts you requested." I did some simple permission checks on the files/paths...
by AngeloMileto
Fri Feb 21, 2025 9:31 am
Forum: Nagios XI
Topic: View Effective Configuration
Replies: 5
Views: 1094

Re: View Effective Configuration

It has to "exist" as it's being implemented by XI/core so if it "knows" then there should be a way to query it - no? At a minimum, is there a document that shows what the hierarchy is? So is the lowest level the winner? (i.e. host/service level settings over templates) What about...
by AngeloMileto
Thu Feb 20, 2025 8:52 am
Forum: Nagios XI
Topic: View Effective Configuration
Replies: 5
Views: 1094

View Effective Configuration

Given the inheritance nature of XI - which is nice - how do you determine the effective configuration for a given host and/or service? I'm trying to tune my alert settings but they aren't changing as I expect them to. I suspect that some settings are being overridden by an inherited configuration/te...
by AngeloMileto
Fri Dec 13, 2024 1:28 pm
Forum: Nagios XI
Topic: Bulk add service to multiple hosts
Replies: 2
Views: 1487

Re: Bulk add service to multiple hosts

What are the values that will be different for ARG1/2? If it's something you could do a quick bash script for you can create the files in the /usr/local/nagios/etc/import directory and then use the import function of the config to pull them in. Is there a way to create a single service and then just...
by AngeloMileto
Thu Dec 05, 2024 10:44 am
Forum: Nagios XI
Topic: Push Custom Plugins
Replies: 9
Views: 2469

Re: Push Custom Plugins

Or even if you want you could run it on the timestamp of the directory, since rsync is pretty smart and will only update individual files if there is a diff, and that way you don't have to loop through every plugin in the directory. That's where my mind was originally going but that doesn't work fo...
by AngeloMileto
Wed Dec 04, 2024 8:13 am
Forum: Nagios XI
Topic: Push Custom Plugins
Replies: 9
Views: 2469

Re: Push Custom Plugins

I didn't want to make a blanket rsync/scp that basically ran every time the host was checked though. That's a waste of time and network bandwidth. I had found https://support.nagios.com/kb/article/file-and-folder-checks-783.html#file_folder_exists and was trying to find a way to leverage that using ...
by AngeloMileto
Wed Dec 04, 2024 8:04 am
Forum: Nagios XI
Topic: Restart Service
Replies: 3
Views: 1070

Re: Restart Service

I appreciate the replies and to simplify things, I took one of the services and made a separate check and hooked the event script to that. So I have a simple service check: check_xi_ncpa!--timeout=45 --token=a really good token --port=5693 --metric='services' --qqueryargs='service=svcname,status=run...
by AngeloMileto
Tue Dec 03, 2024 12:47 pm
Forum: Nagios XI
Topic: Push Custom Plugins
Replies: 9
Views: 2469

Re: Push Custom Plugins

Hey AngeloMileto Unfortunately I don't believe XI has a way to do this without any modification. I'll dive into it a bit more but what comes to mind initially is that you would probably need to make a script to distribute the plugins to the hosts NCPA is reaching out to. This is a little out of my ...
by AngeloMileto
Mon Dec 02, 2024 9:44 am
Forum: Nagios XI
Topic: Restart Service
Replies: 3
Views: 1070

Restart Service

I found a guide on how to restart a service via an event handler (https://answerhub.nagios.com/support/s/article/Restarting-Windows-Services-with-NCPA-f4a44019) but the problem is that we already have a service check that is monitoring 5 critical services at once. So rather than having 5 different s...