summaryrefslogtreecommitdiffstats
path: root/makefu/2configs
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2015-08-05 14:56:38 +0200
committermakefu <github@syntax-fehler.de>2015-08-05 15:01:05 +0200
commitb3c25831d1ac80578222cc7d0e8f3559f92f34c1 (patch)
tree93d50afbaaf74ae07ffe252fc93c088ef0dfcd75 /makefu/2configs
parenta385b9a4ec7751276c81e09b51427b22a344c9a3 (diff)
add graphite to pnp
Diffstat (limited to 'makefu/2configs')
-rw-r--r--makefu/2configs/graphite-web.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/makefu/2configs/graphite-web.nix b/makefu/2configs/graphite-web.nix
new file mode 100644
index 00000000..daa1d49a
--- /dev/null
+++ b/makefu/2configs/graphite-web.nix
@@ -0,0 +1,24 @@
+{ config, lib, pkgs, ... }:
+
+with lib;
+{
+ imports = [ ];
+ services.graphite = {
+ web = {
+ enable = true;
+ host = "0.0.0.0";
+ };
+ carbon = {
+ enableCache = true;
+ storageSchemas = ''
+ [carbon]
+ pattern = ^carbon\.
+ retentions = 60:90d
+
+ [default]
+ pattern = .*
+ retentions = 60s:30d,300s:1y
+ '';
+ };
+ };
+}