# What this PR does Moving metrics creation into separate task to make alert ingestion more robust ## Which issue(s) this PR fixes ## Checklist - [ ] Unit, integration, and e2e (if applicable) tests updated - [ ] Documentation added (or `pr:no public docs` PR label added if not required) - [ ] `CHANGELOG.md` updated (or `pr:no changelog` PR label added if not required) --------- Co-authored-by: Julia <ferril.darkdiver@gmail.com>
8 lines
177 B
Python
8 lines
177 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class MetricsExporterConfig(AppConfig):
|
|
name = "apps.metrics_exporter"
|
|
|
|
def ready(self):
|
|
from . import signals # noqa: F401
|