Refactor orchestrator activities and configuration files - Removed unused Temporal timeout environment variables from values.yaml. - Reorganized import statements in various activity files for better readability. - Updated logging messages to use consistent formatting across activities. - Enhanced test cases to ensure proper initialization and shutdown of orchestrator activities. - Improved overall code structure and readability by applying consistent formatting and style adjustments.
25 lines
583 B
Python
25 lines
583 B
Python
"""
|
|
Prometheus metrics definitions for the orchestrator application.
|
|
|
|
This module defines all Prometheus metrics used for monitoring the
|
|
orchestrator system including application health, email delivery,
|
|
and workflow execution metrics.
|
|
"""
|
|
|
|
from prometheus_client import Counter, Gauge
|
|
|
|
APP_UP = Gauge(
|
|
'app_up',
|
|
'Indicates if the application is running (1) or shutting down (0)',
|
|
['pod_id'],
|
|
)
|
|
|
|
CORE_LABELS = ['pod_id', 'model_name', 'pipeline_name']
|
|
|
|
|
|
EMAIL_SENT_COUNT = Counter(
|
|
'email_sent_count',
|
|
'Number of emails sent',
|
|
[*CORE_LABELS, 'email_group'],
|
|
)
|