You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per the documentation provided by influxdb and toml, to ship metrics to more than one instance, you must create multiple [[outputs.influxdb]] entries.
Attempts to fix the bug
Converting YAML to TOML, which seems to be happening based on this template, doesn't seem to capture the full functionality and configuration possibilities. In YAML, you cannot have duplicate keys in a map.
Additional context
The text was updated successfully, but these errors were encountered:
If outputs were a list of maps, this wouldn't be an issue. However, because the template responsible for generating the TOML file is using salt['slsutil.serialize']('toml', telegraf) to directly convert a YAML structure to TOML, this would require re-designing a lot of components.
Your setup
Formula commit hash / release tag
master
Versions reports (master & minion)
Pillar / config used
Bug details
Describe the bug
Cannot specify multiple influxdb outputs.
Steps to reproduce the bug
Define multiple influxdb output endpoints.
Expected behaviour
As per the documentation provided by influxdb and toml, to ship metrics to more than one instance, you must create multiple
[[outputs.influxdb]]
entries.Attempts to fix the bug
Converting YAML to TOML, which seems to be happening based on this template, doesn't seem to capture the full functionality and configuration possibilities. In YAML, you cannot have duplicate keys in a map.
Additional context
The text was updated successfully, but these errors were encountered: