v1
latestOpenAPI 3.0.02026-07-142351,1971.3 MBEvents
Post an event
This endpoint allows you to post events to the stream. Tag them, set priority and event aggregate them with other events.
post/api/v1/events
Request body
Example request
{
"alert_type": "info",
"priority": "normal",
"tags": [
"environment:test"
],
"text": "Oh boy!",
"title": "Did you hear the news today?"
}Response
OK
Example response
{
"event": {
"alert_type": "info",
"payload": "{}",
"priority": "normal",
"tags": [
"environment:test"
],
"text": "Oh boy!",
"title": "Did you hear the news today?"
}
}