-
Hello All, We have a use-case where vector would be running in a k8s cluster and we'd like to update the vector instance with a new toml file under certain circumstances. By adding additional files to the The general idea is to be able to dynamically add new transforms and sinks at runtime as needs arise and how in the world can we do that in a sane way. Any ideas one way or another? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @cdancy ! You can use |
Beta Was this translation helpful? Give feedback.
Hi @cdancy !
You can use
--config-dir
to specify a directory of configuration files to load. You can then also use--watch-config
to have Vector to pick up changes to files in that directory and reload the configuration.