services.fluent-bit.settings

NixOS option

See configurationFile. configurationFile takes precedence over settings.

type: YAML 1.1 value
Default
{ }
Example
{
  pipeline = {
    inputs = [
      {
        name = "systemd";
        systemd_filter = "_SYSTEMD_UNIT=fluent-bit.service";
      }
    ];
    outputs = [
      {
        file = "fluent-bit.out";
        name = "file";
        path = "/var/log/fluent-bit";
      }
    ];
  };
  service = {
    grace = 30;
  };
}
declared in: nixos/modules/services/monitoring/fluent-bit.nixView source on NixOS/nixpkgs →