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

告警資源數據結構

本文介紹告警資源數據的數據結構。

簡介

告警資源數據包括用戶、用戶組、值班組、Webhook集成、告警策略(路由合并、抑制、靜默)、行動策略、內容模板、自定義的其它資源數據等。

說明

抑制策略不推薦使用。

告警資源數據分為資源(Resource)和記錄(Record)兩類。例如用戶本身屬于一種資源,但是配置的每一條用戶信息都是一條記錄。

分類

屬性

說明

資源(Resource)

resource_name

標識資源的名稱,例如用戶的資源名稱為sls.common.user。

記錄(Record)

id

該記錄的唯一ID。字符串類型。

tag

為該記錄打標簽。字符串類型。

value

該記錄完整的值。JSON字符串類型。

告警資源數據的結構

資源類型

resource_name字段

record_id字段

record_tag字段

示例

備注

用戶

sls.common.user

user_id

user_name

{
    "user_id": "alex",
    "user_name": "Alex",
    "email": [
        "***@example.com"
    ],
    "country_code": "86",
    "phone": "133****3333",
    "enabled": true,
    "sms_enabled": true,
    "voice_enabled": true
}

用戶組

sls.common.user_group

user_group_id

user_group_name

{
    "user_group_id": "devops",
    "user_group_name": "DevOps Team",
    "enabled": true,
    "members": [
        "alex"
    ]
}

值班組

sls.alert.oncall_group

oncall_id

oncall_name

{
    "oncall_id": "default_oncall",
    "oncall_name": "Default Oncall",
    "enabled": true,
    "overrides": [],
    "rotations": [
        {
            "targets": [
                {
                    "type": "user",
                    "target_id": "alex"
                },
                {
                    "type": "user_group",
                    "target_id": "devops"
                }
            ],
            "end_time": 0,
            "shift_day": "",
            "shift_time": "12:00",
            "shift_type": "day",
            "start_time": 1633017600,
            "shift_minute": 0,
            "end_time_type": "none",
            "shift_interval": 1,
            "shift_week_custom": null,
            "restriction_date_type": "workday",
            "restriction_time_type": "allday",
            "restriction_week_range": null,
            "restriction_time_custom_range": null
        }
    ],
    "calendar_id": "default_calendar"
}

配置復雜,建議通過控制臺完成配置。

Webhook集成

sls.alert.action_webhook

id

name

{
    "id": "custom-webhook",
    "name": "Custom Webhook",
    "type": "custom",
    "url": "http://localhost:9099/data/webhook",
    "method": "POST",
    "headers": [
        {
            "key": "Content-Type",
            "value": "application/json"
        },
        {
            "key": "Foo",
            "value": "bar"
        }
    ]
}
{
    "id": "dingtalk",
    "name": "Dingtalk Webhook",
    "type": "dingtalk",
    "url": "https://oapi.dingtalk.com/robot/send?access_token=**********",
    "method": "POST",
    "secret": "SEC**********",
    "headers": []
}
  • type為Webhook類型,可選值如下:

    • dingtalk:釘釘。

    • wechat:企業微信。

    • lark:飛書。

    • slack:Slack。

    • custom:自定義Webhook。

  • 除了custom類型外,其余類型所涉及的method固定為POST,headers為空數組。

  • type為釘釘或飛書,且在釘釘或飛書側設置安全校驗方式為簽名校驗時,需要添加secret字段。

    您可以在釘釘或飛書機器人管理界面獲取加簽密鑰。

告警策略

sls.alert.alert_policy

policy_id

policy_name

