NagAconda icon indicating copy to clipboard operation
NagAconda copied to clipboard

Python Nagios Integration

Results 5 NagAconda issues
Sort by recently updated
recently updated
newest added

C:\Python33>"c:\python33\scripts\pip.exe" install NagAconda Downloading/unpacking NagAconda Downloading NagAconda-0.2.1.tar.gz (235kB): 235kB downloaded Running setup.py egg_info for package NagAconda Traceback (most recent call last): File "", line 16, in File "c:\users\rajars~1\appdata\local\temp\pip_build_rajarshid\NagAconda\setup.py", line 4,...

Is there any way to get just the last line (see below) from the plugin output? The check works fine and Icinga isn't complaining but "output of the check plugin"...

It would be nice to have the link to PyPi https://pypi.python.org/pypi/NagAconda/0.1.4 and the online documentation http://pythonhosted.org//NagAconda/ here.

I wrote a little nagios_plugin to check btrfs ``` python #!/usr/bin/python # Von https://pythonhosted.org/NagAconda/plugin.html from NagAconda import Plugin import os import subprocess from pyparsing import * btrfs_check = Plugin("Plugin to...

If you run this code, you will have an error. ``` python #!/usr/bin/python from NagAconda import Plugin plugin = Plugin('The plugin', '0.1') plugin.add_option('p', 'parameter', 'The parameter.') plugin.enable_status('warning') plugin.enable_status('critical') plugin.start() #have...