mirror of
https://github.com/pacnpal/thrilltrack-explorer.git
synced 2025-12-20 13:31:12 -05:00
Add Django Celery tasks and utilities to periodically collect system metrics (error rates, response times, queue sizes) and record them into metric_time_series. Include monitoring app scaffolding, metrics collector, Celery beat schedule, middleware for live metrics, and a Supabase edge function for cross-source metrics.
11 lines
234 B
Python
11 lines
234 B
Python
"""
|
|
Monitoring app configuration.
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class MonitoringConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.monitoring'
|
|
verbose_name = 'System Monitoring'
|