We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, Sonic does not provide any information on its current status and load.
A statistics command (eg. INFO) could be made available via Sonic Channel in control mode, providing information on:
INFO
control
uptime
clients_connected
commands_total
command_latency_best
command_latency_worst
kv_open_count
fst_open_count
fst_consolidate_count
Command flow example:
> INFO < RESULT uptime(3600) clients_connected(12) commands_total(1002939) command_latency_best(1) command_latency_worst(1) kv_open_count(6) fst_open_count(182) fst_consolidate_count(89)
The text was updated successfully, but these errors were encountered:
Add RocksDB statistics: https://github.com/facebook/rocksdb/wiki/RocksDB-Tuning-Guide#rocksdb-statistics
Sorry, something went wrong.
As enabling RocksDB statistics adds a 5%-10% overhead, choice has been made not to report those. See: https://github.com/facebook/rocksdb/wiki/Statistics
42b2830
No branches or pull requests
Currently, Sonic does not provide any information on its current status and load.
A statistics command (eg.
INFO
) could be made available via Sonic Channel incontrol
mode, providing information on:uptime
clients_connected
commands_total
command_latency_best
+command_latency_worst
kv_open_count
+fst_open_count
fst_consolidate_count
Command flow example:
The text was updated successfully, but these errors were encountered: