We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm trying to configure Telegraf using the values.yaml file. Part of the configuration is a [[inputs.mqtt_consumer.xpath]] block in the mqtt_consumer:
[[inputs.mqtt_consumer.xpath]] timestamp = "/timestamp" timestamp_format = "unix" tag_selection = "/tags/" field_selection = "/fields/"
In the values.yaml file I translated this to:
xpath: timestamp: "/timestamp" timestamp_format: "unix" tag_selection: "/tags/" field_selection: "/fields/"
Unfortunately this gives me the following error:
Telegraf helmchart: error parsing mqtt_consumer, adding parser failed: line 59: cannot unmarshal TOML table into []xpath.Config (need struct or map)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm trying to configure Telegraf using the values.yaml file. Part of the configuration is a [[inputs.mqtt_consumer.xpath]] block in the mqtt_consumer:
[[inputs.mqtt_consumer.xpath]]
timestamp = "/timestamp"
timestamp_format = "unix"
tag_selection = "/tags/"
field_selection = "/fields/"
In the values.yaml file I translated this to:
xpath:
timestamp: "/timestamp"
timestamp_format: "unix"
tag_selection: "/tags/"
field_selection: "/fields/"
Unfortunately this gives me the following error:
Telegraf helmchart: error parsing mqtt_consumer, adding parser failed: line 59: cannot unmarshal TOML table into []xpath.Config (need struct or map)
The text was updated successfully, but these errors were encountered: