Metadata-Version: 1.0
Name: logmongo
Version: 0.0.1
Summary: Logmongo: Log messages to a capped MongoDB collection
Home-page: https://bitbucket.org/russellballestrini/logmongo
Author: Russell Ballestrini
Author-email: russell@ballestrini.net
License: Public Domain
Description: Installation
        =================
        
        easy_install logmongo
        
        What does it do?
        =====================
        
        Send complex log records (dicts or **kwargs) to capped MongoDB collections. Capped collections are created automatically. Centralize remote and local logs asynchronously. Write simple queries to search the logs for trends and analytics. A capped collection will not grow beyond its specified max size and will auto expire old records first.
        
        How does it work?
        =====================
        
        Example::
        
         from logmongo import Logmongo
        
         log = Logmongo()
        
         log.write( message='No required kwargs or fields!' )
        
         entry = {
           'tags':['but','we','like','tags'],
           'level':'info'
         }
         log.write( entry )
         
        List of methods::
        
         import logmongo
         help( logmongo )
        
        
        More examples?
        ====================
        
        checkout tests.py inside
        
        
        License
        ===========
        
        Public Domain
        
        
        How do I thank you?
        =======================
        
        Write me an email!  I always respond back!
        
        
        
Keywords: Logmongo log dict messages mongo MongoDB
Platform: All
