Compare commits

..

5 Commits

Author SHA1 Message Date
oysteikt 775d4da8b3 ildkule/grafana: add dashboard for php-fpm
Eval nix flake / evals (push) Successful in 6m56s
2026-07-25 22:25:05 +09:00
oysteikt 7c8d5bae3a ildkule/prometheus/phpfpm: scrape from bekkalokk
Eval nix flake / evals (push) Successful in 6m55s
2026-07-25 22:19:38 +09:00
oysteikt aef9ee0289 bekkalokk/prometheus-phpfpm-exporter: init 2026-07-25 22:19:38 +09:00
oysteikt 4f6c731d25 flake.lock: bump pvv-nettsiden
Build topology graph / evals (push) Successful in 2m14s
Eval nix flake / evals (push) Successful in 7m7s
2026-07-25 20:51:24 +09:00
oysteikt ee718563c8 bicep/postgresql: don't open udp 5432 in firewall
Build topology graph / evals (push) Successful in 2m12s
Eval nix flake / evals (push) Successful in 6m43s
2026-07-25 07:35:42 +09:00
10 changed files with 1769 additions and 62 deletions
-1
View File
@@ -22,7 +22,6 @@
./vm.nix
./services/acme.nix
./services/auditd.nix
./services/auto-upgrade.nix
./services/dbus.nix
./services/fluentbit.nix
-56
View File
@@ -1,56 +0,0 @@
{ config, lib, pkgs, ... }:
{
security.audit = {
enable = lib.mkDefault true;
# NOTE: see auditctl(8) for the meaning of the different rule flags.
rules = [
# Kernel module loading/unloading
"-a always,exit -F arch=b64 -S init_module,finit_module,delete_module -k kernel-modules"
# Mount/unmount by real (non-service) users
"-a always,exit -F arch=b64 -S mount,umount2 -F auid>=1000 -F auid!=-1 -k mounts"
# DAC permission/ownership changes by real users
"-a always,exit -F arch=b64 -S chmod,fchmod,fchmodat -F auid>=1000 -F auid!=-1 -k perm-mod"
"-a always,exit -F arch=b64 -S chown,fchown,fchownat,lchown -F auid>=1000 -F auid!=-1 -k perm-mod"
"-a always,exit -F arch=b64 -S setxattr,lsetxattr,fsetxattr,removexattr,lremovexattr,fremovexattr -F auid>=1000 -F auid!=-1 -k perm-mod"
# Failed access attempts (permission denied) by real users
"-a always,exit -F arch=b64 -S open,openat,creat,truncate,ftruncate -F exit=-EACCES -F auid>=1000 -F auid!=-1 -k access"
"-a always,exit -F arch=b64 -S open,openat,creat,truncate,ftruncate -F exit=-EPERM -F auid>=1000 -F auid!=-1 -k access"
# File deletion/rename by real users
"-a always,exit -F arch=b64 -S unlink,unlinkat,rename,renameat -F auid>=1000 -F auid!=-1 -k delete"
# Execution of privileged commands
"-w ${config.security.wrapperDir}/sudo -p x -k privileged-sudo"
"-w ${config.security.wrapperDir}/su -p x -k privileged-su"
# Read of files containing secrets.
"-w /var/lib/sops-nix/key.txt -p r -k secrets"
"-w /run/secrets -p r -k secrets"
"-w /etc/ssh/ssh_host_ed25519_key -p r -k secrets"
"-w /etc/ssh/ssh_host_rsa_key -p r -k secrets"
# NixOS generation switching
"-w /nix/var/nix/profiles -p wa -k nixos-generation-switch"
# Switching bootloader content
"-w /boot -p wa -k boot-tampering"
# Login records
"-w /var/lib/lastlog2 -p wa -k logins"
# Write or append to the audit trail
"-w /var/log/audit -p wa -k audit-log-tampering"
"-w ${lib.getExe' pkgs.audit "auditctl"} -p x -k audit-tools"
];
};
security.auditd = {
enable = lib.mkDefault true;
plugins.syslog.active = true;
plugins.af_unix.active = true;
};
}
Generated
+4 -4
View File
@@ -379,11 +379,11 @@
]
},
"locked": {
"lastModified": 1782759909,
"narHash": "sha256-gktjBeZyoRvVBkm2cO1tD99fdQ34iUDyB6iecRdorm4=",
"lastModified": 1784979981,
"narHash": "sha256-OnvjEXYU/InjJYH2+iIrvHWIjHnc5J9f84qWhrgAWlY=",
"ref": "main",
"rev": "ad6c79fb713884a4a2df8aab30914cd0c1c2e6cb",
"revCount": 587,
"rev": "ffb8ed0c9df2444727e49f16f7e43ea70184dc4b",
"revCount": 590,
"type": "git",
"url": "https://git.pvv.ntnu.no/Projects/nettsiden.git"
},
+1
View File
@@ -13,6 +13,7 @@
./services/mediawiki
./services/nginx.nix
./services/phpfpm.nix
./services/prometheus-phpfpm-exporter.nix
./services/vaultwarden.nix
./services/webmail
./services/website
@@ -0,0 +1,49 @@
{ config, lib, values, ... }:
let
cfg = config.services.prometheus.exporters.php-fpm;
pools = [
"idp"
"mediawiki"
"pvv-nettsiden"
"roundcube"
"snappymail"
];
in
{
services.phpfpm.pools = lib.genAttrs pools (_: {
settings."pm.status_path" = "/status";
});
services.prometheus.exporters.php-fpm = {
enable = true;
listenAddress = "127.0.0.1";
extraFlags = map
(name: "--phpfpm.scrape-uri=unix://${config.services.phpfpm.pools.${name}.socket};/status")
pools;
};
systemd.services.prometheus-php-fpm-exporter.serviceConfig = {
Slice = "system-monitoring.slice";
SupplementaryGroups = [ config.services.nginx.group ];
};
services.nginx = lib.mkIf cfg.enable {
virtualHosts."www.pvv.ntnu.no" = lib.mkIf config.services.nginx.enable {
forceSSL = true;
enableACME = true;
kTLS = true;
locations."/prometheus-php-fpm-exporter/metrics" = {
proxyPass = "http://localhost:${toString cfg.port}/metrics";
extraConfig = ''
allow 127.0.0.1;
allow ::1;
allow ${values.hosts.ildkule.ipv4};
allow ${values.hosts.ildkule.ipv6};
deny all;
'';
};
};
};
}
@@ -150,7 +150,6 @@ in
};
networking.firewall.allowedTCPPorts = lib.mkIf cfg.enable [ 5432 ];
networking.firewall.allowedUDPPorts = lib.mkIf cfg.enable [ 5432 ];
environment.systemPackages = [
(pkgs.writeShellApplication {
File diff suppressed because it is too large Load Diff
@@ -68,6 +68,12 @@ in {
url = "https://grafana.com/api/dashboards/9628/revisions/8/download";
options.path = dashboards/postgres.json;
}
{
name = "PHP-FPM";
type = "file";
url = "https://grafana.com/api/dashboards/25149/revisions/1/download";
options.path = dashboards/php-fpm.json;
}
{
name = "Gitea Dashboard";
type = "file";
@@ -7,6 +7,7 @@ in {
./machines.nix
./matrix-synapse.nix
./mysqld.nix
./phpfpm.nix
./postgres.nix
];
@@ -0,0 +1,15 @@
{ ... }:
{
services.prometheus.scrapeConfigs = [{
job_name = "phpfpm";
scheme = "https";
metrics_path = "/prometheus-php-fpm-exporter/metrics";
static_configs = [
{
labels.hostname = "bekkalokk";
targets = [ "www.pvv.ntnu.no:443" ];
}
];
}];
}