Metadata-Version: 1.1
Name: pylog
Version: 0.1.5
Summary: Python logs and events Generator
Home-page: https://github.com/nir0s/pylog
Author: nir0s
Author-email: nir36g@gmail.com
License: LICENSE
Download-URL: https://github.com/nir0s/pylog/tarball/0.1
Description: pylog
        =====
        
        |Build Status|
        
        |Gitter chat|
        
        |PyPI|
        
        |PypI|
        
        pylog generates events/logs using a specified formatter and sends them
        using the specified transport. It can also generate fake data using
        fake-factory.
        
        Quick Start
        ~~~~~~~~~~~
        
        `Quick
        Start <http://pylog.readthedocs.org/en/latest/quick_start.html>`__
        
        Documentation
        ~~~~~~~~~~~~~
        
        `pylog Documentation <http://pylog.readthedocs.org>`__
        
        Installation
        ~~~~~~~~~~~~
        
        .. code:: shell
        
             pip install pylog
             # or, for dev:
             pip install https://github.com/nir0s/pylog/archive/develop.tar.gz
        
        Usage Examples
        ~~~~~~~~~~~~~~
        
        see `pylog
        config <http://pylog.readthedocs.org/en/latest/configuration.html>`__
        and `advanced
        config <http://pylog.readthedocs.org/en/latest/advanced_configuration.html>`__
        to configure your transports and formatters.
        
        .. code:: shell
        
             # this will assume config.py in the cwd and assume default for each option
             pylog gen
             # or.. you can specify whatever you want in the cli..
             pylog gen -c /my/config/file/path.py -t AmqpTransport -f JsonFormatter -g 0.001 -m 100000000
             pylog gen -t UDPTransport -f CustomFormatter -g 0.00001 -m 102831028
             # you can also send in batches
             pylog gen -t UDPTransport -f CustomFormatter -g 0.00001 -m 102831028 -b 1000
             # and even use some common formatters like apache's..
             pylog gen -t StreamTransport -f ApacheErrorFormatter
             # see fake data types that you can use in the config...
             pylog list fake
        
        Additional Information
        ~~~~~~~~~~~~~~~~~~~~~~
        
        `formatters <http://pylog.readthedocs.org/en/latest/formatters.html>`__
        `transports <http://pylog.readthedocs.org/en/latest/transports.html>`__
        `API <http://pylog.readthedocs.org/en/latest/api.html>`__
        `InHouseFaker <http://pylog.readthedocs.org/en/latest/inhousefaker.html>`__
        
        Vagrant
        ~~~~~~~
        
        A vagrantfile is provided: It will load a machine and install pylog on
        it in a virtualenv so that you can experiment with it. In the future,
        another machine will be provided with rabbitmq, logstash, elasticsearch
        and kibana so that you can experiment with different types of formats
        and transports.
        
        .. |Build Status| image:: https://travis-ci.org/nir0s/pylog.svg?branch=develop
           :target: https://travis-ci.org/nir0s/pylog
        .. |Gitter chat| image:: https://badges.gitter.im/nir0s/pylog.png
           :target: https://gitter.im/nir0s/pylog
        .. |PyPI| image:: http://img.shields.io/pypi/dm/pylog.svg
           :target: http://img.shields.io/pypi/dm/pylog.svg
        .. |PypI| image:: http://img.shields.io/pypi/v/pylog.svg
           :target: http://img.shields.io/pypi/v/pylog.svg
        
Platform: All
Classifier: Programming Language :: Python
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: System :: Logging
