fix mimir

This commit is contained in:
chris 2025-03-19 21:38:45 +01:00
parent 32ea826a58
commit 5d7d2c7e94
Signed by: c6ristian
SSH key fingerprint: SHA256:B3m+yzpaxGXSEcDBpPHfvza/DNC0wuX+CKMeGq8wgak
2 changed files with 31 additions and 13 deletions
systems/monitoring.noc.eh22.intern

View file

@ -24,18 +24,7 @@ in
configuration = {
multitenancy_enabled = false;
target = "all,alertmanager";
blocks_storage = {
backend = "filesystem";
};
server = {
http_listen_port = 9009;
log_level = "warn";
grpc_listen_port = 9096;
};
ingester.ring.replication_factor = 1;
usage_stats.enabled = false;
limits = {
ingestion_rate = 1000000; # can't set to unlimited :(
@ -44,15 +33,43 @@ in
max_label_value_length = 10000; # we have pgscv queries that are LONG
};
server = {
http_listen_port = 9009;
http_listen_address = "127.0.0.1";
log_level = "warn";
grpc_listen_port = 9096;
grpc_listen_address = "127.0.0.1";
};
blocks_storage = {
backend = "filesystem";
};
ingester = {
ring = {
instance_addr = "127.0.0.1";
kvstore = {
store = "memberlist";
};
replication_factor = 1;
};
};
alertmanager_storage.backend = "filesystem";
alertmanager = {
sharding_ring.replication_factor = 1;
sharding_ring = {
replication_factor = 1;
instance_addr = "127.0.0.1";
};
};
ruler_storage = {
backend = "local";
local.directory = alerts;
};
memberlist = {
bind_addr = ["127.0.0.1"];
};
};
};

View file

@ -34,6 +34,7 @@
};
networking.firewall.allowedTCPPorts = [ 80 ];
networking.usePredictableInterfaceNames = false;
services.nginx = {
enable = true;