summaryrefslogtreecommitdiffstats
path: root/3modules/logging-config.nix
blob: 593b829e03858c681f5e10041f2e1791d697fd8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ config, lib, pkgs, stockholm, ... }:

with stockholm.lib;
{
  options.makefu.stats-server = lib.mkOption {
    type = types.str;
    default = "stats.makefu.r";
    description = "Central stats server (collectd)";
  };
  options.makefu.log-server = lib.mkOption {
    type = types.str;
    default = "logs.makefu.r";
    description = "Central logging server (logstash,elasticsearch)";
  };
}