summaryrefslogtreecommitdiffstats
path: root/shared/2configs/graphite.nix
blob: 689aedd04bb90d75a156ce2e1866629696c2cce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{ config, lib, pkgs, ... }:

# graphite-web on port 8080
# carbon cache on port 2003 (tcp/udp)

# TODO: krebs.graphite.minimal.enable
# TODO: configure firewall
with import <stockholm/lib>;
{
  imports = [ ];

  services.graphite = {
    web = {
      enable = true;
      listenAddress = "0.0.0.0";
    };
    carbon = {
      enableCache = true;
      # save disk usage by restricting to 1 bulk update per second
      config = ''
        [cache]
        MAX_CACHE_SIZE = inf
        MAX_UPDATES_PER_SECOND = 1
        MAX_CREATES_PER_MINUTE = 50
        MAX_UPDATES_PER_SECOND_ONSHUTDOWN = 9001
        '';
      storageSchemas = ''
        [carbon]
        pattern = ^carbon\.
        retentions = 60:90d


        [radiation_sensor]
        pattern = ^sensors\.radiation\.
        retentions = 1m:30d,5m:180d,10m:3y

        [motion_sensors]
        pattern = ^sensors\.motion\.
        retentions = 1s:1h,60s:30d,300s:1y

        [motion_sensors]
        pattern = ^retiolum\.
        retentions = 10s:1h,30s:30d,300s:1y

        [homeassistant]
        pattern = ^homeassistant\.
        retentions = 10s:24h,30s:30d,300s:1y,3600s:5y

        [ara]
        pattern = ^ara\.
        retentions = 60s:30d,300s:1y

        [openweathermap]
        pattern = ^weather\.openweathermap
        retentions = 30m:30d,1h:5y

        [stadtklima]
        pattern = ^weather\.stadtklima-stuttgart
        retentions = 15m:30d,30m:5y

        [sensebox]
        pattern = ^weather\.sensebox
        retentions = 1m:90d,30m:5y

        [elchos]
        pattern = ^elchos\.
        retentions = 10s:14d,1m:90d,10m:5y

        [default]
        pattern = .*
        retentions = 60s:30d,300s:1y
        '';
    };
  };
}