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

with import <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)";
  };
}