My anget version is Telegraf 1.11.2 and config file likes below
[agent]
interval="1s"
flush_interval="1s"
[[inputs.exec]]
commands = ["zbs-meta -f json chunk list"]
data_format = "json"
[[outputs.file]]
files = ["stdout"]
data_format = "json"
when I type the command in terminal it generate data like this (it is json data):
[{"Status": "CONNECTED_HEALTHY", "Name": "497c6f82-7cbd-445d-9776-ac80dbbc1740", "Zone": "0", "Provisioned Space": "5.16 TB", "IP": "10.64.38.3", "Total Disk Space": "13.70 TB", "Used Cache Space": "1.41 TB", "Port": "10200", "Used Disk Space": "3.65 TB", "Registerred Date": "2017-01-21 10:57:25", "IPMI": "", "Brick": "0", "Total Cache Space": "1.62 TB", "ID": "1"}, {"Status": "CONNECTED_HEALTHY", "Name": "f1424256-7150-415a-85f5-2731aa6e07ec", "Zone": "0", "Provisioned Space": "5.16 TB", "IP": "10.64.38.2", "Total Disk Space": "13.70 TB", "Used Cache Space": "1.23 TB", "Port": "10200", "Used Disk Space": "3.52 TB", "Registerred Date": "2017-01-21 10:58:10", "IPMI": "", "Brick": "0", "Total Cache Space": "1.62 TB", "ID": "2"}]
but the output plugin put out nothing and log says that:
[root@AZ01HCI01 ~]# telegraf -config test.conf --debug
2019-07-23T08:54:20Z I! Starting Telegraf 1.11.2
2019-07-23T08:54:20Z I! Loaded inputs: exec
2019-07-23T08:54:20Z I! Loaded aggregators:
2019-07-23T08:54:20Z I! Loaded processors:
2019-07-23T08:54:20Z I! Loaded outputs: file
2019-07-23T08:54:20Z I! Tags enabled: host=AZ01HCI01.PRI.QINGHAI-ZW
2019-07-23T08:54:20Z I! [agent] Config: Interval:1s, Quiet:false, Hostname:"AZ01HCI01.PRI.QINGHAI-ZW", Flush Interval:1s
2019-07-23T08:54:20Z D! [agent] Connecting outputs
2019-07-23T08:54:20Z D! [agent] Attempting connection to output: file
2019-07-23T08:54:20Z D! [agent] Successfully connected to output: file
2019-07-23T08:54:20Z D! [agent] Starting service inputs
2019-07-23T08:54:22Z D! [outputs.file] buffer fullness: 0 / 10000 metrics.
2019-07-23T08:54:23Z D! [outputs.file] buffer fullness: 0 / 10000 metrics.
2019-07-23T08:54:24Z D! [outputs.file] buffer fullness: 0 / 10000 metrics.
Do I use the exec input incorrectly or the json parser doesn’t work well?