我用Cassandra2.2设置了metrics+graphite+grafana监控。升级到Cassandra 3.3后,我再也看不到JVM指标或org.apache.cassandra.ColumnFamile.*中的任何内容。我的metrics.yaml文件如下:
graphite:
- period: 30
timeunit: 'SECONDS'
prefix: 'cassandra-%%hostid%%'
hosts:
- host: '%%graphite_host%%'
port: %%graphite_port%%
predicate:
color: "white"
useQualifiedName: true
patterns:
- ".*"
发布于 2016-03-12 22:30:38
为了与org.apache.cassandra.Tables.*
命名法保持一致,他们被转移到CQL中。
https://stackoverflow.com/questions/35950811
复制相似问题