-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: jaeger traces not persisted across container restarts (#82)
Closes: WORLD-1208 ## Overview Previously the Jaeger container only stores the spans in memory, which is lost when the container is restarted. This PR fixes this by [configuring Jaeger to use Badger](https://www.jaegertracing.io/docs/1.62/deployment/#span-storage-backends) as the span storage engine with a Docker volume. ## Brief Changelog - Updated the Jaeger container config to use badger ## Testing and Verifying Manually tested and verified. --------- Co-authored-by: Ryan Martin <[email protected]>
- Loading branch information
Showing
4 changed files
with
25 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,4 @@ dist/ | |
/starter-game | ||
|
||
# Built binary | ||
world | ||
./world |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters