Search found 3722 matches

by mcapra
Wed Jun 02, 2021 12:16 pm
Forum: Open Source Nagios Projects
Topic: Send or output performance data from Powershell script?
Replies: 4
Views: 10926

Re: Send or output performance data from Powershell script?

I see it as blank. What is "it"? The Powershell script's output when executed from the Windows host? The results received by check_nt or check_nrpe interacting with the Powershell script? Your Nagios graphs? The performance RRDs? Here's the specification for performance data in Nagios plu...
by mcapra
Wed Jun 02, 2021 12:11 pm
Forum: Open Source Nagios Projects
Topic: Disk alert is not working properly
Replies: 2
Views: 14285

Re: Disk alert is not working properly

Your format looks correct; Here are some sample disk checks, a few of which use the official nagios-plugins check_disk plugin: https://support.nagios.com/kb/article/disk-space-checks-770.html#disk_free_percentage In the server checked I have in the file nrpe command [check_disk] = / usr / lib64 / na...
by mcapra
Tue Jun 01, 2021 12:05 pm
Forum: Open Source Nagios Projects
Topic: How to login in to http website and check the pages
Replies: 5
Views: 26526

Re: How to login in to http website and check the pages

You can try adding the -v flag to get more verbose output for what exactly check_http is doing: -v, --verbose Show details for command-line debugging (Nagios may truncate output) You can also use -e flag to instead look for that "Unrecognized username or password" message in the response b...
by mcapra
Tue May 25, 2021 5:48 am
Forum: Open Source Nagios Projects
Topic: Nagios integration with Okta
Replies: 2
Views: 14223

Re: Nagios integration with Okta

Nagios Core doesn't really have an authentication layer. It has some light authorization, but the actual authentication is pawned-off onto httpd. https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/cgiauth.html So if you can integrate Okta with nginx/httpd/etc, then yes it's possible...
by mcapra
Sun May 23, 2021 6:37 am
Forum: Open Source Nagios Projects
Topic: Nagios remote nrpe check_disk returns permission denied
Replies: 1
Views: 13109

Re: Nagios remote nrpe check_disk returns permission denied

Your NRPE user doesn't have permissions to read any of the Docker overlayfs mounts. Which is a good thing usually. If you don't want to monitor these overlayfs mounts, check_disk offers many arguments to do include/exclude logic: -p, --path=PATH, --partition=PARTITION Mount point or block device as ...
by mcapra
Sun May 23, 2021 6:29 am
Forum: Open Source Nagios Projects
Topic: How to login in to http website and check the pages
Replies: 5
Views: 26526

Re: How to login in to http website and check the pages

You can also ask check_http to follow 3xx redirects, give that a try if you're expecting either a 200 or 401: -f, --onredirect=<ok|warning|critical|follow|sticky|stickyport> How to handle redirected pages. sticky is like follow but stick to the specified IP address. stickyport also ensures port stay...
by mcapra
Fri May 21, 2021 12:08 pm
Forum: Open Source Nagios Projects
Topic: How to login in to http website and check the pages
Replies: 5
Views: 26526

Re: How to login in to http website and check the pages

It depends on the form's behavior. If there's something like a POST request that is being submit to /login as the login form's action, check_http supports setting the request method and providing request data: -P, --post=STRING URL encoded http POST data -j, --method=STRING (for example: HEAD, OPTIO...
by mcapra
Fri Apr 16, 2021 10:51 am
Forum: Open Source Nagios Projects
Topic: All of the sudden unable to send notifications to Teams Chan
Replies: 2
Views: 2000

Re: All of the sudden unable to send notifications to Teams

There was a recent change with MS Teams webhooks: https://office365itpros.com/2021/02/03/new-format-webhook-url/ Connectors were supposed to be updated by April 11th. Is that around the time you started noticing this problem? If so you may just need to re-generate your webhook and update your Nagios...
by mcapra
Wed Apr 14, 2021 12:14 pm
Forum: Open Source Nagios Projects
Topic: upgrade Nagios Core to 4.4.6
Replies: 1
Views: 1943

Re: upgrade Nagios Core to 4.4.6

Here's the official documentation:
https://assets.nagios.com/downloads/nag ... ading.html

Certainly let us know if you run into any problems. Note that the process is different for packaged-based installations.
by mcapra
Wed Apr 14, 2021 12:07 pm
Forum: Open Source Nagios Projects
Topic: Status Information 6
Replies: 1
Views: 1772

Re: Status Information 6

I would suggest you give the check_by_ssh plugin a try, and see if you get different results: https://nagios-plugins.org/doc/man/check_by_ssh.html That plugin is included with the standard nagios-plugins suite, and may already be sitting on your Nagios Core machine: https://github.com/nagios-plugins...