Monitor nginx via Prometheus
This commit is contained in:
parent
841ee6758d
commit
80259e6afd
|
@ -56,8 +56,11 @@ with pkgs;
|
|||
wireguard.enable = true;
|
||||
postgres.enable = true;
|
||||
smartctl.enable = true;
|
||||
#nginx.enable = true;
|
||||
dnsmasq.enable = true;
|
||||
nginx = {
|
||||
enable = true;
|
||||
scrapeUri = "http://localhost:8282/nginx_status";
|
||||
};
|
||||
};
|
||||
scrapeConfigs = [{
|
||||
job_name = "zion";
|
||||
|
@ -77,6 +80,9 @@ with pkgs;
|
|||
"localhost:${
|
||||
toString config.services.prometheus.exporters.dnsmasq.port
|
||||
}"
|
||||
"localhost:${
|
||||
toString config.services.prometheus.exporters.nginx.port
|
||||
}"
|
||||
"localhost:9641"
|
||||
];
|
||||
}];
|
||||
|
|
|
@ -49,12 +49,6 @@
|
|||
add_header Access-Control-Allow-Origin * always;
|
||||
'';
|
||||
};
|
||||
"/nginx_status/".extraConfig = ''
|
||||
stub_status on;
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
deny all;
|
||||
'';
|
||||
};
|
||||
};
|
||||
"radicale.coolneng.duckdns.org" = {
|
||||
|
@ -164,6 +158,18 @@
|
|||
proxyWebsockets = true;
|
||||
};
|
||||
};
|
||||
"/nginx_status/" = {
|
||||
listen = [{
|
||||
addr = "127.0.0.1";
|
||||
port = 8282;
|
||||
}];
|
||||
extraConfig = ''
|
||||
stub_status on;
|
||||
access_log off;
|
||||
allow 127.0.0.1;
|
||||
deny all;
|
||||
'';
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue