mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 22:12:56 +00:00
enable caddy prometheus metrics
This commit is contained in:
parent
60e779085e
commit
6ea99eca5d
@ -30,6 +30,7 @@
|
|||||||
errors.routes = config.caddy.blocks;
|
errors.routes = config.caddy.blocks;
|
||||||
# logs = { }; # Uncomment to collect access logs
|
# logs = { }; # Uncomment to collect access logs
|
||||||
};
|
};
|
||||||
|
apps.http.servers.metrics = { }; # Enables Prometheus metrics
|
||||||
apps.tls.automation.policies = config.caddy.tlsPolicies;
|
apps.tls.automation.policies = config.caddy.tlsPolicies;
|
||||||
logging.logs.main = {
|
logging.logs.main = {
|
||||||
encoder = { format = "console"; };
|
encoder = { format = "console"; };
|
||||||
@ -47,6 +48,8 @@
|
|||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
||||||
networking.firewall.allowedUDPPorts = [ 443 ];
|
networking.firewall.allowedUDPPorts = [ 443 ];
|
||||||
|
|
||||||
|
prometheus.scrapeTargets = [ "127.0.0.1:2019" ];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -38,6 +38,8 @@
|
|||||||
|
|
||||||
services.prometheus = {
|
services.prometheus = {
|
||||||
exporters.node.enable = config.prometheus.exporters.enable;
|
exporters.node.enable = config.prometheus.exporters.enable;
|
||||||
|
exporters.node.enabledCollectors = [ ];
|
||||||
|
exporters.node.disabledCollectors = [ "cpufreq" ];
|
||||||
exporters.systemd.enable = config.prometheus.exporters.enable;
|
exporters.systemd.enable = config.prometheus.exporters.enable;
|
||||||
exporters.process.enable = config.prometheus.exporters.enable;
|
exporters.process.enable = config.prometheus.exporters.enable;
|
||||||
exporters.process.settings.process_names = [
|
exporters.process.settings.process_names = [
|
||||||
|
Loading…
Reference in New Issue
Block a user