summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/riemann-tools.nix
diff options
context:
space:
mode:
authorRobert Pitts and Trenton Strong <dev+rbxbx+trentonstrong@projector.com>2015-06-30 17:16:51 -0400
committerRobert Pitts <rbxbxdev@gmail.com>2015-06-30 17:16:51 -0400
commitbbb36ea0398400d34d2d5e24bb7978133efbc180 (patch)
tree87902b1092866b2681c0802ef3bb2502fa82adf2 /nixos/modules/services/monitoring/riemann-tools.nix
parenta612e397d8e85c2eedb131d558464c6782d03b47 (diff)
downloadnixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar.gz
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar.bz2
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar.lz
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar.xz
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.tar.zst
nixpkgs-bbb36ea0398400d34d2d5e24bb7978133efbc180.zip
Add riemann-tools to nixpkgs
Adds package via bundlerEnv and service for Riemann health.
Diffstat (limited to 'nixos/modules/services/monitoring/riemann-tools.nix')
-rw-r--r--nixos/modules/services/monitoring/riemann-tools.nix62
1 files changed, 62 insertions, 0 deletions
diff --git a/nixos/modules/services/monitoring/riemann-tools.nix b/nixos/modules/services/monitoring/riemann-tools.nix
new file mode 100644
index 00000000000..ce277f09464
--- /dev/null
+++ b/nixos/modules/services/monitoring/riemann-tools.nix
@@ -0,0 +1,62 @@
+{ config, pkgs, lib, ... }:
+
+with pkgs;
+with lib;
+
+let
+
+  cfg = config.services.riemann-tools;
+
+  riemannHost = "${cfg.riemannHost}";
+
+  healthLauncher = writeScriptBin "riemann-health" ''
+    #!/bin/sh
+    exec ${pkgs.riemann-tools}/bin/riemann-health --host ${riemannHost}
+  '';
+
+
+in {
+
+  options = {
+
+    services.riemann-tools = {
+      enableHealth = mkOption {
+        type = types.bool;
+        default = false;
+        description = ''
+          Enable the riemann-health daemon.
+        '';
+      };
+      riemannHost = mkOption {
+        type = types.str;
+        default = "127.0.0.1";
+        description = ''
+          Address of the host riemann node. Defaults to localhost.
+        '';
+      };
+    };
+
+  };
+
+  config = mkIf cfg.enableHealth {
+
+    users.extraGroups.riemanntools.gid = config.ids.gids.riemanntools;
+
+    users.extraUsers.riemanntools = {
+      description = "riemann-tools daemon user";
+      uid = config.ids.uids.riemanntools;
+      group = "riemanntools";
+    };
+
+    systemd.services.riemann-health = {
+      wantedBy = [ "multi-user.target" ];
+      serviceConfig = {
+        User = "riemanntools";
+        ExecStart = "${healthLauncher}/bin/riemann-health";
+        PermissionsStartOnly = true;
+      };
+    };
+
+  };
+
+}