summary refs log tree commit diff
path: root/nixos/tests/vector.nix
blob: 583e60ddc5681b019978f584a101d9e6e63f7194 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{ 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 ];

    machine = { config, pkgs, ... }: {
      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 = "ndjson"; };
            };
          };
        };
      };
    };

    # ensure vector is forwarding the messages appropriately
    testScript = ''
      machine.wait_for_unit("vector.service")
      machine.succeed("test -f /var/lib/vector/logs.log")
    '';
  };
}