创建一个事件¶
POST /api/v1/events/create
概述¶
创建一个事件并指定事件内容, 通过该接口写入的事件其df_source=custom
Body 请求参数¶
参数名 | 类型 | 必选 | 说明 |
---|---|---|---|
date | integer | Y | 事件时间。Unix 时间戳,单位:毫秒 允许为空: False |
status | string | Y | 事件状态(可选项:critical/error/warning/ok/info/nodata) 允许为空: False 可选值: ['critical', 'error', 'warning', 'ok', 'info', 'nodata'] |
title | string | Y | 事件标题 允许为空: False |
message | string | 事件详细描述 允许为空: False |
|
origin | string | 事件来源 允许为空: False |
|
customTags | json | 用户自定义字段事件 允许为空: False |
参数补充说明¶
请求例子¶
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