test cadvisor

This commit is contained in:
Inex Code 2024-07-27 01:17:57 +03:00
parent af248cd73b
commit a6c77584c2

View file

@ -21,6 +21,11 @@ in {
];
};
};
services.cadvisor = {
enable = true;
port = 9003;
listenAddress = "127.0.0.1";
};
services.prometheus = {
enable = true;
port = 9001;
@ -28,15 +33,10 @@ in {
exporters = {
node = {
enable = true;
enabledCollectors = [ "systemd" "cgroups" ];
enabledCollectors = [ "systemd" ];
port = 9002;
listenAddress = "127.0.0.1";
};
systemd = {
enable = true;
port = 9003;
listenAddress = "127.0.0.1";
};
};
scrapeConfigs = [
{
@ -46,7 +46,7 @@ in {
}];
}
{
job_name = "systemd-exporter";
job_name = "cadvisor";
static_configs = [{
targets = [ "127.0.0.1:9003" ];
}];