nixos/telegraf: switch to setting types

This allows to split up configuration into multiple modules
This commit is contained in:
Jörg Thalheim
2020-11-14 16:33:46 +01:00
parent 157d7354d6
commit 8edc4619ab
2 changed files with 13 additions and 13 deletions
+4 -1
View File
@@ -6,12 +6,15 @@ import ./make-test-python.nix ({ pkgs, ...} : {
machine = { ... }: {
services.telegraf.enable = true;
services.telegraf.environmentFile = pkgs.writeText "secrets" ''
SECRET=example
'';
services.telegraf.extraConfig = {
agent.interval = "1s";
agent.flush_interval = "1s";
inputs.exec = {
commands = [
"${pkgs.runtimeShell} -c 'echo example,tag=a i=42i'"
"${pkgs.runtimeShell} -c 'echo $SECRET,tag=a i=42i'"
];
timeout = "5s";
data_format = "influx";