9 lines
511 B
Python
9 lines
511 B
Python
import grpc
|
|
|
|
from .sys_mon_agent_api_pb2 import AgentConfiguration, AgentConfigurationResponse, MonitoringStats, MonitoredServiceState, MonitoredService, MonitoredStorage
|
|
from .sys_mon_agent_api_pb2_grpc import AgentServicer, AgentStub, add_AgentServicer_to_server
|
|
from .api_extensions import _MonitoringStats_get_storage_by_name, _MonitoringStats_get_service_by_name
|
|
|
|
MonitoringStats.storage_by_name = _MonitoringStats_get_storage_by_name
|
|
MonitoringStats.service_by_name = _MonitoringStats_get_service_by_name
|