有一个带有面板的Grafana仪表板。是否可以添加(或定义)API?
答案 0 :(得分:0)
要创建或修改新警报,您需要更新包含警报的仪表板json。使用dashboard API并编辑特定的面板警报部分。您需要在此处定义警报。例如:
"alert": {
"conditions": [
{
"type": "query",
"query": {
"params": [
"A",
"5m",
"now"
]
},
"reducer": {
"type": "avg",
"params": []
},
"evaluator": {
"type": "gt",
"params": [
null
]
},
"operator": {
"type": "and"
}
}
],