summaryrefslogtreecommitdiffstats
path: root/makefu/3modules
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/3modules')
-rw-r--r--makefu/3modules/logging-config.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/makefu/3modules/logging-config.nix b/makefu/3modules/logging-config.nix
index cd6924f6..a77e32e4 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)";
+ };
}