Metadata-Version: 2.1
Name: datadog-log
Version: 1.0.1
Summary: JSON formatted logging for Datadog
Home-page: https://github.com/mindhivenz/datadog-log-py
Author: Mindhive
Author-email: devops@mindhive.co.nz
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: python-json-logger

# Datadog-log

Write out JSON formatted logs in the format 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:

```python
import logging
from datadoglog import init_logging

init_logging()
log = logging.getLogger("example")
log.info("This line")
log.debug("With extra info", extra={ "json": "data" })
```


