From 285f447c498fe0720862382fec8c78ccd6030256 Mon Sep 17 00:00:00 2001 From: Jaka Hudoklin Date: Sat, 12 Oct 2013 12:37:52 +0200 Subject: [PATCH] nixos/statsd: Add support to specify managment ip/port --- nixos/modules/services/monitoring/statsd.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/modules/services/monitoring/statsd.nix b/nixos/modules/services/monitoring/statsd.nix index a32666056714..120c8860d571 100644 --- a/nixos/modules/services/monitoring/statsd.nix +++ b/nixos/modules/services/monitoring/statsd.nix @@ -10,6 +10,8 @@ let { host: "${cfg.host}", port: "${toString cfg.port}", + mgmt_address: "${cfg.mgmt_address}", + mgmt_port: "${toString cfg.mgmt_port}", backends: [${concatMapStrings (el: ''"./backends/${el}",'') cfg.backends}], graphiteHost: "${cfg.graphiteHost}", graphitePort: "${toString cfg.graphitePort}", @@ -43,6 +45,18 @@ in type = types.uniq types.int; }; + mgmt_address = mkOption { + description = "Address to run managment TCP interface on"; + default = "127.0.0.1"; + type = types.uniq types.string; + }; + + mgmt_port = mkOption { + description = "Port to run the management TCP interface on"; + default = 8126; + type = types.uniq types.int; + }; + backends = mkOption { description = "List of backends statsd will use for data persistance"; default = ["graphite"];