Metadata-Version: 1.1
Name: rabbitmq-munin
Version: 0.2
Summary: A munin plugin to monitor rabbitmq queues.
Home-page: https://github.com/freyes/rabbitmq_munin
Author: Felipe Reyes
Author-email: freyes@tty.cl
License: BSD
Description: RabbitMQ Munin Plugin
        =====================
        
        A simple plugin for munin to monitor the number of messages in a queue.
        
        By default monitors the celery queue for the user 'guest'
        
        Installation
        ------------
        
        The easiest way to install the code is to use `pip`_.
        
        Install the newest version from `PyPI`_.::
        
            pip install rabbitmq-munin
        
        Install the latest development version::
        
            pip install git+https://github.com/freyes/rabbitmq_munin.git#egg=rabbitmq-munin
        
        The other option is to download and uncompress the code manually and execute the
        included `setup.py` script for installation::
        
            ./setup.py install
        
        To make the plugin available to the munin-node you can run the following commands::
        
            ln -s $(which rabbitmq_munin) /etc/munin/plugins/
        
        Once munin can run the plugin, you can configure it as any other munin plugin 
        (in /etc/munin/plugin-conf.d/munin-node) and the config will look like this::
        
            [rabbitmq_munin]
            env.username guest
            env.password guest
            env.server localhost:15672
            env.vhost /
            env.queue celery
        
        The config above is using the default values of the plugin, your environment may require different values.
        
        Dependencies
        ------------
        
        Python packages:
        
        * `pyrabbit`_
        
        Rabbitmq plugins:
        
        * `Management Plugin`_, you can install it with the following command::
        
            rabbitmq-plugins enable rabbitmq_management
        
        
        .. _PyPI: http://pypi.python.org/pypi/rabbitmq-munin
        .. _pip: http://www.pip-installer.org/
        .. _pyrabbit: https://pypi.python.org/pypi/pyrabbit
        .. _Management Plugin: http://www.rabbitmq.com/management.html
        
Keywords: rabbitmq munin plugin
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: BSD License
Classifier: Environment :: Plugins
Classifier: Intended Audience :: System Administrators
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.4
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: System :: Monitoring
