新增监控
配置页面
配置参数
{
"trigger": {
"schedule": {
"cron": "0/30 0/1 1-6 ? * MON-FRI"
}
},
"input": {
"search": {
"request": {
"search_type": "query_then_fetch",
"indices": [
"prod-*"
],
"rest_total_hits_as_int": true,
"body": {
"size": 0,
"query": {
"bool": {
"must": [
{
"match": {
"level": "WARNING"
}
},
{
"terms": {
"tags": [
"tags关键字"
]
}
},
{
"range": {
"@timestamp": {
"gte": "now-30s"
}
}
}
],
"must_not": []
}
}
}
}
}
},
"condition": {
"compare": {
"ctx.payload.hits.total": {
"gte": 1
}
}
},
"actions": {
"my-webhook-action": {
"webhook": {
"scheme": "http",
"host": "ip",
"port": 80,
"method": "post",
"path": "pos-alerts",
"params": {},
"headers": {},
"body": """
{
"msgtype": "markdown",
"markdown":{
"title": "OMK-Alerts",
"text": "# **【信息】-预警 {{ ctx.payload.hits.total }}**\n### 关注: @手机号"
},
"at": {
"atMobiles": [“”]
}
}
"""
}
}
}
}