Metadata-Version: 1.1
Name: ZabbixSender
Version: 0.2.7
Summary: Simple zabbix sender
Home-page: https://github.com/maksim77/zsender
Author: Maksim Syomochkin
Author-email: maksim77ster@gmail.com
License: Apache Software License
Description: Zabbix Sender
        =============
        
        |PyPI| |PyPI Count| |Build Status| |Coverage Status|
        
        Disclaimer
        ----------
        Development of this module stopped! All ideas and solutions will be transferred into py-zabbix. py-zabbix is much more powerful project, and I don't want to reinvent the wheel.
        
        Quick Start
        -----------
        
        Connection settings
        
        .. code:: python
        
            from ZabbixSender import ZabbixSender, ZabbixPacket
            server = ZabbixSender('127.0.0.1', 10051)
        
        Create a package and add the metric values. In the first example with
        the current time, the second specified in unixtime format.
        
        .. code:: python
        
            packet = ZabbixPacket()
            packet.add('myhost','key', 'value')
            packet.add('myhost2', 'other_key', 'value2', 1455607162)
        
        Now we send our package in Zabbix Server
        
        .. code:: python
        
            server.send(packet)
        
        And see the delivery status
        
        .. code:: python
        
            print(server.status)
        
        ::
        
            {'info': 'processed: 2; failed: 0; total: 4; seconds spent: 0.207659',
             'response': 'success'}
        
        .. |PyPI| image:: https://img.shields.io/pypi/v/ZabbixSender.svg
           :target: https://pypi.python.org/pypi/ZabbixSender
        .. |PyPI Count| image:: https://img.shields.io/pypi/dw/ZabbixSender.svg
           :target: https://pypi.python.org/pypi/ZabbixSender
        .. |Build Status| image:: https://travis-ci.org/maksim77/zsender.svg?branch=master
           :target: https://travis-ci.org/maksim77/zsender
        .. |Coverage Status| image:: https://coveralls.io/repos/github/maksim77/zsender/badge.svg?branch=master
           :target: https://coveralls.io/github/maksim77/zsender?branch=master
        
        
        Zabbix Sender Changelog
        =======================
        
        0.2.5 (02.03.2015)
        ------------------
        
        Features
        ~~~~~~~~
        
        -  Add *clean* method to ZabbixPacket. After successful sending of the
           packet can not create a new instance, but just clean the old one. ###
           Bugfixes
        -  Added check for valid timestamp values passed in the packet.
        
Keywords: zabbix sender monitoring
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: System :: Monitoring
Classifier: Topic :: System :: Networking :: Monitoring
Classifier: Topic :: System :: Systems Administration
