我们想要计算在没有Opscenter的情况下每秒或每天向我们的cassandra集群写入/读取的记录数。
答案 0 :(得分:4)
Opscenter只是阅读C *提供的标准JMX,所以你可以做同样的事情。你最感兴趣的mbeans是
org.apache.cassandra.metrics:type=ClientRequest,scope=Read,name=Latency : Count
org.apache.cassandra.metrics:type=ClientRequest,scope=Write,name=Latency : Count
从所有节点中获取这些节点,您就拥有了读取和写入计数。