Documentation Index
Fetch the complete documentation index at: https://docs.entityml.com/llms.txt
Use this file to discover all available pages before exploring further.
Request
Optional bearer token when monitoring status protection is enabled.
Optional monitoring token alternative.
Response
operational, degraded, or down.
Infrastructure sections such as ec2 and s3.
Example
from entityml import EntityMLClient
client = EntityMLClient()
status = client.system.monitoring_status()
print(status["overall_status"])
Example response
{
"overall_status": "operational",
"checked_at": "2026-05-03T20:30:00+00:00",
"region": "us-east-1",
"sections": {
"ec2": [],
"s3": []
},
"errors": [],
"source": "live"
}