Event Monitor
Enter a channel name to view its events.
Send events
The channel comes from the URL (or ?channel=).
The request body is stored verbatim as the event payload — send
whatever JSON or plain text you like.
curl -X POST 'http://paste.ennwise.com/api/events/my-channel?source=ci' \
-H "Content-Type: application/json" \
-d '{"status":"ok","duration_ms":1423,"build":"#42"}'
Or just pipe text:
echo "backup complete" | curl -X POST http://paste.ennwise.com/api/events/my-channel \
--data-binary @-