Kapacitor .post() HTTP Post to url not sending data
问题 I am using kapacitor to send alert to URL using HTTP POST. Written script is hitting on given url but it is not sending related data to any of given url. Following is my TICK script. stream |from() .measurement('cpu') |alert() .id('kapacitor/{{ index .Tags "host"}}') .message('{{ .ID }} is {{ .Level }} value:{{ index .Fields "value" }}') .info(lambda: TRUE) .post('http://localhost:1440/alert') .post('http://localhost/test.php') Following is a first post script: var express = require("express"