{
"start_time": 0,
"end_time": 0,
"team_ids": [
0
],
"channel_ids": [
0
],
"severities": [
"Info"
],
"time_zone": "Asia/Shanghai",
"orderby": "total_alert_cnt",
"asc": true,
"k": 1,
"label": "check"
}
curl --location --request POST 'http://prod-cn.your-api-server.com/insight/alert/topk-by-label' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_time": 0,
"end_time": 0,
"team_ids": [
0
],
"channel_ids": [
0
],
"severities": [
"Info"
],
"time_zone": "Asia/Shanghai",
"orderby": "total_alert_cnt",
"asc": true,
"k": 1,
"label": "check"
}'
{
"error": {
"code": "string",
"message": "string"
},
"data": [
{
"total_alert_cnt": 11,
"total_alert_event_cnt": 11,
"label": "Rule name"
},
{
"total_alert_cnt": 1,
"total_alert_event_cnt": 1,
"label": "cpu.ide<28"
}
]
}