11 lines
394 B
Python
11 lines
394 B
Python
|
|
"""Background monitoring data collection services.
|
||
|
|
|
||
|
|
This package provides the GatewayCollectorService which periodically polls
|
||
|
|
OpenClaw Gateway RPC endpoints and stores the results in Mission Control's
|
||
|
|
monitoring models (CostSnapshot, CronJobStatus, SessionEvent, etc.).
|
||
|
|
"""
|
||
|
|
|
||
|
|
from app.services.monitoring.gateway_collector import GatewayCollectorService
|
||
|
|
|
||
|
|
__all__ = ("GatewayCollectorService",)
|