diff options
author | Florian Klink <flokli@flokli.de> | 2024-12-27T15·24+0100 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-12-27T16·00+0000 |
commit | 7dfe147c4d5961cc647a2dc80914758fe1571851 (patch) | |
tree | a0f1e1a0968b7e435f6766b518eeecec141931d6 | |
parent | 9fdf6b3cd1db0dd40f373c68d200ba258a323859 (diff) |
fix(users/flokli/nixos-tvix-cache): bump trace size limit r/9039
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 <flokli@flokli.de> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
-rw-r--r-- | users/flokli/nixos/nixos-tvix-cache/monitoring.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/users/flokli/nixos/nixos-tvix-cache/monitoring.nix b/users/flokli/nixos/nixos-tvix-cache/monitoring.nix index cca6cb4bf1b8..210e2fcefe6c 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; }; }; |