aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvolth <volth@volth.com>2019-09-17 00:19:28 +0000
committerGitHub <noreply@github.com>2019-09-17 00:19:28 +0000
commitfbd2b55715f10a5b8b2e15992dbb1ddebc9e7e29 (patch)
tree533a308e5a634f91a536bea0e0188b3b8b41aec8
parent1aadcee68a3857459499208c376ef687584f72b9 (diff)
nixos/graphite: fix escape
-rw-r--r--nixos/modules/services/monitoring/graphite.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/monitoring/graphite.nix b/nixos/modules/services/monitoring/graphite.nix
index 64cb6c3da1e..f7874af3df2 100644
--- a/nixos/modules/services/monitoring/graphite.nix
+++ b/nixos/modules/services/monitoring/graphite.nix
@@ -239,7 +239,7 @@ in {
description = "Any metrics received which match one of the experssions will be dropped.";
default = null;
type = types.nullOr types.str;
- example = "^some\.noisy\.metric\.prefix\..*";
+ example = "^some\\.noisy\\.metric\\.prefix\\..*";
};
whitelist = mkOption {