{
    "policy_id": "sls.builtin",
    "policy_name": "SLS Builtin Alert Policy",
    "parent_id": "sls.root",
    "is_default": false,
    "group_script": "fire(action_policy=\"sls.builtin\", group={\"project\": \"__a__\", \"uid\": alert.aliuid}, group_wait=\"5s\", group_interval=\"2m\", repeat_interval=\"2m\")\nstop()\nfire(action_policy=\"sls.builtin\", group={\"alert_id\": alert.alert_id}, group_wait=\"5s\", group_interval=\"10s\", repeat_interval=\"2m\")\nif alert.labels.name ~= \"^\\\\w+s$\":\n\tfire(action_policy=\"sls.builtin\", group={\"product\": \"xxs\"}, group_wait=\"5s\", group_interval=\"10s\", repeat_interval=\"2m\")\n\tstop()\nstop()\nfire(action_policy=\"sls.builtin\", group={\"label_name\": alert.labels.name}, group_wait=\"10s\", group_interval=\"10s\", repeat_interval=\"2m\")",
    "inhibit_script": "if alert.severity >= 8:\n    silence alert.severity < 6",
    "silence_script": ""
}
  • is_default固定設置為false即可。

  • group_script為路由合并策略。

  • inhibit_script為抑制策略。

  • silence_script為靜默策略。

  • 通過SDK配置時,group_script、inhibit_scriptsilence_script只包含DSL腳本信息,無UI配置信息,因此控制臺上無法看到相應的圖形結構。

行動策略

sls.alert.action_policy

action_policy_id

action_policy_name

{
    "action_policy_id": "sls.builtin",
    "action_policy_name": "SLS Builtin Action Policy",
    "labels": {},
    "is_default": false,
    "primary_policy_script": "fire(type=\"webhook_integration\", integration_type=\"dingtalk\", webhook_id=\"dingtalk-test\", template_id=\"default-template\", period=\"any\")",
    "secondary_policy_script": "fire(type=\"voice\", users=[\"jizhi\"], groups=[\"group-jizhi\"], template_id=\"default-template\")",
    "escalation_start_enabled": false,
    "escalation_start_timeout": "10s",
    "escalation_inprogress_enabled": false,
    "escalation_inprogress_timeout": "10s",
    "escalation_enabled": false,
    "escalation_timeout": "4h0m0s"
}
  • is_default固定設置為false即可。

  • labels為保留參數,固定為空對象即可。

  • primary_policy_script為第一行動策略。

  • secondary_policy_script為第二行動策略。

  • escalation_*為控制第二行動策略是否開啟的配置,可參見控制臺中的配置項。

  • 通過SDK配置時,primary_policy_scriptsecondary_policy_script只包含DSL腳本信息,無UI配置信息,因此控制臺上無法看到相應的圖形結構。

內容模板

sls.alert.content_template

template_id

template_name

{
    "template_id": "default-template",
    "template_name": "Default Template",
    "is_default": false,
    "templates": {
        "fc": {
            "limit": 0,
            "locale": "zh-CN",
            "content": "",
            "send_type": "merged"
        },
        "sms": {
            "locale": "zh-CN",
            "content": ""
        },
        "lark": {
            "title": "Alerthub告警測試 ${alert_name}",
            "locale": "zh-CN",
            "content": ""
        },
        "email": {
            "locale": "zh-CN",
            "content": "",
            "subject": "SLS告警測試-jizhi-test"
        },
        "slack": {
            "title": "Alerthub告警測試 ${alert_name}",
            "locale": "zh-CN",
            "content": ""
        },
        "voice": {
            "locale": "zh-CN",
            "content": ""
        },
        "wechat": {
            "title": "Alerthub告警測試 ${alert_name}",
            "locale": "zh-CN",
            "content": ""
        },
        "webhook": {
            "limit": 0,
            "locale": "zh-CN",
            "content": "",
            "send_type": "batch"
        },
        "dingtalk": {
            "title": "Alerthub告警測試 ${alert_name}",
            "locale": "zh-CN",
            "content": ""
        },
        "event_bridge": {
            "locale": "zh-CN",
            "content": "",
            "subject": "wkb-test"
        },
        "message_center": {
            "locale": "zh-CN",
            "content": ""
        }
    }
}
  • is_default固定設置為false即可。

  • templates中包含每個渠道的模板配置,如果某個渠道的content值為空,則表示使用系統默認的模板。更多信息,請參見默認內容模板。

  • locale取值為zh-CN或en-US。

  • webhook和fc渠道的send_type取值為single或者batch,表示逐條通知或者合并通知。

默認日歷

sls.common.calendar

calendar_id

calendar_name

