| DIR: /proc/thread-self/root/opt/imunify360/venv/lib/python3.11/site-packages/im360/simple_rpc/ |
| Current File : //proc/thread-self/root/opt/imunify360/venv/lib/python3.11/site-packages/im360/simple_rpc/health.py |
import time
from defence360agent.api import health
from defence360agent.rpc_tools.lookup import RootEndpoints, bind
from defence360agent.utils import Scope
class HealthEndpoints(RootEndpoints):
SCOPE = Scope.IM360
@bind("health")
async def health(self):
h = health.sensor.status(time.time())
return h._asdict()
|