Skip to main content

JSON formatted logging for Datadog

Project description

Datadog-log

Write out JSON formatted logs in the format and with the attributes that Datadog expects

Installation

pip install datadog-log

Setup

The simplest way is to use init_logging() which will log to stdout.

If you want finner control then you can use DatadogFormatter directly. See init_logging for example usage.

Logging

Use logging as normal:

import logging
import datadoglog

datadoglog.init_logging()
log = logging.getLogger("example")
log.setLevel(logging.INFO)
log.info("Some info", extra={"extra": ["json"]})

The above would output json like below (but as a single line, shown 'pretty' here for readability):

{
  "message": "Some info",
  "extra": ["json"],
  "timestamp": "2021-09-18T21:14:07.707371+00:00",
  "status": "info",
  "logger": {
    "name": "example",
    "method_name": "<stdin>.<module>",
    "thread_name": "MainThread"
  }
}

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

datadog-log-1.4.1.tar.gz (3.9 kB view hashes)

Uploaded Source

Built Distribution

datadog_log-1.4.1-py3-none-any.whl (4.5 kB view hashes)

Uploaded Python 3

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