You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature request: An application may need to monitor splinterdb stats and do its own processing on that data (e.g. push data to an external metrics aggregator, expose data in a UI, etc).
Possible solution: We could add a simple API in the splinterdb.h layer that allows the application to retrieve stats, for example something roughly like
typedefstruct {
... // contains numeric fields for the various stats// that get printed by the current stats-printing code
} splinterdb_stats;
voidsplinterdb_stats_get(splinterdb*kvs, splinterdb_stats*stats_out);
The text was updated successfully, but these errors were encountered:
Feature request: An application may need to monitor splinterdb stats and do its own processing on that data (e.g. push data to an external metrics aggregator, expose data in a UI, etc).
Possible solution: We could add a simple API in the
splinterdb.h
layer that allows the application to retrieve stats, for example something roughly likeThe text was updated successfully, but these errors were encountered: