Valkey GUI RFC#31
Open
ravjotbrar wants to merge 4 commits into
Open
Conversation
2cb7887 to
4681a64
Compare
rjd15372
reviewed
Oct 16, 2025
|
|
||
| **2. Backend for the Frontend:** A Node.js process that runs locally alongside the frontend and communicates with Valkey instances over WebSockets. It manages connection state, basic authentication, and command execution, returning responses for features like the integrated Command Line Interface (CLI). | ||
|
|
||
| The backend runs in the Electron main process and hosts a WebSocket server that manages subscriptions, streams live updates to the frontend, and handles historical queries. It communicates with the metrics server over a local or remote HTTP API, using basic authentication. For near real-time updates, the backend reads new entries from NDJSON files on disk, filters by metric type, and emits them to subscribed clients. For historical queries, it fetches rows from the API, filters by timestamp, buckets the results (e.g., per 5s or 1m), and sends them to the frontend. |
Author
There was a problem hiding this comment.
The metrics server is the Timeseries Metrics Service mentioned below. I definitely should've been more clear here and will edit the report to use the correct name and reference the section defining the metrics server. Thanks for pointing this out!
Signed-off-by: Ravjot Brar <Ravjot.Brar@MacBookPro.lan> Signed-off-by: Ravjot Brar <Ravjot.Brar@VAN-FM2FQ6NHXT.local>
Signed-off-by: Ravjot Brar <Ravjot.Brar@MacBookPro.lan> Signed-off-by: Ravjot Brar <Ravjot.Brar@VAN-FM2FQ6NHXT.local>
Signed-off-by: Ravjot Brar <Ravjot.Brar@VAN-FM2FQ6NHXT.local>
Signed-off-by: Ravjot Brar <Ravjot.Brar@VAN-FM2FQ6NHXT.local>
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.
The proposed feature is Skyscope, a Graphical User Interface (GUI) that brings observability capabilities to Valkey. Skyscope addresses critical observability and monitoring gaps identified through community analysis and customer research, particularly focusing on hot key detection, cluster visualization, and near real-time metrics collection.