Async python logging handlers that send messages in the Graylog Extended Log Format (GELF).
Project description
AsyncGELF
Async python logging handlers that send messages in the Graylog Extended Log Format (GELF).
List of ready to run GELF handlers
- TCP (with and without TLS);
- HTTP (with and without TLS);
- UDP;
Get AsyncGELF
pip install asyncgelf
Usage
GELF TCP
import asyncio
import asyncgelf
async def main(message):
handler = asyncgelf.GelfTcp(
host='127.0.0.1',
)
await handler.tcp_handler(message)
asyncio.run(main(message))
GELF TCP with custom timestamp
import asyncio
import asyncgelf
from datetime import datetime
async def main(message):
handler = asyncgelf.GelfTcp(
host='127.0.0.1',
)
event_time = "2024-02-06 08:25:56.789"
timeformat = "%Y-%m-%d %H:%M:%S.%f"
await handler.tcp_handler(message, datetime.strptime(event_time, timeformat).timestamp())
asyncio.run(main(message))
GELF HTTP
import asyncio
import asyncgelf
async def main(message):
handler = asyncgelf.GelfHttp(
host='127.0.0.1',
)
await handler.http_handler(message)
asyncio.run(main(message))
GELF UDP
import asyncio
import asyncgelf
async def main(message):
handler = asyncgelf.GelfUdp(
host='127.0.0.1',
)
await handler.udp_handler(message)
asyncio.run(main(message))
Additional field
Expect Dict with the following moments:
- All keys must start with underscore (_) prefix;
_idcan't be an additional field;- Allowed characters in field names are any word character (letter, number, underscore), dashes and dots
import asyncio
import asyncgelf
async def main(message):
additional_field = {
'_key_1': 'value_1',
'_key_2': 'value_2',
}
handler = asyncgelf.GelfTcp(
host='127.0.0.1',
additional_field=additional_field
)
await handler.tcp_handler(message)
asyncio.run(main(message))
Available params
hostRequired | Graylog server address;portOptional | Graylog input port (default: 12201);gelf_versionOptional | GELF spec version (default: 1.1)levelOptional | The level equals to the standard syslog levels (default: 1);schemeOptional | HTTP Scheme for GELF HTTP input only (default: http);tlsOptional | Path to custom (self-signed) certificate in pem format (default: None)compressOptional | Compress message before sending it to the server or not (default: False)compress_levelOptional | Set compression level: available from 1 (BEST_SPEED) to 9 (BEST_COMPRESSION) (default: 1)debugOptional | Additional information in error log (default: False)additional_fieldOptional | Dictionary with additional fields which will be added to every gelf message (default: None)dns_resolveOptional | Variable host will be checked to existing DNS as parameter and if dns is found, then on initialization will resolve to ip and variable will be updated. By default, UDP handler gets resolved by DNS on every log message. See more: #91305 (default: False)
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
asyncgelf-1.2.0.tar.gz
(6.1 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file asyncgelf-1.2.0.tar.gz.
File metadata
- Download URL: asyncgelf-1.2.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c09294523babbb5618214703e5adceb2f278a62180ad58cf97113c05471554be
|
|
| MD5 |
f2b96f4c4d6ddf8fc2b927c0bbc8c3b6
|
|
| BLAKE2b-256 |
2a111f5779a7e9066f26d739f26d8e22a4f8a28ef8759fac10f90ba89e737ea9
|
File details
Details for the file asyncgelf-1.2.0-py3-none-any.whl.
File metadata
- Download URL: asyncgelf-1.2.0-py3-none-any.whl
- Upload date:
- Size: 6.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e8cf5fdf683e4769a095e743306ff36fc9423c8549bb115f6a9073107de058d
|
|
| MD5 |
01738728d8604fa2fe568069f9f6ea2b
|
|
| BLAKE2b-256 |
ee7e67268419dd69b96a4b3d9c9f8e7cd4c003c3d2f89bee7a1ae1c8ecb72874
|