-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Distributed Operational UI #16097
Merged
Merged
Conversation
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
Adding a new UI and proxy layer to enable cluster management and monitoring. This includes: - New UI frontend setup - Cluster state management - Proxy handlers for inter-node communication - API endpoints for cluster operations
…s page with status indicators, data fetching hook, and improved UI/layout
- Added ReadinessIndicator component to display node readiness status - Updated Member type to include readiness information - Refactored node list and details components to use new readiness indicator - Improved multi-select and copy button components - Updated node filtering to support multi-select - Cleaned up and simplified various UI components
💻 Deploy preview deleted. |
slim-bean
approved these changes
Feb 12, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
owen-d
added a commit
to owen-d/loki
that referenced
this pull request
Feb 12, 2025
…avor of grafana#16097 refactor This reverts commit c8c584f.
owen-d
approved these changes
Feb 12, 2025
Hopefully I'll merge it today ! |
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.
This add a new UI meant to help operate Loki and replace the dataobj (wip: columnar storage) UI.
This UI system is designed to work seamlessly in a distributed environment where multiple Loki nodes can serve the UI and proxy requests to other nodes in the cluster. The system uses ckit for cluster membership and discovery, allowing any node to serve as an entry point for the UI while maintaining the ability to interact with all nodes in the cluster.
The UI and the required API in currently under /ui/ and on by default (subject to change) if you don't want make sure to hide /ui/
For more information on how it works see https://github.com/grafana/loki/blob/f16729c69a8d31e49f44b6904088a97b46b984d9/pkg/ui/README.md
This UI allows to inspect the cluster health, see each nodes, list and create delete request. We'll be adding more feature in the future.
Let us know what you want to see next.