Skip to main content

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.

https://github.com/mojtabaakbari221b/django_otlp_log_exporter/blob/main/direct_to_collector.png

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

django-otlp-log-exporter-1.0.3.tar.gz (3.3 kB view details)

Uploaded Source

Built Distribution

File details

Details for the file django-otlp-log-exporter-1.0.3.tar.gz.

File metadata

File hashes

Hashes for django-otlp-log-exporter-1.0.3.tar.gz
Algorithm Hash digest
SHA256 6e6473e21c36898c6d74e3b7d1c5b69461044a5a79331350b416cda7a746eb84
MD5 83abee4fcfc058c2c4c15cb7486f5043
BLAKE2b-256 fb7b7928996ad487644c416183ffbc3cad30ae20764b08f6713bcdc7099ca442

See more details on using hashes here.

File details

Details for the file django_otlp_log_exporter-1.0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_otlp_log_exporter-1.0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 c85de7aa082b78fd491dfb50ef6e5333c86f16c21926119584516fca45a08439
MD5 0c334264f39f1aef3cc7466833a81952
BLAKE2b-256 a60f63fd5eed8018c50589f2d5a3f28732dd5d64064b9440169aed3e3532891a

See more details on using hashes here.

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