Domotz Devices
Overview
Domotz automatically discovers and monitors devices on networks where agents are deployed. Devices include servers, workstations, network equipment, IoT devices, printers, and any IP-connected hardware. Each device is associated with a specific agent (site).
Key Concepts
Device Discovery
Domotz agents continuously scan local networks and automatically discover new devices. Discovered devices are classified by type and can be:
- Monitored - Actively tracked with status checks
- Unmonitored - Discovered but not actively tracked
Device Identification
Devices are identified by multiple attributes:
- IP Address - Current network address
- MAC Address - Hardware identifier (persistent)
- Hostname - DNS or NetBIOS name
- Display Name - User-assigned friendly name
- Vendor - Manufacturer identified from MAC OUI
Device Status
| Status | Meaning |
|---|---|
ONLINE | Device is reachable on the network |
OFFLINE | Device is not responding |
UNKNOWN | Status cannot be determined |
API Patterns
List Devices
domotz_list_devices
Parameters:
agent_id-- The agent monitoring this network (required)page-- Page number for paginationpage_size-- Results per page
Example response:
[
{
"id": 789,
"display_name": "Core Switch",
"ip_addresses": ["192.168.1.1"],
"hw_address": "AA:BB:CC:DD:EE:FF",
"vendor": "Cisco Systems",
"type": {
"detected_id": 3,
"label": "Network Device"
},
"status": "ONLINE",
"last_status_change": "2026-03-27T10:00:00Z",
"first_seen": "2025-06-15T08:30:00Z"
}
]
Get Device Details
domotz_get_device
Parameters:
agent_id-- The agent IDdevice_id-- The specific device ID
Search Devices
domotz_search_devices
Parameters:
agent_id-- The agent IDquery-- Search term (name, IP, or MAC)
Common Workflows
Device Lookup by IP
- Call
domotz_search_deviceswith the IP address asquery - Review matching devices for the correct match
- Call
domotz_get_devicefor full details if needed
Device Lookup by MAC
- Call
domotz_search_deviceswith the MAC address asquery - MAC lookups are useful when devices change IPs (DHCP)
Full Site Inventory
- Call
domotz_list_deviceswith theagent_idfor the site - Paginate through all results
- Group devices by type (servers, workstations, network devices, etc.)
- Note online vs offline status for each
Device Change Detection
- List all devices for an agent
- Compare against a previous inventory snapshot
- Identify new devices (potential rogue devices)
- Identify missing devices (potentially decommissioned)
Network Topology Mapping
- List all devices for an agent
- Group by subnet based on IP addresses
- Identify network devices (switches, routers, APs)
- Map device-to-switch port relationships where available
Error Handling
Device Not Found
Cause: Invalid device ID, device has been removed, or wrong agent Solution: Verify the device ID and agent ID; search by IP or MAC instead
Empty Device List
Cause: Agent has not completed initial scan, or no devices on network Solution: Verify agent is online; trigger a network scan; wait for discovery
Stale Device Data
Cause: Agent is offline or device status hasn't been refreshed Solution: Check agent status; trigger a fresh scan if possible
Best Practices
- Use MAC address for persistent device identification (IPs change with DHCP)
- Paginate through all results for accurate device counts
- Monitor
last_status_changeto detect recent outages - Use
vendorfield to categorize devices by manufacturer - Cross-reference device inventory with IT documentation (IT Glue configurations)
- Track
first_seendates to detect new/rogue devices on the network - Use display names consistently with your documentation platform
Related Skills
- api-patterns - Pagination and rate limiting
- agents - Agents that monitor devices
- alerts - Alerts triggered by device events
- network - Network scanning and port monitoring
- eyes - Sensors monitoring specific devices