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 Client

client = Client(api_key="YOUR_API_KEY")
client.emit_event(
    subject="pump-12",
    kind="observation",
    data={"route": "/checkout", "status": 200},
)

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