I'm using RocksDB in my project with the SpringBoot Microservices. For monitoring & troubleshooting purposes, I want to export RocksDB metrics daily. I have exposed some metrics like Column Family, Estimated Counts, RocksDB Properties, etc. Now I want to expose a few more metrics like memory usage, cache details, RocksDB hit count, etc.
In the RocksDB wiki, I found - Memory Usage in RocksDB
Is there any way to expose these metrics?
Thanks