fix: change default viewer from rerun-web to rerun (dimos-viewer)#1478
Merged
spomichter merged 3 commits intodevfrom Mar 9, 2026
Merged
fix: change default viewer from rerun-web to rerun (dimos-viewer)#1478spomichter merged 3 commits intodevfrom
spomichter merged 3 commits intodevfrom
Conversation
Contributor
Greptile SummaryThis PR changes the default Changes:
Behavioral impact: This is a breaking change for users running Confidence Score: 4/5
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[dimos run] --> B{viewer_backend set?}
B -- No --> C["Default: rerun (native dimos-viewer)"]
B -- Yes: rerun --> D[Open native dimos-viewer window]
B -- Yes: rerun-web --> E[Open browser dashboard at localhost:7779]
B -- Yes: foxglove --> F[Foxglove bridge at ws://localhost:8765]
B -- Yes: rerun-connect --> G[Connect to existing Rerun instance]
B -- Yes: none --> H[Headless / no viewer]
C --> D
Last reviewed commit: f1235eb |
The native Rerun viewer (dimos-viewer) is now the default. The web dashboard remains available via --viewer-backend rerun-web. - GlobalConfig: viewer_backend default 'rerun-web' -> 'rerun' - Updated visualization docs to reflect new default
f1235eb to
0b59ee1
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Changes the default viewer from
rerun-web(browser dashboard) torerun(native dimos-viewer window).The web dashboard is still available via
--viewer rerun-weborVIEWER=rerun-web.2 files changed — GlobalConfig default + docs
Depends on: #1477 (merged ✅)