{
    "calendar_id": "default_calendar",
    "calendar_name": "Default Calendar",
    "timezone": "Asia/Shanghai",
    "workdays": [
        1,
        2,
        3,
        4,
        5
    ],
    "worktime": [
        {
            "end_time": "21:00",
            "start_time": "09:00"
        }
    ],
    "reset_days": [],
    "holiday_sync": "china"
}
  • 默認日歷的ID固定為 default_calendar。

  • 配置復雜,建議通過控制臺完成配置。

DSL語法說明

簡單的DSL配置示例如下所示。

重要

DSL配置復雜,建議您先在控制臺完成配置,然后查看Network請求所發送的Payload內容。

設置路由合并策略

  • 控制臺配置告警策略

  • DSL配置

    if alert.severity >= 8:
        fire(action_policy="sls.builtin", group={"alert.project": alert.project, "alert.alert_id": alert.alert_id}, group_by_all_labels=true, group_wait="15s", group_interval="5m", repeat_interval="1h")
        stop()
    fire(action_policy="sls.builtin", group={"alert.project": alert.project}, group_by_all_labels=false, group_wait="15s", group_interval="5m", repeat_interval="1h")

    基本語法說明如下:

    • if alert.severity >= 8為條件節點。

    • fire( )為路由合并節點。

      • action_policy為行動策略ID。

      • group為合并基準,dict類型。

      • group_by_all_labels為是否根據所有標簽合并,取值為true、false。

      • group_wait為首次等待時間。

      • group_interval為變化等待時間。

      • repeat_interval為重復等待時間。

    • stop()為結束節點。

設置抑制策略

  • 控制臺配置告警策略

  • DSL配置

    if alert.severity >= 8:
        silence alert.severity < 8
        stop()

    基本語法說明如下:

    • if alert.severity >= 8為條件節點。

    • silence alert.severity < 8為抑制節點。

    • stop()為結束節點。

設置靜默策略

  • 控制臺配置告警策略

  • DSL配置

    drop(end=1638189177) alert.alert_name == "test-alert"
    accept alert.labels.env == "prod"

    基本語法說明如下:

    • drop表示靜默。

    • accept表示不靜默。

    • startend表示時間范圍,Unix時間戳(單位為秒)。

      • 特定時間范圍:需設置startend

      • 特定時間為止:只需設置end。

      • 一段時間:只需設置end

      • 持續:不需要設置startend。

設置行動策略

  • 控制臺配置行動策略

  • DSL配置

    if alert.severity >= 8:
        fire(type="sms", users=[], groups=[], oncall_groups=["alert-test-oncall"], template_id="sls.builtin.cn", check_quota="true", period="any")
        stop()
    if alerts.severity < 8:
        fire(type="webhook_integration", integration_type="dingtalk", webhook_id="jizhi-test", template_id="sls.builtin.cn", period="any")
        stop()
    重要
    • if alert.xxx表示任意告警滿足條件。

    • if alerts.xxx表示所有告警滿足條件。

其中,每個渠道的配置示例如下:

  • 控制臺配置行動策略

  • DSL配置

    fire(type="sms", users=["jizhi"], groups=[], oncall_groups=[], template_id="sls.builtin.cn", check_quota="true", period="workday")
    fire(type="voice", users=[], groups=[], oncall_groups=["alert-test-oncall"], template_id="sls.builtin.cn", check_quota="true", period="worktime")
    fire(type="email", users=[], groups=["alert-test"], oncall_groups=[], template_id="sls.builtin.cn", check_quota="true", period="any")
    fire(type="webhook_integration", integration_type="dingtalk", webhook_id="jizhi-test", template_id="sls.builtin.cn", period="any")
    fire(type="webhook_integration", integration_type="wechat", webhook_id="wechat-test", template_id="sls.builtin.cn", period="any")
    fire(type="message_center", template_id="sls.builtin.cn", check_quota="true", period="any")
    fire(type="event_bridge", region="cn-hangzhou", bus_name="bus-demo", template_id="sls.builtin.cn", period="any")
    fire(type="fc", region="cn-shanghai", service="jizhi-test", qualifier="LATEST", function="sls-ops-1", template_id="sls.builtin.cn", period="any")
    fire(type="set_ticket_owner", choice="random", users=[], groups=[], oncall_groups=["alert-test-oncall"])

    基本語法說明如下:

    通過fire(),設置通知渠道。更多信息,請參見通知渠道說明。