blob: 0057f641bf6075ca4a3a32ee2c9bf7898afb403b (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{ lib, pkgs, config, ... }:
let
name = "goaccess";
cfg = config.services.webstats;
in {
options.services.webstats = {
dataDir = lib.mkOption {
type = lib.types.path;
default = "/var/lib/${name}";
description = ''
The directory where Goaccess stores its data.
'';
};
sites = lib.mkOption {
type = lib.types.listOf (lib.types.submodule {
options = {
conf = lib.mkOption {
type = lib.types.nullOr lib.types.path;
default = null;
description = ''
use custom goaccess configuration file instead of the
default one.
'';
};
name = lib.mkOption {
type = lib.types.str;
description = ''
Domain name. Corresponds to the Apache file name and the
folder name in which the state will be saved.
'';
};
};
});
default = [];
description = "Sites to generate stats";
};
};
config = lib.mkIf (builtins.length cfg.sites > 0) {
environment.systemPackages = [
pkgs.goaccess
];
services.cron = {
enable = true;
systemCronJobs = let
stats = domain: conf: let
config = if builtins.isNull conf
then pkgs.runCommand "goaccess.conf" {
dbPath = "${cfg.dataDir}/${domain}";
} "substituteAll ${./goaccess.conf} $out"
else conf;
d = pkgs.writeScriptBin "stats-${domain}" ''
#!${pkgs.stdenv.shell}
set -e
shopt -s nullglob
TMPFILE=$(mktemp)
trap "rm -f $TMPFILE" EXIT
mkdir -p ${cfg.dataDir}/${domain}
for i in /var/log/httpd/access-${domain}*.gz /var/log/httpd/*/access-${domain}*.gz; do
zcat "$i" >> $TMPFILE
done
cat /var/log/httpd/*access-${domain}.log /var/log/httpd/*/access-${domain}.log > $TMPFILE
${pkgs.goaccess}/bin/goaccess $TMPFILE --no-progress -o ${cfg.dataDir}/${domain}/index.html -p ${config}
'';
in "${d}/bin/stats-${domain}";
allStats = sites: pkgs.writeScript "stats" ''
#!${pkgs.stdenv.shell}
mkdir -p ${cfg.dataDir}
${builtins.concatStringsSep "\n" (map (v: stats v.name v.conf) sites)}
'';
in
[
"5 0 * * * root ${allStats cfg.sites}"
];
};
};
}
|