nixpkgs/nixos/tests/vector.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

38 lines
944 B
Nix
Raw Normal View History

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";
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";
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 14:50:25 +00:00
machine.wait_for_file("/var/lib/vector/logs.log")
2020-11-30 07:22:08 +00:00
'';
};
}