日本熟妇hd丰满老熟妇,中文字幕一区二区三区在线不卡 ,亚洲成片在线观看,免费女同在线一区二区

事件數據(Event)

事件(Event)是指值得關注的、有價值的數據。例如監控告警數據、定期巡檢作業的結果等。

格式

日志服務的事件數據遵循CloudEvents協議規范,具體說明如下表所示。

字段類型

字段名

是否必選

數據格式

說明

協議字段

specversion

String

根據CloudEvents協議規范,默認使用1.0

id

String

事件ID,您可以根據source+id來區分事件的唯一性。

source

String

通常用來標識事件發生的上下文信息,例如事件來源、發布事件的實例等。

type

String

事件類型,例如sls.alert

subject

String

事件主題,是對source字段的補充,例如用于描述實際觸發事件的對象。

datacontenttype

String

事件類型,默認取值為application/cloudevents+json

dataschema

URI

data字段需要遵循的Schema,默認為空。

data

JSON

具體的事件內容。不同來源和類型的事件格式會有差異。

time

Timestamp

事件時間,具體格式,請參見RFC 3339。例如2022-10-17T11:20:45.984+0800

擴展字段

title

String

事件標題。

message

String

事件描述。

status

String

事件狀態。取值:

  • ok

  • info

  • warning

  • error

示例

例如一個告警事件,示例數據如下:

{
    "specversion": "1.0",
    "id": "af****6c",
    "source": "acs:sls",
    "type": "sls.alert",
    "subject": "https://sls.console.aliyun.com/lognext/project/demo-alert-chengdu/logsearch/nginx-access-log?encode=base64&endTime=1684312259&queryString=c3RhdHVzID49IDQwMCB8IHNlbGVjdCByZXF1ZXN0X21ldGhvZCwgY291bnQoKikgYXMgY250IGdyb3VwIGJ5IHJlcXVlc3RfbWV0aG9kIA%3D%3D&queryTimeType=99&startTime=1684311959",
    "datacontenttype": "application/cloudevents+json",
    "data": {
        "aliuid": "16****50",
        "region": "cn-chengdu",
        "project": "demo-alert-chengdu",
        "alert_id": "alert-16****96-247190",
        "alert_name": "Nginx訪問錯誤",
        "alert_instance_id": "77****e4-1aad9f7",
        "alert_type": "sls_alert",
        "next_eval_interval": 300,
        "fire_time": 1684299959,
        "alert_time": 1684312259,
        "resolve_time": 0,
        "status": "firing",
        "severity": 10,
        "labels": {
            "request_method": "GET"
        },
        "annotations": {
            "__count__": "1",
            "cnt": "49",
            "desc": "Nginx最近五分鐘內GET請求錯誤49次",
            "title": "Nginx訪問錯誤告警觸發"
        },
        "results": [
            {
                "region": "cn-chengdu",
                "project": "demo-alert-chengdu",
                "store": "nginx-access-log",
                "store_type": "log",
                "role_arn": "",
                "query": "status >= 400 | select request_method, count(*) as cnt group by request_method ",
                "start_time": 1684311959,
                "end_time": 1684312259,
                "fire_result": {
                    "cnt": "49",
                    "request_method": "GET"
                },
                "raw_results": [
                    {
                        "cnt": "49",
                        "request_method": "GET"
                    },
                    {
                        "cnt": "3",
                        "request_method": "DELETE"
                    },
                    {
                        "cnt": "7",
                        "request_method": "POST"
                    },
                    {
                        "cnt": "6",
                        "request_method": "PUT"
                    }
                ],
                "raw_result_count": 4,
                "truncated": false,
                "dashboard_id": "",
                "chart_title": "",
                "is_complete": true,
                "power_sql_mode": "auto"
            }
        ],
        "fire_results": [
            {
                "cnt": "49",
                "request_method": "GET"
            }
        ],
        "fire_results_count": 1,
        "condition": "Count:[1] > 0; Condition:[49] > 20",
        "raw_condition": "Count:__count__ > 0; Condition:cnt > 20"
    },
    "time": "2023-05-17T08:30:59Z",
    "title": "Nginx訪問錯誤告警觸發",
    "message": "Nginx最近五分鐘內GET請求錯誤49次",
    "status": "error"
}