Skip to content
This repository has been archived by the owner on Oct 8, 2024. It is now read-only.

Commit

Permalink
Set total block retention to 30 days (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmkay authored May 8, 2024
1 parent 6b7d8b7 commit 2390a6b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/tempo.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,9 @@ def generate_config(self, receivers: Sequence[ReceiverProtocol]) -> dict:
"compaction_window": "1h",
# maximum size of compacted blocks
"max_compaction_objects": 1000000,
"block_retention": "1h",
"compacted_block_retention": "10m",
# total trace retention
"block_retention": "720h",
"compacted_block_retention": "1h",
"v2_out_buffer_bytes": 5242880,
}
},
Expand Down

0 comments on commit 2390a6b

Please sign in to comment.