vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / modules / services / monitoring / riemann-dash.nix
blob243d0edb3aae9e3dfa708794b581575b747f692e
1 { config, pkgs, lib, ... }:
3 with pkgs;
4 with lib;
6 let
8   cfg = config.services.riemann-dash;
10   conf = writeText "config.rb" ''
11     riemann_base = "${cfg.dataDir}"
12     config.store[:ws_config] = "#{riemann_base}/config/config.json"
13     ${cfg.config}
14   '';
16   launcher = writeScriptBin "riemann-dash" ''
17     #!/bin/sh
18     exec ${pkgs.riemann-dash}/bin/riemann-dash ${conf}
19   '';
21 in {
23   options = {
25     services.riemann-dash = {
26       enable = mkOption {
27         type = types.bool;
28         default = false;
29         description = ''
30           Enable the riemann-dash dashboard daemon.
31         '';
32       };
33       config = mkOption {
34         type = types.lines;
35         description = ''
36           Contents added to the end of the riemann-dash configuration file.
37         '';
38       };
39       dataDir = mkOption {
40         type = types.str;
41         default = "/var/riemann-dash";
42         description = ''
43           Location of the riemann-base dir. The dashboard configuration file is
44           is stored to this directory. The directory is created automatically on
45           service start, and owner is set to the riemanndash user.
46         '';
47       };
48     };
50   };
52   config = mkIf cfg.enable {
54     users.groups.riemanndash.gid = config.ids.gids.riemanndash;
56     users.users.riemanndash = {
57       description = "riemann-dash daemon user";
58       uid = config.ids.uids.riemanndash;
59       group = "riemanndash";
60     };
62     systemd.tmpfiles.settings."10-riemanndash".${cfg.dataDir}.d = {
63       user = "riemanndash";
64       group = "riemanndash";
65     };
67     systemd.services.riemann-dash = {
68       wantedBy = [ "multi-user.target" ];
69       wants = [ "riemann.service" ];
70       after = [ "riemann.service" ];
71       preStart = ''
72         mkdir -p '${cfg.dataDir}/config'
73       '';
74       serviceConfig = {
75         User = "riemanndash";
76         ExecStart = "${launcher}/bin/riemann-dash";
77       };
78     };
80   };