0

我可以使用 rest api 成功创建模板和任务。

如何通过rest api使用模板创建任务?

我应该使用哪个端点?

4

1 回答 1

1

好的,了解如何:

基本上只需使用相同的任务休息端点并做一个帖子并传入 json。在 json 中,您可以指定 templateId 和如下所示的变量。

{
"status": "disabled"
,"id": "test_task4"
,"template-id": "generic_mean_alert"
,"vars" : {
    "measurement": {"type" : "string", "value" : "cpu" },
    "where_filter": {"type": "lambda", "value": "\"cpu\" == 'cpu-total'"},
    "groups": {"type": "list", "value": [{"type":"string", "value":"host"},{"type":"string", "value":"dc"}]},
    "field": {"type" : "string", "value" : "usage_idle" },
    "warn": {"type" : "lambda", "value" : "\"mean\" < 30.0" },
    "crit": {"type" : "lambda", "value" : "\"mean\" < 10.0" },
    "window": {"type" : "duration", "value" : "1m" },
    "slack_channel": {"type" : "string", "value" : "#alerts_testing" }
}
,"dbrps": [ { "db": "test","rp": "autogen" } ]
,"type": "stream" 
}

http://yoururl/kapacitor/v1/tasks

于 2017-01-19T15:01:03.210 回答