summaryrefslogtreecommitdiff
path: root/modules/services/monitoring/telegraf.nix
diff options
context:
space:
mode:
authorMike Vink <59492084+ivi-vink@users.noreply.github.com>2025-01-16 22:22:34 +0100
committerGitHub <noreply@github.com>2025-01-16 22:22:34 +0100
commit8e7bd91f353caacc0bc4105f573eb3e17f09e03a (patch)
treec5059edcbebd9644290cad7c653c49a36d593021 /modules/services/monitoring/telegraf.nix
parent6bd39d420578aacf7c0bab7de3e7027b952115ae (diff)
parentbd921223ba7cdac346477d7ea5204d6f4736fcc6 (diff)
Merge branch 'LnL7:master' into masterHEADmaster
Diffstat (limited to 'modules/services/monitoring/telegraf.nix')
-rw-r--r--modules/services/monitoring/telegraf.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/services/monitoring/telegraf.nix b/modules/services/monitoring/telegraf.nix
index e3d3250..f40e013 100644
--- a/modules/services/monitoring/telegraf.nix
+++ b/modules/services/monitoring/telegraf.nix
@@ -10,12 +10,12 @@ let
in {
options = {
services.telegraf = {
- enable = mkEnableOption (lib.mdDoc "telegraf agent");
+ enable = mkEnableOption "telegraf agent";
package = mkOption {
default = pkgs.telegraf;
defaultText = lib.literalExpression "pkgs.telegraf";
- description = lib.mdDoc "Which telegraf derivation to use";
+ description = "Which telegraf derivation to use";
type = types.package;
};
@@ -23,7 +23,7 @@ in {
type = types.listOf types.path;
default = [ ];
example = [ "/run/keys/telegraf.env" ];
- description = lib.mdDoc ''
+ description = ''
File to load as environment file.
This is useful to avoid putting secrets into the nix store.
'';
@@ -31,7 +31,7 @@ in {
extraConfig = mkOption {
default = { };
- description = lib.mdDoc "Extra configuration options for telegraf";
+ description = "Extra configuration options for telegraf";
type = settingsFormat.type;
example = {
outputs.influxdb = {
@@ -47,7 +47,7 @@ in {
configUrl = mkOption {
default = null;
- description = lib.mdDoc "Url to fetch config from";
+ description = "Url to fetch config from";
type = types.nullOr types.str;
};
};