Logging formatters for ECS (Elastic Common Schema) in Python
Project description
ecs-logging-python
Please note that this is library is in a beta version and backwards-incompatible changes might be introduced in future releases. While we strive to comply to semver, we can not guarantee to avoid breaking changes in minor releases.
Check out the Elastic Common Schema (ECS) reference for more information.
The library currently implements ECS 1.5, after a 1.x version is released we will be following (ECS.major).(ECS.minor).(package minor) as our versioning scheme.
Installation
$ python -m pip install ecs-logging
Getting Started
ecs-logging-python
has formatters for the standard library
logging
module
and the structlog
package.
Standard Library logging
Module
import logging
import ecs_logging
# Get the Logger
logger = logging.getLogger("app")
logger.setLevel(logging.DEBUG)
# Add an ECS formatter to the Handler
handler = logging.StreamHandler()
handler.setFormatter(ecs_logging.StdlibFormatter())
logger.addHandler(handler)
# Emit a log!
logger.debug("Example message!", extra={"http.request.method": "get"})
{
"@timestamp": "2020-03-20T18:11:37.895Z",
"ecs": {
"version": "1.5.0"
},
"http": {
"request": {
"method": "get"
}
},
"log": {
"level": "debug",
"logger": "app",
"origin": {
"file": {
"line": 14,
"name": "test.py"
},
"function": "func"
},
"original": "Example message!"
},
"message": "Example message!"
}
Excluding Fields
You can exclude fields from being collected by using the exclude_fields
option
in the StdlibFormatter
constructor:
from ecs_logging import StdlibFormatter
formatter = StdlibFormatter(
exclude_fields=[
# You can specify individual fields to ignore:
"log.original",
# or you can also use prefixes to ignore
# whole categories of fields:
"process",
"log.origin",
]
)
Limiting Stack Traces
The StdlibLogger
automatically gathers exc_info
into ECS error.*
fields.
If you'd like to control the number of stack frames that are included
in error.stack_trace
you can use the stack_trace_limit
parameter
(by default all frames are collected):
from ecs_logging import StdlibFormatter
formatter = StdlibFormatter(
# Only collects 3 stack frames
stack_trace_limit=3,
)
formatter = StdlibFormatter(
# Disable stack trace collection
stack_trace_limit=0,
)
Structlog Example
import structlog
import ecs_logging
# Configure Structlog
structlog.configure(
processors=[ecs_logging.StructlogFormatter()],
wrapper_class=structlog.BoundLogger,
context_class=dict,
logger_factory=structlog.PrintLoggerFactory(),
)
# Get the Logger
logger = structlog.get_logger("app")
# Add additional context
logger = logger.bind(**{
"http": {
"version": "2",
"request": {
"method": "get",
"bytes": 1337,
},
},
"url": {
"domain": "example.com",
"path": "/",
"port": 443,
"scheme": "https",
"registered_domain": "example.com",
"top_level_domain": "com",
"original": "https://example.com",
}
})
# Emit a log!
logger.debug("Example message!")
{
"@timestamp": "2020-03-26T13:08:11.728Z",
"ecs": {
"version": "1.5.0"
},
"http": {
"request": {
"bytes": 1337,
"method": "get"
},
"version": "2"
},
"log": {
"level": "debug"
},
"message": "Example message!",
"url": {
"domain": "example.com",
"original": "https://example.com",
"path": "/",
"port": 443,
"registered_domain": "example.com",
"scheme": "https",
"top_level_domain": "com"
}
}
Elastic APM Log Correlation
ecs-logging-python
supports automatically collecting ECS tracing fields
from the Elastic APM Python agent in order to
correlate logs to spans, transactions and traces in Elastic APM.
License
Apache-2.0
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file ecs-logging-0.5.0.tar.gz
.
File metadata
- Download URL: ecs-logging-0.5.0.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b44acbb719eb26e74a04ddf169bf6b3792a06cd7abcccd13cc0dd9396dfd440f |
|
MD5 | 32063f2991b2268787fec76a22f17074 |
|
BLAKE2b-256 | 72126f2f66592754d3cc74790c457a3c74680c9bb524e1d7f33575d22a7bea93 |
File details
Details for the file ecs_logging-0.5.0-py2.py3-none-any.whl
.
File metadata
- Download URL: ecs_logging-0.5.0-py2.py3-none-any.whl
- Upload date:
- Size: 12.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.6.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d6a202fa618c43b894da5338c7cd94d9e16913c10cd14f2fcb57b181ad3b8ff |
|
MD5 | 4637de698e05764a65b0ebe29de880e3 |
|
BLAKE2b-256 | e176eb491b9a6a1f67bac074a5d74d01ddff23917d3c19346d96b644a676277a |