Search found 3722 matches

by mcapra
Thu Jul 27, 2017 9:56 am
Forum: Nagios XI
Topic: Branding Logos
Replies: 9
Views: 447

Re: Branding Logos

Alternatively, if you're keen on Javascript, you could use the Custom Includes component to craft a bit of Javascript to tackle this. You could upload each user's "branding" icon to a central spot (again, via the same Custom Includes component) and have some Javascript do something like: /...
by mcapra
Thu Jul 27, 2017 9:49 am
Forum: Open Source Nagios Projects
Topic: How to display the CPU Utilization of linux machine in %
Replies: 13
Views: 7693

Re: How to display the CPU Utilization of linux machine in %

I need the CPU Utilization in percentage means at present the default one we will get as OK - load average: 0.00, 0.00, 0.00 but i need as percentage The metrics provided for a given check depend 100% on the plugin being used. If you're using the stock check_load plugin from the nagios-plugins pack...
by mcapra
Thu Jul 27, 2017 9:35 am
Forum: Open Source Nagios Projects
Topic: How to complete installing a plugin from Nagios Exchange
Replies: 22
Views: 8919

Re: How to complete installing a plugin from Nagios Exchange

From the URL you shared: Installation / Usage: See comment inside the powershell (*.ps1) script There are step-by-step instructions in the powershell script's source. Though the instructions assume your exchange server is running NSClient++. This documentation might also be useful for understanding ...
by mcapra
Thu Jul 27, 2017 9:26 am
Forum: Nagios XI
Topic: Update FAN to Nagios XI
Replies: 5
Views: 1133

Re: Update FAN to Nagios XI

I can almost guarantee the work required would be non-trivial. FAN is using something totally different from NagiosQL to do it's configuration management. You'd need to do a heck of a lot of manual mappings. The NDOUtils database is probably transferable, but that's worth exactly nothing in the cont...
by mcapra
Thu Jul 27, 2017 9:24 am
Forum: Open Source Nagios Projects
Topic: Webinject
Replies: 4
Views: 2081

Re: Webinject

I can't find a forum of the WebInject plugin. WebInject is sort of lacking in the err....continuous development and community engagement departments. Or is there something else I can use to test logins to ASP pages that require the __VIEWSTATE variable passing back? If you don't mind setting up a s...
by mcapra
Thu Jul 27, 2017 9:08 am
Forum: Nagios Log Server
Topic: How to export query results to a text file?
Replies: 40
Views: 13837

Re: How to export query results to a text file?

I made this thing a while back: https://github.com/mcapra/nagios-nlsexport It's a bit complicated if you aren't comfortable with Elasticsearch queries, though. Or if you just want everything from a single day's index, or a certain type of events from X days indices, you can skip the query part. If y...
by mcapra
Wed Jul 26, 2017 3:03 pm
Forum: Nagios XI
Topic: free variable
Replies: 3
Views: 684

Re: free variable

I'd be interested in seeing the full host definition. Specifically what the actual variable name is under the host. In the host definition I've created a free variable _HOSTCOMMUNITY If it is literally named _HOSTCOMMUNITY in the core config manager, then your macro would actually be $_HOSTHOSTCOMMU...
by mcapra
Wed Jul 26, 2017 9:33 am
Forum: Nagios XI
Topic: How to use MSSQL Database Config Wizard ?
Replies: 4
Views: 826

Re: How to use MSSQL Database Config Wizard ?

Here's the documentation for setting up the prerequisites:
https://assets.nagios.com/downloads/nag ... ios-XI.pdf

As for authentication, the default MSSQL wizards require that you use SQL Server authentication.
by mcapra
Wed Jul 26, 2017 9:30 am
Forum: Open Source Nagios Projects
Topic: Can we read http_check response and use it for -c/-w?
Replies: 2
Views: 1415

Re: Can we read http_check response and use it for -c/-w?

check_http doesn't contain any specific logic for parsing particular markups or data other than plain text. You could probably craft a clever enough regular expression to accomplish what you're trying to do, but man it would be ugly. If the entire response is just a JSON object, this plugin might b...
by mcapra
Wed Jul 26, 2017 8:56 am
Forum: Nagios XI
Topic: Docker Monitoring
Replies: 4
Views: 837

Re: Docker Monitoring

Can you provide a direct link to the plugin? I don't think the mainstream repositories available in CentOS and RHEL are distributing Python 3 as of right now. Here's a good guide for building Python 3 from scratch (it's not too tricky): http://ask.xmodulo.com/install-python3-centos.html Note that th...