mirror of
https://github.com/LnL7/nix-darwin.git
synced 2024-12-14 11:57:34 +00:00
module: add prometheus-node-exporter service
This commit is contained in:
parent
5c0c6aaa79
commit
6c8d45fb20
3 changed files with 120 additions and 0 deletions
|
@ -38,10 +38,12 @@ in
|
||||||
|
|
||||||
ids.uids = {
|
ids.uids = {
|
||||||
nixbld = lib.mkDefault 350;
|
nixbld = lib.mkDefault 350;
|
||||||
|
_prometheus-node-exporter = 534;
|
||||||
};
|
};
|
||||||
|
|
||||||
ids.gids = {
|
ids.gids = {
|
||||||
nixbld = lib.mkDefault (if config.system.stateVersion < 5 then 30000 else 350);
|
nixbld = lib.mkDefault (if config.system.stateVersion < 5 then 30000 else 350);
|
||||||
|
_prometheus-node-exporter = 534;
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
|
@ -74,6 +74,7 @@
|
||||||
./services/mopidy.nix
|
./services/mopidy.nix
|
||||||
./services/monitoring/telegraf.nix
|
./services/monitoring/telegraf.nix
|
||||||
./services/monitoring/netdata.nix
|
./services/monitoring/netdata.nix
|
||||||
|
./services/monitoring/prometheus-node-exporter.nix
|
||||||
./services/netbird.nix
|
./services/netbird.nix
|
||||||
./services/nix-daemon.nix
|
./services/nix-daemon.nix
|
||||||
./services/nix-gc
|
./services/nix-gc
|
||||||
|
|
117
modules/services/monitoring/prometheus-node-exporter.nix
Normal file
117
modules/services/monitoring/prometheus-node-exporter.nix
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
{
|
||||||
|
config,
|
||||||
|
lib,
|
||||||
|
pkgs,
|
||||||
|
...
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
inherit (lib)
|
||||||
|
concatStringsSep
|
||||||
|
escapeShellArgs
|
||||||
|
getExe
|
||||||
|
mkEnableOption
|
||||||
|
mkIf
|
||||||
|
mkOption
|
||||||
|
mkPackageOption
|
||||||
|
mkRemovedOptionModule
|
||||||
|
types
|
||||||
|
;
|
||||||
|
|
||||||
|
cfg = config.services.prometheus.exporters.node;
|
||||||
|
in {
|
||||||
|
imports = [
|
||||||
|
(mkRemovedOptionModule [ "services" "prometheus" "exporters" "node" "openFirewall" ] "No nix-darwin equivalent to this NixOS option.")
|
||||||
|
(mkRemovedOptionModule [ "services" "prometheus" "exporters" "node" "firewallFilter" ] "No nix-darwin equivalent to this NixOS option.")
|
||||||
|
(mkRemovedOptionModule [ "services" "prometheus" "exporters" "node" "firewallRules" ] "No nix-darwin equivalent to this NixOS option.")
|
||||||
|
];
|
||||||
|
|
||||||
|
options = {
|
||||||
|
services.prometheus.exporters.node = {
|
||||||
|
enable = mkEnableOption "Prometheus Node exporter";
|
||||||
|
|
||||||
|
package = mkPackageOption pkgs "prometheus-node-exporter" { };
|
||||||
|
|
||||||
|
listenAddress = mkOption {
|
||||||
|
type = types.str;
|
||||||
|
default = "";
|
||||||
|
example = "0.0.0.0";
|
||||||
|
description = ''
|
||||||
|
Address where Node exporter exposes its HTTP interface. Leave empty to bind to all addresses.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
port = mkOption {
|
||||||
|
type = types.port;
|
||||||
|
default = 9100;
|
||||||
|
description = ''
|
||||||
|
Port where the Node exporter exposes its HTTP interface.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
extraFlags = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
example = [ "--log.level=debug" ];
|
||||||
|
description = ''
|
||||||
|
Extra commandline options to pass to the Node exporter executable.
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
enabledCollectors = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
description = ''
|
||||||
|
Collectors to enable in addition to the ones that are [enabled by default](https://github.com/prometheus/node_exporter#enabled-by-default).
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
|
disabledCollectors = mkOption {
|
||||||
|
type = types.listOf types.str;
|
||||||
|
default = [ ];
|
||||||
|
example = [ "boottime" ];
|
||||||
|
description = ''
|
||||||
|
Collectors to disable from the list of collectors that are [enabled by default](https://github.com/prometheus/node_exporter#enabled-by-default).
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
config = mkIf cfg.enable {
|
||||||
|
users.users._prometheus-node-exporter = {
|
||||||
|
uid = config.ids.uids._prometheus-node-exporter;
|
||||||
|
gid = config.ids.gids._prometheus-node-exporter;
|
||||||
|
home = "/var/empty";
|
||||||
|
shell = "/usr/bin/false";
|
||||||
|
description = "System user for the Prometheus Node exporter";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.groups._prometheus-node-exporter = {
|
||||||
|
gid = config.ids.gids._prometheus-node-exporter;
|
||||||
|
description = "System group for the Prometheus Node exporter";
|
||||||
|
};
|
||||||
|
|
||||||
|
users.knownGroups = [ "_prometheus-node-exporter" ];
|
||||||
|
users.knownUsers = [ "_prometheus-node-exporter" ];
|
||||||
|
|
||||||
|
launchd.daemons.prometheus-node-exporter = {
|
||||||
|
script = concatStringsSep " "
|
||||||
|
([
|
||||||
|
(getExe cfg.package)
|
||||||
|
"--web.listen-address"
|
||||||
|
"${cfg.listenAddress}:${toString cfg.port}"
|
||||||
|
]
|
||||||
|
++ (map (collector: "--collector.${collector}") cfg.enabledCollectors)
|
||||||
|
++ (map (collector: "--no-collector.${collector}") cfg.disabledCollectors)
|
||||||
|
) + escapeShellArgs cfg.extraFlags;
|
||||||
|
serviceConfig = {
|
||||||
|
KeepAlive = true;
|
||||||
|
RunAtLoad = true;
|
||||||
|
StandardErrorPath = "/var/log/prometheus-node-exporter.log";
|
||||||
|
StandardOutPath = "/var/log/prometheus-node-exporter.log";
|
||||||
|
GroupName = "_prometheus-node-exporter";
|
||||||
|
UserName = "_prometheus-node-exporter";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue