From 7dfe147c4d5961cc647a2dc80914758fe1571851 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Fri, 27 Dec 2024 16:24:40 +0100 Subject: [PATCH] fix(users/flokli/nixos-tvix-cache): bump trace size limit We produce traces bigger than what tempo accepts by default, causing traces to be rejected with TRACE_TOO_LARGE and to then be incomplete. Bump the max size. Change-Id: I8caa245d14db683853485ee5625c9662ea51ce29 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12926 Autosubmit: flokli Reviewed-by: raitobezarius Tested-by: BuildkiteCI --- users/flokli/nixos/nixos-tvix-cache/monitoring.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/users/flokli/nixos/nixos-tvix-cache/monitoring.nix b/users/flokli/nixos/nixos-tvix-cache/monitoring.nix index cca6cb4bf..210e2fcef 100644 --- a/users/flokli/nixos/nixos-tvix-cache/monitoring.nix +++ b/users/flokli/nixos/nixos-tvix-cache/monitoring.nix @@ -31,8 +31,9 @@ in local.path = "/var/lib/tempo/blocks"; }; usage_report.reporting_enabled = false; - # 10x the default + # bump defaults overrides.defaults.ingestion.max_traces_per_user = 10000 * 10; + overrides.defaults.global.max_bytes_per_trace = 500 * 1000 * 1000; }; };