summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/stats/telegraf/default.nix
blob: 049a9c0378a799386917de72672b29b8ede0133a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{...}:
let
  url = "http://localhost:8086";
in {
  services.telegraf = {
    enable = true;
    extraConfig = {
      agent.debug = true;
      outputs = {
        influxdb = [{
          urls = [ url ];
          database = "telegraf";
        }];
      };
    };
  };
}