about summary refs log tree commit diff
path: root/nixpkgs/nixos/modules/services/web-servers/lighttpd/collectd.nix
blob: 5e5c0adda1c262118c64151628e5319af7ced2af (plain) (blame)
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
{ config, lib, options, pkgs, ... }:

with lib;

let
  cfg = config.services.lighttpd.collectd;
  opt = options.services.lighttpd.collectd;

  collectionConf = pkgs.writeText "collection.conf" ''
    datadir: "${config.services.collectd.dataDir}"
    libdir: "${config.services.collectd.package}/lib/collectd"
  '';

  defaultCollectionCgi = config.services.collectd.package.overrideDerivation(old: {
    name = "collection.cgi";
    dontConfigure = true;
    buildPhase = "true";
    installPhase = ''
      substituteInPlace contrib/collection.cgi --replace '"/etc/collection.conf"' '$ENV{COLLECTION_CONF}'
      cp contrib/collection.cgi $out
    '';
  });
in
{

  options.services.lighttpd.collectd = {

    enable = mkEnableOption "collectd subservice accessible at http://yourserver/collectd";

    collectionCgi = mkOption {
      type = types.path;
      default = defaultCollectionCgi;
      defaultText = literalMD ''
        `config.${options.services.collectd.package}` configured for lighttpd
      '';
      description = ''
        Path to collection.cgi script from (collectd sources)/contrib/collection.cgi
        This option allows to use a customized version
      '';
    };
  };

  config = mkIf cfg.enable {
    services.lighttpd.enableModules = [ "mod_cgi" "mod_alias" "mod_setenv" ];

    services.lighttpd.extraConfig = ''
      $HTTP["url"] =~ "^/collectd" {
        cgi.assign = (
          ".cgi" => "${pkgs.perl}/bin/perl"
        )
        alias.url = (
          "/collectd" => "${cfg.collectionCgi}"
        )
        setenv.add-environment = (
          "PERL5LIB" => "${with pkgs.perlPackages; makePerlPath [ CGI HTMLParser URI pkgs.rrdtool ]}",
          "COLLECTION_CONF" => "${collectionConf}"
        )
      }
    '';
  };

}