2020-11-30 07:22:08 +00:00
|
|
|
{ system ? builtins.currentSystem, config ? { }
|
|
|
|
, pkgs ? import ../.. { inherit system config; } }:
|
|
|
|
|
|
|
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
|
|
|
with pkgs.lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
test1 = makeTest {
|
|
|
|
name = "vector-test1";
|
2021-01-10 19:08:30 +00:00
|
|
|
meta.maintainers = [ pkgs.lib.maintainers.happysalada ];
|
2020-11-30 07:22:08 +00:00
|
|
|
|
2022-03-20 23:15:30 +00:00
|
|
|
nodes.machine = { config, pkgs, ... }: {
|
2020-11-30 07:22:08 +00:00
|
|
|
services.vector = {
|
|
|
|
enable = true;
|
|
|
|
journaldAccess = true;
|
|
|
|
settings = {
|
|
|
|
sources.journald.type = "journald";
|
|
|
|
|
|
|
|
sinks = {
|
|
|
|
file = {
|
|
|
|
type = "file";
|
|
|
|
inputs = [ "journald" ];
|
|
|
|
path = "/var/lib/vector/logs.log";
|
2022-11-27 16:57:24 +00:00
|
|
|
encoding = { codec = "json"; };
|
2020-11-30 07:22:08 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# ensure vector is forwarding the messages appropriately
|
|
|
|
testScript = ''
|
|
|
|
machine.wait_for_unit("vector.service")
|
2023-05-11 15:50:25 +01:00
|
|
|
machine.wait_for_file("/var/lib/vector/logs.log")
|
2020-11-30 07:22:08 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|