Setup prometheus with node
This commit is contained in:
parent
1d03ffaef9
commit
6c290fa729
33
nixos/viridian/services/prometheus.nix
Normal file
33
nixos/viridian/services/prometheus.nix
Normal 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}" ];
|
||||
}];
|
||||
}
|
||||
];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in a new issue