Search found 7 matches

by CarlosCarrancom
Sun Oct 02, 2022 11:16 pm
Forum: Open Source Nagios Projects
Topic: Templates Best Practices for Nagios
Replies: 0
Views: 9109

Templates Best Practices for Nagios

I think it would be best to get all the templates right. AFAIK, we have: Host templates Services templates Contact templates My bought is start with a baseline template. This would define all startard things I dont want overwritten. But from there on, I have no idea. Server/client templates? Operati...
by CarlosCarrancom
Wed Aug 31, 2022 2:59 am
Forum: Open Source Nagios Projects
Topic: How do I use Nagios to monitor a log file
Replies: 1
Views: 1230

Re: How do I use Nagios to monitor a log file

For monitoring logs with Nagios, typically the log checker will return a warning only for newly discovered error messages each time it is invoked (so it must retain some state in order to know to ignore them on subsequent runs). Therefore I usually set: max_check_attempts 1 is_volatile 1 This causes...
by CarlosCarrancom
Wed Aug 31, 2022 2:27 am
Forum: Open Source Nagios Projects
Topic: Nagios Core Summary Macro has Wrong Count
Replies: 0
Views: 2642

Nagios Core Summary Macro has Wrong Count

I believe the following summary macros are not accounting for Passive Services: $TOTALSERVICESCRITICALUNHANDLED$ (This is the one with which I see the problem directly) And I assume the following two have the same issue: $TOTALSERVICESWARNINGUNHANDLED$ $TOTALSERVICESUNKNOWNUNHANDLED$ Passive Service...
by CarlosCarrancom
Wed Aug 31, 2022 2:25 am
Forum: Open Source Nagios Projects
Topic: Nagios check_smb_status.sh
Replies: 1
Views: 1425

Re: Nagios check_smb_status.sh

The program smbstatus need to be executed by root. Add to the /etc/sudoers.d/nrpe: user_running_nrpe ALL = (root) NOPASSWD: /plugins_path/check_smb_status.sh And in the nrpe.cfg: command[check_smb_status.sh]=/usr/bin/sudo /plugins_path/check_smb_status.sh If you have selinux activated omegle.2yu.co ...
by CarlosCarrancom
Thu Jun 30, 2022 4:41 am
Forum: Open Source Nagios Projects
Topic: NetBox with Nagios Core ?
Replies: 0
Views: 1170

NetBox with Nagios Core ?

I want to ask if there is any way to connect NetBox with Nagios core ?

I have all my device on my Nagios core and I have my IP addresses added to the NetBox ? can I connect them together ?

Best Regards
by CarlosCarrancom
Tue Jun 07, 2022 2:59 am
Forum: Open Source Nagios Projects
Topic: Monitoring WCF with nagios
Replies: 2
Views: 1949

Re: Monitoring WCF with nagios

I'd recommend using OMD/Check_MK as it "autoconfigures", supports unix/linux and windows "out of the box", and you can set policy based configuration rules to tweak thresholds, alerting, inclusion/exclusion. On top of that, you get a web GUI to manage it (so less tech savvy users...
by CarlosCarrancom
Tue Jun 07, 2022 1:39 am
Forum: Open Source Nagios Projects
Topic: Can I output HTML in my custom plugins?
Replies: 0
Views: 744

Can I output HTML in my custom plugins?

Is it possible to output HTML in my nagios plugins? I'd just like a <br/> (new line) to show up in status of my plugin (I'd like error messages to include a reasonable amount of useful information in the case of a multiple transaction jmeter script). I tried outputting <br/> in my plugin, but nagios...