anderson-ufrj
feat: implement comprehensive monitoring and observability stack
c97e35f
raw
history blame
298 Bytes
"""
APM (Application Performance Monitoring) integration module.
This module provides hooks and integrations for external APM tools
like New Relic, Datadog, Dynatrace, and others.
"""
from .hooks import APMHooks
from .integrations import APMIntegrations
__all__ = ["APMHooks", "APMIntegrations"]