pvv-nixos-config/misc/metrics-exporters.nix

61 lines
1.3 KiB
Nix
Raw Normal View History

2023-01-17 10:30:20 +01:00
{ config, pkgs, values, ... }:
2022-12-19 22:56:42 +01:00
{
services.prometheus.exporters.node = {
enable = true;
port = 9100;
enabledCollectors = [ "systemd" ];
};
2023-01-17 10:30:20 +01:00
systemd.services.prometheus-node-exporter.serviceConfig = {
IPAddressDeny = "any";
IPAddressAllow = [
"127.0.0.1"
"::1"
values.hosts.ildkule.ipv4
values.hosts.ildkule.ipv6
];
2023-01-17 10:30:20 +01:00
};
networking.firewall.allowedTCPPorts = [ 9100 ];
2022-12-19 22:56:42 +01:00
services.promtail = {
enable = true;
configuration = {
server = {
http_listen_port = 28183;
grpc_listen_port = 0;
};
clients = [
{
url = "http://ildkule.pvv.ntnu.no:3100/loki/api/v1/push";
}
];
scrape_configs = [
{
job_name = "systemd-journal";
journal = {
max_age = "12h";
labels = {
job = "systemd-journal";
host = config.networking.hostName;
};
};
relabel_configs = [
{
source_labels = [ "__journal__systemd_unit" ];
target_label = "unit";
}
{
source_labels = [ "__journal_priority_keyword" ];
target_label = "level";
}
2022-12-19 22:56:42 +01:00
];
}
];
};
};
}