Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions nixos/modules/services/logging/vector.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
}:
let
cfg = config.services.vector;

in
{
options.services.vector = {
Expand All @@ -22,6 +21,23 @@ in
'';
};

gracefulShutdownLimitSecs = lib.mkOption {
type = lib.types.ints.positive;
default = 60;
description = ''
Set the duration in seconds to wait for graceful shutdown after SIGINT or SIGTERM are received.
After the duration has passed, Vector will force shutdown.
'';
};

validateConfig = lib.mkOption {
type = lib.types.bool;
default = true;
description = ''
Enable the checking of the vector config during build time. This should be disabled when interpolating environment variables.
'';
};

settings = lib.mkOption {
type = (pkgs.formats.json { }).type;
default = { };
Expand All @@ -44,7 +60,7 @@ in
let
format = pkgs.formats.toml { };
conf = format.generate "vector.toml" cfg.settings;
validateConfig =
validatedConfig =
file:
pkgs.runCommand "validate-vector-conf"
{
Expand All @@ -56,7 +72,9 @@ in
'';
in
{
ExecStart = "${lib.getExe cfg.package} --config ${validateConfig conf}";
ExecStart = "${lib.getExe cfg.package} --config ${
if cfg.validateConfig then (validatedConfig conf) else conf
} --graceful-shutdown-limit-secs ${builtins.toString cfg.gracefulShutdownLimitSecs}";
DynamicUser = true;
Restart = "always";
StateDirectory = "vector";
Expand Down
Loading