Skip to content

Learn · Services

Data feeds

Connect the data you want watched.

Data feeds bring your activity into the platform: connect a source, and events start flowing into the watch step on their own. Anything that can send an event can be a feed.

You can also push events directly from your code with the SDK — same pipeline, same rules, same logbook.

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

Placeholder key shown. Signed-in users see their real key.