Setup prometheus with node

This commit is contained in:
♥ Minnie ♥ 2024-06-06 20:43:43 +08:00
parent 1d03ffaef9
commit 6c290fa729
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -0,0 +1,33 @@
{ config, ... }:
{
services.prometheus = {
enable = true;
port = 9001; # Port to listen on.
# Valid in all configuration contexts, defaults for other configuration sections.
globalConfig = {
scrape_interval = "15s";
};
# Collect specific metrics, format them, and expose them through HTTP endpoints for prometheus to scrape.
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" "processes" ];
port = 9100;
};
};
# Specify a set of targets and parameters describing how to scrape them.
scrapeConfigs = [
{
job_name = "node";
static_configs = [{
targets = [ "127.0.0.1:${toString config.services.prometheus.exporters.node.port}" ];
}];
}
];
};
}