diff options
Diffstat (limited to 'makefu/3modules')
-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)"; + }; } |