diff options
author | lassulus <lass@aidsballs.de> | 2015-10-31 00:14:35 +0100 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2015-10-31 00:14:35 +0100 |
commit | 10779f3cb9b7e00aac50faa98adbd2ebd9a675a0 (patch) | |
tree | 7aef8997e959c346cb9ae61f7bc1626a8c5bb473 /shared/2configs/collectd-base.nix | |
parent | 5b4a34062462311973bb1798fe3e4538e6eb5706 (diff) | |
parent | 546469e18d24252360279ea276eb9a502670c712 (diff) |
Merge remote-tracking branch 'pnp/master'
Diffstat (limited to 'shared/2configs/collectd-base.nix')
-rw-r--r-- | shared/2configs/collectd-base.nix | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/shared/2configs/collectd-base.nix b/shared/2configs/collectd-base.nix new file mode 100644 index 000000000..b2ec40b28 --- /dev/null +++ b/shared/2configs/collectd-base.nix @@ -0,0 +1,41 @@ +{ config, lib, pkgs, ... }: + +# TODO: krebs.collectd.plugins +with lib; +let + connect-time-cfg = with pkgs; writeText "collectd-connect-time.conf" '' + LoadPlugin python + <Plugin python> + ModulePath "${collectd-connect-time}/lib/${python.libPrefix}/site-packages/" + Import "collectd_connect_time" + <Module collectd_connect_time> + target "heidi.retiolum:8080" "localhost" "google.com" "google.de" "omo.retiolum" "gum.retiolum" "gum.krebsco.de" + interval 10 + </Module> + </Plugin> + ''; + graphite-cfg = pkgs.writeText "collectd-graphite.conf" '' + LoadPlugin write_graphite + <Plugin "write_graphite"> + <Carbon> + Host "heidi.retiolum" + Port "2003" + Prefix "retiolum." + EscapeCharacter "_" + StoreRates false + AlwaysAppendDS false + </Carbon> + </Plugin> + ''; +in { + imports = [ ]; + + nixpkgs.config.packageOverrides = pkgs: with pkgs; { + collectd = pkgs.collectd.override { python= pkgs.python; }; + }; + services.collectd = { + enable = true; + include = [ (toString connect-time-cfg) (toString graphite-cfg) ]; + }; + +} |