我正在尝试使用TICK堆栈进行监控,以创建概念证明 . 我有helloworld堆栈运行并显示CPU / Docker指标 .

我正在尝试使用telegraf http input plugin从http endpoints 拉出来:

从文档我只是配置了URL,GET和类型(设置为json)

[[inputs.http]]
## One or more URLs from which to read formatted metrics
urls = [
"http://localhost:500/Queues"
]
method = "GET"
data_format = "json"

但是在Influx / Chronograf中没有出现任何内容 . 我可以修改 endpoints 以适应那里的任何变化,但是我在telegraf配置中做错了什么?