Skip to content

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
NameKindScheduleLast runState
Plant telemetryOpenTelemetrystreaming4 seconds agoHealthy
Support inboxEmailevery 5 minutes2 minutes agoHealthy
Nightly exportCSVdaily 02:009 hours agoHealthy
Figure. Three feeds running, with their kinds, schedules, and last-run times. The data feeds list with three connected feeds, their kinds, schedules and last-run times, and an Add feed button.
  1. Open Data feeds and select Add feed.1

  2. 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"},
)