diff options
author | makefu <github@syntax-fehler.de> | 2017-02-05 22:34:16 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2017-02-05 22:34:16 +0100 |
commit | bd90a14732f418f5d77ad2e925fe728940268f3e (patch) | |
tree | d0fe85ec584dd9ee16d8894efadea9a3b375cb7b /makefu/3modules/logging-config.nix | |
parent | d242cd51498258a66ff910d7c80b3a1fa722f554 (diff) |
m central-logging: init
Diffstat (limited to 'makefu/3modules/logging-config.nix')
-rw-r--r-- | makefu/3modules/logging-config.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/makefu/3modules/logging-config.nix b/makefu/3modules/logging-config.nix index cd6924f61..a77e32e48 100644 --- a/makefu/3modules/logging-config.nix +++ b/makefu/3modules/logging-config.nix @@ -4,8 +4,13 @@ with import <stockholm/lib>; { options.makefu.stats-server = lib.mkOption { type = types.str; - default = "omo.retiolum"; + 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)"; + }; } |