Learn · Services
Data feeds
Connect the data you want watched.
Checked against the product on · written for people writing code
A feed is a door data comes through. When the feed runs, every record it brings in becomes an event about a watched thing, and your rules weigh it.
console.dmzagent.com/feeds
Watch
Data feeds
1All kindsAll statesAdd feed
2
| Name | Kind | Schedule | Last run | State |
|---|---|---|---|---|
| Plant telemetry | OpenTelemetry | streaming | 4 seconds ago | Healthy |
| Support inbox | every 5 minutes | 2 minutes ago | Healthy | |
| Nightly export | CSV | daily 02:00 | 9 hours ago | Healthy |
Open Data feeds and select Add feed.1
Read the state column.2
A healthy feed reports its last run. A backing-off feed had several pulls rejected.
Twelve integration doors exist, from files and mailboxes to telemetry collectors and your own endpoints. The catalog lists every one with its status.
Or send events in code
from dmzagent import DMZAgent
cx = DMZAgent(api_key="YOUR_API_KEY")
cx.emit_event(
"observation",
agent_subject_id="pump-12",
subject_type="sensor",
payload={"reading": 41.2, "unit": "F"},
)