Skip to content

Commit

Permalink
Moving NagAconda from Google Code
Browse files Browse the repository at this point in the history
  • Loading branch information
bonesmoses committed Apr 9, 2011
0 parents commit bac634f
Show file tree
Hide file tree
Showing 56 changed files with 8,501 additions and 0 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG
@@ -0,0 +1,21 @@
0.1.4

- Minor documentation fixes.

0.1.3

- Added 'set_status_message' method to enhance human readability in generated
output beyond OK, WARNING, or CRITICAL.
- Added 'unknown_error' method to give plugin abortive quit capability and
avoid polluting 'finish' with similar functionality.
- All internal assertions now exit gracefully with 'unknown_error'.

0.1.2

- Fixed a problem that was breaking the lower-bound for negative infinity
in warning and critical thresholds.
- Added 'default' to option attributes passed to OptionParser.

0.1.1

- Initial Release
29 changes: 29 additions & 0 deletions LICENSE
@@ -0,0 +1,29 @@
Copyright (c) 2010, Leapfrog Online
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.

* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.

* Neither the name of Leapfrog Online nor the names of its contributors
may be used to endorse or promote products derived from this software
without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
4 changes: 4 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,4 @@
recursive-include docs *
include test/__init__.py
include LICENSE
include CHANGELOG
36 changes: 36 additions & 0 deletions NagAconda.egg-info/PKG-INFO
@@ -0,0 +1,36 @@
Metadata-Version: 1.0
Name: NagAconda
Version: 0.1.4
Summary: NagAconda is a Python Nagios wrapper.
Home-page: http://www.leapfrogonline.com/
Author: Shaun Thomas
Author-email: sthomas@leapfrogonline.com
License: New BSD License
Description:
:mod:`NagAconda` -- Python Nagios Integration
=============================================

Nagios has been around for quite some time, but producing output it can
consume is something of a black art. Only the plugin documentation actually
explains what all the extra semicolons or extended formatting even means.

This is especially onerous when performance consuming add-ons expect a
specific structure before operating properly. This package strives to
greatly simplify the process of actually generating Nagios output.

.. automodule:: NagAconda.Plugin


Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Documentation
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
42 changes: 42 additions & 0 deletions NagAconda.egg-info/SOURCES.txt
@@ -0,0 +1,42 @@
CHANGELOG
LICENSE
MANIFEST.in
setup.cfg
setup.py
NagAconda/Plugin.py
NagAconda/__init__.py
NagAconda.egg-info/PKG-INFO
NagAconda.egg-info/SOURCES.txt
NagAconda.egg-info/dependency_links.txt
NagAconda.egg-info/requires.txt
NagAconda.egg-info/top_level.txt
docs/Makefile
docs/conf.py
docs/index.rst
docs/plugin.rst
docs/build/doctrees/environment.pickle
docs/build/doctrees/index.doctree
docs/build/doctrees/plugin.doctree
docs/build/html/.buildinfo
docs/build/html/genindex.html
docs/build/html/index.html
docs/build/html/modindex.html
docs/build/html/objects.inv
docs/build/html/plugin.html
docs/build/html/search.html
docs/build/html/searchindex.js
docs/build/html/_sources/index.txt
docs/build/html/_sources/plugin.txt
docs/build/html/_static/basic.css
docs/build/html/_static/default.css
docs/build/html/_static/doctools.js
docs/build/html/_static/file.png
docs/build/html/_static/jquery.js
docs/build/html/_static/minus.png
docs/build/html/_static/plus.png
docs/build/html/_static/pygments.css
docs/build/html/_static/searchtools.js
test/__init__.py
test/test_operation.py
test/test_options.py
test/test_ranges.py
1 change: 1 addition & 0 deletions NagAconda.egg-info/dependency_links.txt
@@ -0,0 +1 @@

1 change: 1 addition & 0 deletions NagAconda.egg-info/requires.txt
@@ -0,0 +1 @@
Sphinx
1 change: 1 addition & 0 deletions NagAconda.egg-info/top_level.txt
@@ -0,0 +1 @@
NagAconda

0 comments on commit bac634f

Please sign in to comment.