summary refs log tree commit diff
path: root/nixos/modules/services/monitoring/graphite.nix
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-06-07 23:40:58 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-06-07 23:45:17 +0200
commit476a3d818fba2d50c169af5ab4775be2b7e64c3b (patch)
tree01052e652d508604cb6ae4676c7bbf1af01e336c /nixos/modules/services/monitoring/graphite.nix
parent34495b67ce252fd4b6d0a2584cba832242c2c0e9 (diff)
downloadnixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar.gz
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar.bz2
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar.lz
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar.xz
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.tar.zst
nixpkgs-476a3d818fba2d50c169af5ab4775be2b7e64c3b.zip
nixos/graphite-service: fix filename typo
It's "aggregation" with two 'g's.

Fixes this:
carbon-cache[9363]: [console] /nix/store/drxq4jj92sjk3cjik2l4hnsndbray3i4-graphite-config/storage-aggregation.conf not found, ignoring.
Diffstat (limited to 'nixos/modules/services/monitoring/graphite.nix')
-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 d543d15b34e..3a5b13d6d40 100644
--- a/nixos/modules/services/monitoring/graphite.nix
+++ b/nixos/modules/services/monitoring/graphite.nix
@@ -12,7 +12,7 @@ let
     name = "graphite-config";
     paths = lists.filter (el: el != null) [
       (writeTextOrNull "carbon.conf" cfg.carbon.config)
-      (writeTextOrNull "storage-agregation.conf" cfg.carbon.storageAggregation)
+      (writeTextOrNull "storage-aggregation.conf" cfg.carbon.storageAggregation)
       (writeTextOrNull "storage-schemas.conf" cfg.carbon.storageSchemas)
       (writeTextOrNull "blacklist.conf" cfg.carbon.blacklist)
       (writeTextOrNull "whitelist.conf" cfg.carbon.whitelist)