diff options
author | lassulus <lass@lassul.us> | 2017-02-05 23:10:23 +0100 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-02-05 23:10:23 +0100 |
commit | 381d24634eddf4cc06d7f4043f4691e49bfd8611 (patch) | |
tree | 25459db6d1b3ffb93024bb87c552afee977e9233 /makefu/3modules/logging-config.nix | |
parent | 7bcbb92979830bf8db28db5babad2527f2353805 (diff) | |
parent | d8ab184c3336ae9874f266bd77cf305f10d4bdd4 (diff) |
Merge remote-tracking branch 'prism/makefu'
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)"; + }; } |