Metadata-Version: 1.1
Name: celstash
Version: 0.1.0
Summary: log from celery to logstash and structured log
Home-page: https://github.com/CyberInt/celstash
Author: CyberInt
Author-email: tools@cyberint.com
License: MIT
Description: # celstash
        Celery logging to logstash and sturctured log (JSON) file
        
        Please submit bugs [here](https://github.com/CyberInt/celstash/issues).
        
        # Usage
        
            import celstash
            import logging
        
            logger = celstash.new_logger('worker1', logstash_host='example.com')
            logger.setLevel(logging.INFO)
            logger.info('Money is the root of all evil, and man needs roots.')
        
        
        # logstash setup
        
            input {
                udp {
                    codec => json
                }
            }
            output {
                elasticsearch {
                    host => localhost  # Change to your host
                }
            }
        
        # License
        MIT, see [LICENSE.txt](LICENSE.txt)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
