Create an Event¶
post /api/v1/events/create
Overview¶
Create an event and specify the event content. Events written through this interface have df_source=custom
.
Body Request Parameter¶
Parameter Name | Type | Required | Description |
---|---|---|---|
date | integer | Y | Event time. Unix timestamp in milliseconds. Allow null: False |
status | string | Y | Event status (optional: critical/error/warning/ok/info/nodata) Allow null: False Optional value: ['critical', 'error', 'warning', 'ok', 'info', 'nodata'] |
title | string | Y | Event title Allow null: False |
message | string | Detailed description of events Allow null: False |
|
origin | string | Source of events Allow null: False |
|
customTags | json | User-defined field events Allow null: False |
Supplementary Description of Parameters¶
Request Example¶
curl 'https://openapi.guance.com/api/v1/events/create' \
-H 'Content-Type: application/json' \
-H 'DF-API-KEY: <DF-API-KEY>' \
--data-raw $'{"date":1668141576000,"status":"info","title":"测试自定义事件01","message":"测试自定义事件-message","customTags":{"server":"自定义服务"}}' \
--compressed