Nagios Plugins 2.1.2 Released!

Support forum for Nagios Core, Nagios Plugins, NCPA, NRPE, NSCA, NDOUtils and more. Engage with the community of users including those using the open source solutions.
Locked
scottwilkerson
DevOps Engineer
Posts: 19396
Joined: Tue Nov 15, 2011 3:11 pm
Location: Nagios Enterprises
Contact:

Nagios Plugins 2.1.2 Released!

Post by scottwilkerson »

The Nagios Plugins Development Team is proud to announce that nagios-plugins 2.1.2 has been released and is available for download.

2.1.2:

Enhancements:
- check_snmp's performance data now also includes warning/critical thresholds
- New check_snmp "-N" option to specify SNMPv3 context name
- New check_nt "-l" parameters: seconds|minutes|hours|days
- New check_mailq -s option which tells the plugin to use sudo
- New -W/-C option for check_ldap to check number of entries
- The check_http -S/--ssl option now accepts the arguments "1.1" and "1.2" to force TLSv1.1 and TLSv1.2 connections, respectively
- The check_http -S/--ssl option now allows for specifying the desired protocol with a "+" suffix to also accept newer versions
- New check_disk "-v" option to show troubled partition in verbose mode
- Added a parameter -w (--max_warning) to check_log.sh defining upper value to return a warning code
- Add support for LDAP URIs in check_ldap
- Provide performance data in check_file_age
- Added --hostname support to check_by_ssh
- Add check_ifstatus option to ignore interfaces by name
- Introduce support for SNMPv3 context using "-N" option in check_snmp:
- Added IPv6 support to check_snmp.c
- Added support for checking SSL-Websites through Proxies to check_http

Fixes:
- check_dig can now also use "drill" instead of "dig"
- check_dig now honors the -4 and -6 switches
- Fix check_jabber to work with Openfire servers
- Fix "-n" and "-u" options in ifstatus.pl to ignore if either is set, not just both
- Fix perfdata to comply with perfdata UOM definition in check_mrtgtraf
- Change warning to critical for protocal/version errors in check_ssh
- Make header_value() and chunked-encoding decoding more robust in check_http
- Fix Host header if explicitly set with -k in check_http
- Enable check_proc to monitor processes in PID name-spaced environments.
- Prevent large tide values from truncation in check_disk
- Timeticks are now being parsed correctly before performance data in check_snmp
- Fixed mailer names in check_mailq.pl
- Improved output when swap space has zero size incheck_swap
- Check if OpenSSL supports SSLv3
- Optimize output if SSL certificate expires in less then 24 hours
- Increased MAX_RE_SIZE from 256 to 2048 in check_http
- Changed the ps command to allow for longer output in check_procs
- Allow a server to reply using only 'HTTP/1.x 200 OK' and a body, with no headers in check_http
- Other more minor fixes

Thanks to all who have contributed toward this release. If you need assistance installing or using the plugins, please visit our general support forum. Bug reports, feature requests, and additional comments are welcome and may be posted to our plugin development forum.
Former Nagios employee
Creator:
ahumandesign.com
enneagrams.com
carcunha
Posts: 1
Joined: Wed Aug 10, 2016 9:20 am

Re: Nagios Plugins 2.1.2 Released!

Post by carcunha »

check_http now returns two lines instead of just one when using --ssl.
Sample Output:

Code: Select all

SSL Version: TLSv1.2
HTTP OK: HTTP/1.1 200 OK - 39631 bytes in 0.251 second response time |time=0.250551s;;;0.000000 size=39631B;;;0
The only problem is that on the web UI, now I see only "SSL Version: TLSv1.2" on the Status Information column, whereas the "HTTP OK: HTTP/1.1 200 OK" was much more informative to me.

I'm trying to understand the reason for this change, and if there is any possibility that the output is changed back to a single line in a future version.
jfrickson

Re: Nagios Plugins 2.1.2 Released!

Post by jfrickson »

Fixed in branch 'maint' at https://github.com/nagios-plugins/nagio ... tree/maint via commit https://github.com/nagios-plugins/nagio ... e59b117991

There was some debugging code left behind. My apologies! :oops:
Locked