about summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/prometheus/default.nix
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2023-03-10 11:19:31 +0100
committerGitHub <noreply@github.com>2023-03-10 11:19:31 +0100
commitbca9ab3d26317bf5a057ecf832c298310d271794 (patch)
tree7c308b30643a04beb491c110170b368f63e763ed /nixos/modules/services/monitoring/prometheus/default.nix
parent7c0cab3140977de586021435373f4c2d20347a30 (diff)
parent61840f7181bc17f3c808fcae5acc656a2408ab7b (diff)
downloadnixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar.gz
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar.bz2
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar.lz
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar.xz
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.tar.zst
nixlib-bca9ab3d26317bf5a057ecf832c298310d271794.zip
Merge pull request #205060 from jslight90/patch-8
nixos/prometheus: Add new relabel_configs actions
Diffstat (limited to 'nixos/modules/services/monitoring/prometheus/default.nix')
-rw-r--r--nixos/modules/services/monitoring/prometheus/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/prometheus/default.nix b/nixos/modules/services/monitoring/prometheus/default.nix
index f516b75ab10f..4f197b9b5820 100644
--- a/nixos/modules/services/monitoring/prometheus/default.nix
+++ b/nixos/modules/services/monitoring/prometheus/default.nix
@@ -1408,7 +1408,7 @@ let
       '';
 
       action =
-        mkDefOpt (types.enum [ "replace" "keep" "drop" "hashmod" "labelmap" "labeldrop" "labelkeep" ]) "replace" ''
+        mkDefOpt (types.enum [ "replace" "lowercase" "uppercase" "keep" "drop" "hashmod" "labelmap" "labeldrop" "labelkeep" ]) "replace" ''
           Action to perform based on regex matching.
         '';
     };