nagios icon indicating copy to clipboard operation
nagios copied to clipboard

My Nagios scripts and configs

Results 7 nagios issues
Sort by recently updated
recently updated
newest added

When read binary CRL file, got 'utf-8' error. It can be fixed with `codecs`. hope Fixed #9 And also removed spaces end of lines and remove description on `verbose` in...

When server is serving DER, the pem detection loop may fail with invalid encoding error ``` --- a/plugins/check_crl +++ b/plugins/check_crl @@ -56,11 +56,11 @@ def check_crl(url, warn, crit): try: inform...

If i get a 404 on crl, plugin is expected to throw a critical, but it throws a warning because the temporary crl file is not on the disk and...

I'd like to do some good monitoring on hsm boxes, and found your script. But i have one question. What is /opt/PTK/bin/ctcheck and where do i get it ?

some certificates have ISO-8859-1 encoding, resulting in error. ![error-crl](https://user-images.githubusercontent.com/29432898/27135319-9da27d74-50ee-11e7-8a53-604c992a94b5.png) fixed line 58 from: `crlfile = open(tmpcrl, "r")` to: `crlfile = open(tmpcrl, "r", encoding='ISO-8859-1')` it works! ![prueba-certificado-27-1](https://user-images.githubusercontent.com/29432898/27134987-ccdffacc-50ed-11e7-8c03-039397d1b57f.png) Is there any way...

Hi, Thanks for contributing the code for check_crl. However, I have encounter an error on Return code of 126 is out of bounds - plugin may not be executable. I...