Enable prometheus node exporter by default #19

Merged
nerf merged 5 commits from Gonne/nixConfig:prometheusNodeExporter into main 2023-11-06 14:30:33 +00:00
Showing only changes of commit 559c5a47ad - Show all commits

View file

@ -55,5 +55,12 @@ services = {
PasswordAuthentication = false; PasswordAuthentication = false;
}; };
}; };
prometheus.exporters.node = {
Gonne marked this conversation as resolved Outdated
Outdated
Review

This is the closing bracket of the services record, there should be less white space, right?

This is the closing bracket of the services record, there should be less white space, right?
enable = true;
port = 9100;
};
}; };
# Prometheus Monitoring
networking.firewall.allowedTCPPorts = [ 9100 ];
} }