Hi,
I am using sandbox. After git clone, ./sanbox up
- all the container are up and running as expected. But when i added below script to the kapacitor.conf
[[httppost]]
endpoint = “onoff”
url = “http://127.0.0.1:3123”
headers = { “Content-Type” = “application/json” }
alert-template = “{{.Message}}:{{range .Data.Series}}{{.Tags}},{{range .Values}}{{.}}{{end}}{{end}}”
row-template = “{{.Name}} host={{index .Tags "host"}}{{range .Values}} {{index . “time”}} {{index . “value”}}{{end}}”
And ./sandbox restart the kapacitor container is exiting (not up and running).
And when i delete the added script, everything is up and running. Any idea why its failing ?