mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-10-31 22:19:00 +00:00
61453d48e6
This enables automatic instrumentation of Postgres queries when OpenTelemetry instrumentation is enabled, which will help with debugging performance problems.
14 lines
422 B
Python
14 lines
422 B
Python
from django.apps import AppConfig
|
|
from celerywyrm import settings
|
|
|
|
|
|
class CelerywyrmConfig(AppConfig):
|
|
name = "celerywyrm"
|
|
verbose_name = "BookWyrm Celery"
|
|
|
|
def ready(self):
|
|
if settings.OTEL_EXPORTER_OTLP_ENDPOINT or settings.OTEL_EXPORTER_CONSOLE:
|
|
from bookwyrm.telemetry import open_telemetry
|
|
|
|
open_telemetry.instrumentCelery()
|
|
open_telemetry.instrumentPostgres()
|