Search found 3722 matches

by mcapra
Mon Apr 12, 2021 11:08 am
Forum: Open Source Nagios Projects
Topic: check_nt query
Replies: 1
Views: 2110

Re: check_nt query

I think the -l parameter of the USEDDISKSPACE module for check_nt is what you need. From the help info: http://nagios-plugins.org/doc/man/check_nt.html USEDDISKSPACE = Size and percentage of disk use. Request a -l parameter containing the drive letter only. Warning and critical thresholds can be spe...
by mcapra
Mon Apr 12, 2021 9:05 am
Forum: Nagios Log Server
Topic: Wrong filter?
Replies: 5
Views: 391

Re: Wrong filter?

I think that's incorrect syntax for a replace step:
https://www.elastic.co/guide/en/logstas ... te-replace
by mcapra
Wed Apr 07, 2021 2:30 pm
Forum: Open Source Nagios Projects
Topic: Oracle MySQL January 2021 Critical Patch Update (CPUJAN2021)
Replies: 1
Views: 2049

Re: Oracle MySQL January 2021 Critical Patch Update (CPUJAN2

Nagios Core does not have a dependency on MySQL/MariaDB. Nagios XI does, but you mentioned using Nagios Core here. If you're using something like NagiosQL /NConf/Lilac or another configuration management utility, which may have a dependencies on MySQL/MariaDB, it'd probably be best to inquire with t...
by mcapra
Wed Apr 07, 2021 11:44 am
Forum: Open Source Nagios Projects
Topic: Send dynamic parameter to NRPE command
Replies: 2
Views: 2242

Re: Send dynamic parameter to NRPE command

What is the source of truth for the dynamic value? Nagios Core offers some "standard" and "custom" macros you can use in your object definitions, but they may not be a good fit for your use case: https://assets.nagios.com/downloads/nagioscore/docs/nagioscore/4/en/macrolist.html h...
by mcapra
Tue Apr 06, 2021 10:36 am
Forum: Open Source Nagios Projects
Topic: Error plugin Check for Active Directory Accounts
Replies: 5
Views: 3348

Re: Error plugin Check for Active Directory Accounts

I get a 404 on the documentation you linked, so it's hard to offer insight there. Best I can do is speculate at this point. I assume 192.168.1.120 is the WIndows Server 2012 R2 host? What sort of NRPE server is provided on the Windows host? I assume you're using NSClient++, in which case the NSClien...
by mcapra
Mon Apr 05, 2021 3:13 pm
Forum: Open Source Nagios Projects
Topic: SNMP Trap Difficulty
Replies: 1
Views: 1948

Re: SNMP Trap Difficulty

Could you describe how you went about configuring Nagios Core to accept SNMP traps? The specifics are relevant to the answer. Presumably you're doing some translation of those traps into Nagios Core check results. Most people are using NSTI for this. I suspect this is your problem: Passive check res...
by mcapra
Thu Apr 01, 2021 12:58 pm
Forum: Open Source Nagios Projects
Topic: Help to make check_snmp_temperature work
Replies: 3
Views: 3045

Re: Help to make check_snmp_temperature work

I read this as an exclusive or : Please either specify specify system type (-T) OR base SNMP OIDs for name (-N) and data (-D) tables OR exact list of sensor names (-n) and data OIDs (-d) ! And the code verifies this behavior: https://github.com/willixix/WL-NagiosPlugins/blob/master/check_snmp_temper...
by mcapra
Thu Apr 01, 2021 11:10 am
Forum: Open Source Nagios Projects
Topic: Host DOWN doesn't send aler after escalation
Replies: 2
Views: 2866

Re: Host DOWN doesn't send aler after escalation

I configured an host alert to check host alive each 2 minutes Check Interval 2 min Retry Check 1 min Max Check Attempts 3 I think this would have Nagios dispatch an alert no greater than 4 minutes from initially detecting the problem, assuming the problem didn't start until immediately after the la...
by mcapra
Thu Apr 01, 2021 10:55 am
Forum: Open Source Nagios Projects
Topic: Monitor https of a URL
Replies: 1
Views: 2509

Re: Monitor https of a URL

The check_http plugin works with HTTPS: http://nagios-plugins.org/doc/man/check_http.html -S, --ssl=VERSION[+] Connect via SSL. Port defaults to 443. VERSION is optional, and prevents auto-negotiation (2 = SSLv2, 3 = SSLv3, 1 = TLSv1, 1.1 = TLSv1.1, 1.2 = TLSv1.2). With a '+' suffix, newer versions ...
by mcapra
Wed Mar 31, 2021 11:43 am
Forum: Nagios Log Server
Topic: Variable limit - LS query
Replies: 3
Views: 193

Re: Variable limit - LS query

I can't think of a way to solve this that doesn't involve reducing the cardinality of the query. I think the only limiting factor within Elasticsearch is the Netty server's max content length (http.max_content_length) which is like 100mb by default -- it'd have to be a massive Lucene query to hit th...