nixpkgs/nixos/modules/services/web-servers/lighttpd/collectd.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

81 lines
1.9 KiB
Nix
Raw Normal View History

{
config,
lib,
options,
pkgs,
...
}:
2017-06-29 22:21:16 +00:00
with lib;
let
cfg = config.services.lighttpd.collectd;
opt = options.services.lighttpd.collectd;
2017-06-29 22:21:16 +00:00
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";
2019-06-19 11:36:06 -04:00
dontConfigure = true;
2017-06-29 22:21:16 +00:00
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
'';
2017-06-29 22:21:16 +00:00
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
]
}",
2017-06-29 22:21:16 +00:00
"COLLECTION_CONF" => "${collectionConf}"
)
}
'';
};
}