treefmt / nix fmt (pull_request) Successful in 5s
pytest / pytest (pull_request) Successful in 30s
test ebook search / test-ebook-search (pull_request) Successful in 34s
build_systems / build-brain (pull_request) Successful in 49s
build_systems / build-bob (pull_request) Successful in 50s
build_systems / build-rhapsody-in-green (pull_request) Successful in 1m2s
build_systems / build-jeeves (pull_request) Successful in 2m14s
- scrape Portal-1 node metrics over Tailscale - add a hardened Vultr billing and bandwidth exporter - provision host health and infrastructure cost dashboards
16 lines
291 B
Nix
16 lines
291 B
Nix
{ config, ... }:
|
|
{
|
|
networking.firewall.interfaces.tailscale0.allowedTCPPorts = [
|
|
config.services.prometheus.exporters.node.port
|
|
];
|
|
|
|
services.prometheus.exporters.node = {
|
|
enable = true;
|
|
enabledCollectors = [
|
|
"pressure"
|
|
"processes"
|
|
"systemd"
|
|
];
|
|
};
|
|
}
|