Domotz Agents
Overview
Domotz agents (also called collectors or probes) are software or hardware appliances deployed at customer sites that perform network discovery, device monitoring, and data collection. Each agent represents a monitored site/location and is the entry point for all device and network operations.
Key Concepts
Agent Types
- Software Agent - Installed on a VM or physical machine at the site
- Domotz Box - Dedicated hardware appliance
- Virtual Appliance - Pre-configured VM image
Agent Lifecycle
Agents are deployed at customer sites and maintain a persistent connection to the Domotz cloud. Each agent:
- Discovers and monitors devices on local networks
- Runs scheduled and on-demand network scans
- Executes Domotz Eyes sensor checks
- Reports alerts and status changes
Agent Status
| Status | Meaning |
|---|---|
ONLINE | Agent is connected and reporting |
OFFLINE | Agent is not connected to the cloud |
API Patterns
List Agents
domotz_list_agents
Returns all agents associated with your account.
Example response:
[
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47
},
"location": {
"latitude": 40.7128,
"longitude": -74.0060
},
"last_seen": "2026-03-27T15:30:00Z"
}
]
Get Agent Details
domotz_get_agent
Parameters:
agent_id-- The specific agent ID
Example response:
{
"id": 12345,
"display_name": "Acme Corp - Main Office",
"status": {
"value": "ONLINE"
},
"license": {
"bound_devices": 47,
"allowed_devices": 100
},
"access_right": {
"api_enabled": true
},
"creation_time": "2025-01-15T10:00:00Z",
"last_seen": "2026-03-27T15:30:00Z"
}
Common Workflows
Fleet Health Check
- Call
domotz_list_agentsto get all agents - Group by status (ONLINE/OFFLINE)
- Flag agents not seen in >1 hour as potentially unhealthy
- Check
license.bound_devicesvslicense.allowed_devicesfor capacity
Site Inventory
- Call
domotz_list_agentsto get all sites - For each agent, note
display_name, status, and bound device count - Build a summary table of all monitored sites
Agent Capacity Planning
- List all agents
- Compare
bound_devicestoallowed_devicesfor each - Flag agents approaching their device limit
- Recommend license upgrades where needed
Error Handling
Agent Not Found
Cause: Invalid agent ID or agent has been deleted Solution: Verify the agent ID; check if the site was decommissioned
Agent Offline
Cause: Network connectivity issue, agent service stopped, or hardware failure Solution: Check site connectivity; verify agent service is running; contact site contact
Empty Agent List
Cause: No agents deployed or API key has limited scope Solution: Verify API key permissions; check Domotz Portal for agent list
Best Practices
- Monitor
last_seentimestamps to detect offline agents early - Track
bound_devicesvsallowed_devicesfor license planning - Use
display_nameconsistently with client site names in your PSA - Cross-reference agent sites with RMM site structures
- Set up alerts for agent offline events in Domotz
Related Skills
- api-patterns - Pagination and rate limiting
- devices - Devices monitored by agents
- alerts - Alerts generated by agents
- network - Network scanning via agents
- eyes - Sensors running on agents