D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
imunify360
/
venv
/
lib
/
python3.11
/
site-packages
/
im360
/
simple_rpc
/
Filename :
health.py
back
Copy
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()