nixpkgs/nixos/tests/telegraf.nix

34 lines
851 B
Nix
Raw Normal View History

2019-11-06 11:40:43 +00:00
import ./make-test-python.nix ({ pkgs, ...} : {
2019-01-21 11:30:11 +00:00
name = "telegraf";
meta = with pkgs.lib.maintainers; {
2019-01-21 11:30:11 +00:00
maintainers = [ mic92 ];
};
machine = { ... }: {
services.telegraf.enable = true;
2020-11-18 20:30:29 +00:00
services.telegraf.environmentFiles = [(pkgs.writeText "secrets" ''
SECRET=example
2020-11-18 20:30:29 +00:00
'')];
2019-01-21 11:30:11 +00:00
services.telegraf.extraConfig = {
agent.interval = "1s";
agent.flush_interval = "1s";
inputs.exec = {
commands = [
"${pkgs.runtimeShell} -c 'echo $SECRET,tag=a i=42i'"
2019-01-21 11:30:11 +00:00
];
timeout = "5s";
data_format = "influx";
};
outputs.file.files = ["/tmp/metrics.out"];
outputs.file.data_format = "influx";
};
};
testScript = ''
2019-11-06 11:40:43 +00:00
start_all()
2019-01-21 11:30:11 +00:00
2019-11-06 11:40:43 +00:00
machine.wait_for_unit("telegraf.service")
machine.wait_until_succeeds("grep -q example /tmp/metrics.out")
2019-01-21 11:30:11 +00:00
'';
})