From fb86e4e6bbebb9456fd61ef6ef684a655abd48cb Mon Sep 17 00:00:00 2001
From: Levente Polyak <anthraxx@archlinux.org>
Date: Sun, 18 Aug 2024 21:12:49 +0200
Subject: [PATCH] tempo: cleanup config template and remove demo values

---
 roles/tempo/templates/config.yml.j2 | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/roles/tempo/templates/config.yml.j2 b/roles/tempo/templates/config.yml.j2
index 0b1b4f9bd..62886d856 100644
--- a/roles/tempo/templates/config.yml.j2
+++ b/roles/tempo/templates/config.yml.j2
@@ -20,9 +20,6 @@ distributor:
         http:
           endpoint: {{ wireguard_address }}:4318
 
-ingester:
-  max_block_duration: 5m               # cut the headblock when this much time passes. this is being set for demo purposes and should probably be left alone normally
-
 compactor:
   compaction:
     block_retention: 1h                # overall Tempo trace retention. set for demo purposes
@@ -41,9 +38,9 @@ metrics_generator:
 
 storage:
   trace:
-    backend: local                     # backend configuration to use
+    backend: local
     wal:
-      path: /var/lib/tempo/wal             # where to store the wal locally
+      path: /var/lib/tempo/wal
     local:
       path: /var/lib/tempo/blocks
 
-- 
GitLab