Toggle navigation
Home
org.gridgain.grid.cache.GridCacheMetrics to org.gridgain.grid.cache.CacheMetricsMxBean
No. of Instances - 13
No. of Commits - 1
No. of Projects - {'ignite'}
Hierarchy/Composition: SIBLING
Primitive Info: -
NameSpace: Internal -> Internal
Mapping:
Update Class Instacne Creation
new GridCacheRestMetrics(metrics.createTime(),metrics.readTime(),metrics.writeTime(),metrics.reads(),metrics.writes(),metrics.hits(),metrics.misses())
to
new GridCacheRestMetrics((int)metrics.getCacheGets(),(int)(metrics.getCacheRemovals() + metrics.getCachePuts()),(int)metrics.getCacheHits(),(int)metrics.getCacheMisses())
Add or Remove Method invocation
m.hits()
to
m.getCacheHits()
m.misses()
to
m.getCacheMisses()
metrics.reads()
to
metrics.getCacheGets()
metrics.writes()
to
metrics.getCachePuts()
metrics.reads()
to
metrics.getCacheGets()
metrics.writes()
to
metrics.getCachePuts()
metrics.reads()
to
metrics.getCacheGets()
metrics.writes()
to
metrics.getCachePuts()
metrics.reads()
to
metrics.getCacheGets()
metrics.writes()
to
metrics.getCachePuts()
cacheMetrics.txCommits()
to
cacheMetrics.getCacheTxCommits()
cacheMetrics.txCommits()
to
cacheMetrics.getCacheTxCommits()
cacheMetrics.txRollbacks()
to
cacheMetrics.getCacheTxRollbacks()
m.writes()
to
m.getCachePuts()
m.reads()
to
m.getCacheGets()
m.hits()
to
m.getCacheHits()
m.misses()
to
m.getCacheMisses()
m.writes()
to
m.getCachePuts()
m.reads()
to
m.getCacheGets()
m.hits()
to
m.getCacheHits()
m.misses()
to
m.getCacheMisses()
m.writes()
to
m.getCacheRemovals()
m.reads()
to
m.getCacheGets()
m.hits()
to
m.getCacheHits()
m.misses()
to
m.getCacheMisses()
cacheMetrics.txCommits()
to
cacheMetrics.getCacheTxCommits()
cacheMetrics.txRollbacks()
to
cacheMetrics.getCacheTxRollbacks()
cacheMetrics.txRollbacks()
to
cacheMetrics.getCacheTxRollbacks()
Other
metrics
to
metrics