Skip to main content

Logmongo: Log messages to a capped MongoDB collections

Project description

Installation

pip install logmongo
easy_install logmongo

What does it do?

  • Gracefully creates capped collections.

  • Auto expires oldest records first and solves log rotation.

  • Writes complex (dicts and kwargs) log records.

  • Logs asynchronously.

  • Collects logs locally or remotely or in a central location.

  • Allows access to logs via MongoDB queries and APIs.

  • Logs newline separated STDIN JSON strings to MongoDB

Why should I use Logmongo instead of just pymongo?

Logmongo subclasses the pymongo Collection object and provides the following additions -

By default a new Logmongo object will create a 512M named capped collection

write method which:

  • logs all passed keywords

  • if ‘when’ is not in record, add ‘when’ timestamp to log record

  • if ‘source’ is not in record, add ‘source’ add FQDN to log record

query method which:

  • allows keywords (kwargs) querying for example:

    log.query( tags='finance' )

tail method which:

  • prints all records to standard out which match the given query until killed

How does it work?

Example:

from logmongo import Logmongo

log = Logmongo('logs')

log.write( message='No required kwargs or fields!' )

entry = {
  'tags':['but','we','like','tags'],
  'level':'info'
}
log.write( entry )

# for more help check out
help( logmongo )

STDIN JSON to MongoDB

Example:

# tail the log collection
./logmongo --tail

# in another shell echo a JSON string into logmongo
echo '{"test":[143,435,432]}' | ./logmongo

# for more information
./logmongo --help

License

Public Domain

How do I thank you?

Write me an email! I always respond back!

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

logmongo-0.1.5.tar.gz (3.6 kB view details)

Uploaded Source

Built Distribution

logmongo-0.1.5-py2.7.egg (5.2 kB view details)

Uploaded Source

File details

Details for the file logmongo-0.1.5.tar.gz.

File metadata

  • Download URL: logmongo-0.1.5.tar.gz
  • Upload date:
  • Size: 3.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for logmongo-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a92063f4f091fab32449c17d561d4aeb0724ba88973a6c0720dd0cb569c78491
MD5 da1567d920520479d9425bfb9c277232
BLAKE2b-256 e4afb338c892bd60ee106433265cbd35dbe08a4367611f4735a4219a1fed85b6

See more details on using hashes here.

File details

Details for the file logmongo-0.1.5-py2.7.egg.

File metadata

File hashes

Hashes for logmongo-0.1.5-py2.7.egg
Algorithm Hash digest
SHA256 d81a750c74868092bd430de34aa647c8d24234461b47485a24f64407d9da8769
MD5 fd7a65c3084a463bff7272d4ea3a3630
BLAKE2b-256 d7d47b72f61468a4af5fe0dec17ee8b61a0032174cbd8f3ea5ce238b48d10263

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page