-
Notifications
You must be signed in to change notification settings - Fork 145
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
[Keyspace dashboard] Allow selecting multiple tables #2363
Comments
It makes sense to aggregate (sum? avg?) specific data from multiple tables - such as disk space. What else? Latency or ops make little sense to me. |
I think aggregate is used in a confusing manner here - the intent is 'bring multiple data from multiple tables into a single view' - not an aggregate of 'sum the multiple data from multiple tables and display it' - but I may be wrong. I referred to the latter, but I think the original author referred to the former defintion. |
That's correct. I updated the issue title to match it. |
@hopugop We already support multiple tables, the limitation we have is allowing multiple keyspaces |
Describe the feature and the current behavior/state.
Table metrics are amazing. However, it only allows to choose from a single table at a time. It would be really useful to allow a view for all tables in a single view - think of it like a historical view of tables' operations, latency and dataset.
I recently used raw queries to achieve this, such as
sum(scylla_column_family_total_disk_space{}) by(dc,ks,table)
to aggregate disk utilization by table. There might be many others beneficial uses.Who will benefit with this feature?
Anyone that is interested in historical metrics comparison for multiple tables.
The text was updated successfully, but these errors were encountered: