disable promtail

This commit is contained in:
zackartz 2024-05-24 11:56:23 -04:00
parent c56faf5ffc
commit f16e0f463b
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA

View file

@ -136,42 +136,42 @@ in {
# }; # };
# }; # };
services.promtail = { # services.promtail = {
enable = true; # enable = true;
configuration = { # configuration = {
server = { # server = {
http_listen_port = 3031; # http_listen_port = 3031;
grpc_listen_port = 0; # grpc_listen_port = 0;
}; # };
positions = { # positions = {
filename = "/tmp/positions.yaml"; # filename = "/tmp/positions.yaml";
}; # };
clients = [ # clients = [
{ # {
url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push"; # url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push";
} # }
]; # ];
scrape_configs = [ # scrape_configs = [
{ # {
job_name = "journal"; # job_name = "journal";
journal = { # journal = {
max_age = "12h"; # max_age = "12h";
labels = { # labels = {
job = "systemd-journal"; # job = "systemd-journal";
host = "pluto"; # host = "pluto";
}; # };
}; # };
relabel_configs = [ # relabel_configs = [
{ # {
source_labels = ["__journal__systemd_unit"]; # source_labels = ["__journal__systemd_unit"];
target_label = "unit"; # target_label = "unit";
} # }
]; # ];
} # }
]; # ];
}; # };
# extraFlags # # extraFlags
}; # };
services.nginx.virtualHosts.${config.services.grafana.domain} = { services.nginx.virtualHosts.${config.services.grafana.domain} = {
forceSSL = true; forceSSL = true;