1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-06-23 01:41:05 +03:00
nixpkgs/nixos/modules/services/monitoring/scollector.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

132 lines
3 KiB
Nix
Raw Normal View History

2014-11-20 14:38:04 +00:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.scollector;
collectors = pkgs.runCommand "collectors" { preferLocalBuild = true; } ''
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
)}
'';
conf = pkgs.writeText "scollector.toml" ''
Host = "${cfg.bosunHost}"
ColDir = "${collectors}"
${cfg.extraConfig}
'';
2014-11-20 14:38:04 +00:00
in
{
options = {
services.scollector = {
enable = lib.mkOption {
type = lib.types.bool;
2014-11-20 14:38:04 +00:00
default = false;
description = ''
Whether to run scollector.
'';
};
package = lib.mkPackageOption pkgs "scollector" { };
2014-11-20 14:38:04 +00:00
user = lib.mkOption {
type = lib.types.str;
2014-11-20 14:38:04 +00:00
default = "scollector";
description = ''
User account under which scollector runs.
'';
};
group = lib.mkOption {
type = lib.types.str;
2014-11-20 14:38:04 +00:00
default = "scollector";
description = ''
Group account under which scollector runs.
'';
};
bosunHost = lib.mkOption {
type = lib.types.str;
default = "localhost:8070";
2014-11-20 14:38:04 +00:00
description = ''
Host and port of the bosun server that will store the collected
2014-11-20 14:38:04 +00:00
data.
'';
};
collectors = lib.mkOption {
type = with lib.types; attrsOf (listOf path);
default = { };
example = lib.literalExpression ''{ "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.
'';
};
extraOpts = lib.mkOption {
type = with lib.types; listOf str;
default = [ ];
example = [ "-d" ];
description = ''
Extra scollector command line options
'';
};
extraConfig = lib.mkOption {
type = lib.types.lines;
default = "";
description = ''
Extra scollector configuration added to the end of scollector.toml
'';
};
2014-11-20 14:38:04 +00:00
};
};
config = lib.mkIf config.services.scollector.enable {
2014-11-20 14:38:04 +00:00
systemd.services.scollector = {
description = "scollector metrics collector (part of Bosun)";
wantedBy = [ "multi-user.target" ];
2021-03-14 17:05:16 +01:00
path = [
pkgs.coreutils
pkgs.iproute2
];
2014-11-20 14:38:04 +00:00
serviceConfig = {
User = cfg.user;
Group = cfg.group;
ExecStart = "${cfg.package}/bin/scollector -conf=${conf} ${lib.concatStringsSep " " cfg.extraOpts}";
2014-11-20 14:38:04 +00:00
};
};
users.users.scollector = {
2014-11-20 14:38:04 +00:00
description = "scollector user";
group = "scollector";
uid = config.ids.uids.scollector;
};
users.groups.scollector.gid = config.ids.gids.scollector;
2014-11-20 14:38:04 +00:00
};
}