2014-11-20 14:38:04 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
cfg = config.services.scollector;
|
|
|
|
|
2014-11-21 12:12:47 +00:00
|
|
|
collectors = pkgs.runCommand "collectors" {}
|
|
|
|
''
|
|
|
|
mkdir -p $out
|
|
|
|
${lib.concatStringsSep
|
|
|
|
"\n"
|
|
|
|
(lib.mapAttrsToList
|
|
|
|
(frequency: binaries:
|
|
|
|
"mkdir -p $out/${frequency}\n" +
|
|
|
|
(lib.concatStringsSep
|
|
|
|
"\n"
|
|
|
|
(map (path: "ln -s ${path} $out/${frequency}/$(basename ${path})")
|
|
|
|
binaries)))
|
|
|
|
cfg.collectors)}
|
|
|
|
'';
|
|
|
|
|
2015-03-18 20:16:23 +00:00
|
|
|
cmdLineOpts = concatStringsSep " " (
|
|
|
|
[ "-h=${cfg.bosunHost}" "-c=${collectors}" ] ++ cfg.extraOpts
|
|
|
|
);
|
|
|
|
|
2014-11-20 14:38:04 +00:00
|
|
|
in {
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
|
|
|
services.scollector = {
|
|
|
|
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
description = ''
|
|
|
|
Whether to run scollector.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.scollector;
|
|
|
|
example = literalExample "pkgs.scollector";
|
|
|
|
description = ''
|
|
|
|
scollector binary to use.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
user = mkOption {
|
|
|
|
type = types.string;
|
|
|
|
default = "scollector";
|
|
|
|
description = ''
|
|
|
|
User account under which scollector runs.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
group = mkOption {
|
|
|
|
type = types.string;
|
|
|
|
default = "scollector";
|
|
|
|
description = ''
|
|
|
|
Group account under which scollector runs.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-11-20 14:49:56 +00:00
|
|
|
bosunHost = mkOption {
|
2014-11-20 14:38:04 +00:00
|
|
|
type = types.string;
|
2014-11-20 14:49:56 +00:00
|
|
|
default = "localhost:8070";
|
2014-11-20 14:38:04 +00:00
|
|
|
description = ''
|
2014-11-20 14:49:56 +00:00
|
|
|
Host and port of the bosun server that will store the collected
|
2014-11-20 14:38:04 +00:00
|
|
|
data.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-11-21 12:12:47 +00:00
|
|
|
collectors = mkOption {
|
2015-06-11 14:49:43 +00:00
|
|
|
type = with types; attrsOf (listOf path);
|
2014-11-21 12:12:47 +00:00
|
|
|
default = {};
|
|
|
|
example = literalExample "{ 0 = [ \"\${postgresStats}/bin/collect-stats\" ]; }";
|
|
|
|
description = ''
|
|
|
|
An attribute set mapping the frequency of collection to a list of
|
|
|
|
binaries that should be executed at that frequency. You can use "0"
|
|
|
|
to run a binary forever.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2015-03-18 20:16:23 +00:00
|
|
|
extraOpts = mkOption {
|
|
|
|
type = with types; listOf str;
|
|
|
|
default = [];
|
|
|
|
example = [ "-d" ];
|
|
|
|
description = ''
|
|
|
|
Extra scollector command line options
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2014-11-20 14:38:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.services.scollector.enable {
|
|
|
|
|
|
|
|
systemd.services.scollector = {
|
|
|
|
description = "scollector metrics collector (part of Bosun)";
|
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
|
|
|
|
path = [ pkgs.coreutils pkgs.iproute ];
|
|
|
|
|
|
|
|
serviceConfig = {
|
|
|
|
PermissionsStartOnly = true;
|
|
|
|
User = cfg.user;
|
|
|
|
Group = cfg.group;
|
2015-03-18 20:16:23 +00:00
|
|
|
ExecStart = "${cfg.package}/bin/scollector ${cmdLineOpts}";
|
2014-11-20 14:38:04 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
users.extraUsers.scollector = {
|
|
|
|
description = "scollector user";
|
|
|
|
group = "scollector";
|
|
|
|
uid = config.ids.uids.scollector;
|
|
|
|
};
|
|
|
|
|
|
|
|
users.extraGroups.scollector.gid = config.ids.gids.scollector;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|