summaryrefslogtreecommitdiff
path: root/modules/services/monitoring
diff options
context:
space:
mode:
authorFinn Behrens <me@kloenk.dev>2022-02-08 17:48:57 +0100
committerFinn Behrens <me@kloenk.dev>2022-02-08 17:48:57 +0100
commitefa1aa6ca5f439d6c96f1992226217ae52a28c2a (patch)
treee84b69920c02fd4594112a32bf8806969a7b0c4e /modules/services/monitoring
parentbcdb6022b3a300abf59cb5d0106c158940f5120e (diff)
telegraf: init module
Diffstat (limited to 'modules/services/monitoring')
-rw-r--r--modules/services/monitoring/telegraf.nix71
1 files changed, 71 insertions, 0 deletions
diff --git a/modules/services/monitoring/telegraf.nix b/modules/services/monitoring/telegraf.nix
new file mode 100644
index 0000000..f40e013
--- /dev/null
+++ b/modules/services/monitoring/telegraf.nix
@@ -0,0 +1,71 @@
+{ config, lib, pkgs, ... }:
+
+let
+ inherit (lib) mkEnableOption mkOption types mkIf;
+
+ cfg = config.services.telegraf;
+
+ settingsFormat = pkgs.formats.toml { };
+ configFile = settingsFormat.generate "config.toml" cfg.extraConfig;
+in {
+ options = {
+ services.telegraf = {
+ enable = mkEnableOption "telegraf agent";
+
+ package = mkOption {
+ default = pkgs.telegraf;
+ defaultText = lib.literalExpression "pkgs.telegraf";
+ description = "Which telegraf derivation to use";
+ type = types.package;
+ };
+
+ environmentFiles = mkOption {
+ type = types.listOf types.path;
+ default = [ ];
+ example = [ "/run/keys/telegraf.env" ];
+ description = ''
+ File to load as environment file.
+ This is useful to avoid putting secrets into the nix store.
+ '';
+ };
+
+ extraConfig = mkOption {
+ default = { };
+ description = "Extra configuration options for telegraf";
+ type = settingsFormat.type;
+ example = {
+ outputs.influxdb = {
+ urls = [ "http://localhost:8086" ];
+ database = "telegraf";
+ };
+ inputs.statsd = {
+ service_address = ":8125";
+ delete_timings = true;
+ };
+ };
+ };
+
+ configUrl = mkOption {
+ default = null;
+ description = "Url to fetch config from";
+ type = types.nullOr types.str;
+ };
+ };
+ };
+
+ config = mkIf cfg.enable {
+ launchd.daemons.telegraf = {
+ script = ''
+ ${lib.concatStringsSep "\n"
+ (map (file: "source ${file}") cfg.environmentFiles)}
+ ${cfg.package}/bin/telegraf --config ${
+ if cfg.configUrl == null then configFile else cfg.configUrl
+ }
+ '';
+ serviceConfig = {
+ KeepAlive = true;
+ RunAtLoad = true;
+ };
+ };
+ };
+}