integrate Django & SDK provided by OpenTelemetry and directly forward the logs from the application to OpenTelemetry.
Project description
django otlp log exporter (handler)
Collecting Logs using OpenTelemetry
OpenTelemetry provides various receivers and processors for collecting first-party and third-party logs directly via OpenTelemetry Collector or via existing agents such as FluentBit so that minimal changes are required to move to OpenTelemetry for logs.
Collecting legacy first-party Application Logs
There are two ways to collect logs from these applications.
Via File or Stdout Logs
Here, the logs of the application are directly collected by the OpenTelemetry receiver using collectors like filelog receiver and operators and processors to parse them into the OTel model.
Direct to collector ( our handler is implemented based on this approach )
In this approach you can modify your logging library that is used by the application to use the logging SDK provided by OpenTelemetry and directly forward the logs from the application to OpenTelemetry. This approach removes any need for agents/intermediary medium but loses the simplicity of having the log file locally.
Our Approach
You can directly send your application logs to your opentelementry collector with our log handler (which is finally delivered to backends like signoz.)
Installation
pip install django-otlp-log-exporter
Configuration (settings.py)
OTLP_ENDPOINT = env('OTLP_ENDPOINT') # its endpoint of your opentelementry collector listen on, defult= http://localhost:4317
OTLP_IS_SECURE = env('OTLP_IS_SECURE') # its bool, default= True
OTLP_TAG = env('OTLP_TAG') # for seprate logs, default= localhost debug
LOGGING = {
'version': 1,
'disable_existing_loggers': False,
'handlers': {
'directlogging': {
'level': 'WARNING',
'class': 'otlp_exporter.handler.DirectWriteLoggingHandler',
},
},
'loggers': {
'root': {
'handlers': [
'directlogging',
],
'level': 'WARNING',
'propagate': True,
},
},
}
Links:
Much of our documentation is based on signoz.io's descriptions.
Thanks for the inspirations of other packages written, especially https://github.com/jayfk/django-fluentd . If you find a bug or have a question, you can contact me via the link below mojtaba.akbari.221B@gmail.com.
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
Built Distribution
File details
Details for the file django-otlp-log-exporter-1.0.3.tar.gz
.
File metadata
- Download URL: django-otlp-log-exporter-1.0.3.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e6473e21c36898c6d74e3b7d1c5b69461044a5a79331350b416cda7a746eb84 |
|
MD5 | 83abee4fcfc058c2c4c15cb7486f5043 |
|
BLAKE2b-256 | fb7b7928996ad487644c416183ffbc3cad30ae20764b08f6713bcdc7099ca442 |
File details
Details for the file django_otlp_log_exporter-1.0.3-py3-none-any.whl
.
File metadata
- Download URL: django_otlp_log_exporter-1.0.3-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c85de7aa082b78fd491dfb50ef6e5333c86f16c21926119584516fca45a08439 |
|
MD5 | 0c334264f39f1aef3cc7466833a81952 |
|
BLAKE2b-256 | a60f63fd5eed8018c50589f2d5a3f28732dd5d64064b9440169aed3e3532891a |