about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring
diff options
context:
space:
mode:
authorFranz Pletz <fpletz@fnordicwalking.de>2022-11-11 01:22:33 +0100
committerFranz Pletz <fpletz@fnordicwalking.de>2022-11-11 01:29:10 +0100
commit8e9f00682d1eccffe3e51e18c78af0b56309013e (patch)
treef76ca22cd9e90fc09be68df1e5c6f15dca8e005d /nixos/modules/services/monitoring
parent50f308b059844d94b1fb28bdef99653b2178945f (diff)
nixos/prometheus-zfs-exporter: mdDoc descriptions
Diffstat (limited to 'nixos/modules/services/monitoring')
-rw-r--r--nixos/modules/services/monitoring/prometheus/exporters/zfs.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/exporters/zfs.nix b/nixos/modules/services/monitoring/prometheus/exporters/zfs.nix
index 581eb07788887..ff12a52d49a92 100644
--- a/nixos/modules/services/monitoring/prometheus/exporters/zfs.nix
+++ b/nixos/modules/services/monitoring/prometheus/exporters/zfs.nix
@@ -12,7 +12,7 @@ in
     telemetryPath = mkOption {
       type = types.str;
       default = "/metrics";
-      description = ''
+      description = lib.mdDoc ''
         Path under which to expose metrics.
       '';
     };
@@ -20,7 +20,7 @@ in
     pools = mkOption {
       type = with types; nullOr (listOf str);
       default = [ ];
-      description = ''
+      description = lib.mdDoc ''
         Name of the pool(s) to collect, repeat for multiple pools (default: all pools).
       '';
     };