Package org.apache.solr.store.blockcache
Class Metrics
- java.lang.Object
-
- org.apache.solr.search.SolrCacheBase
-
- org.apache.solr.store.blockcache.Metrics
-
- All Implemented Interfaces:
AutoCloseable,SolrInfoBean,SolrMetricProducer
public class Metrics extends SolrCacheBase implements SolrInfoBean, SolrMetricProducer
ASolrInfoBeanthat provides metrics on block cache operations.- WARNING: This API is experimental and might change in incompatible ways in the next release.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.solr.search.SolrCacheBase
SolrCacheBase.AutoWarmCountRef
-
Nested classes/interfaces inherited from interface org.apache.solr.core.SolrInfoBean
SolrInfoBean.Category, SolrInfoBean.Group
-
-
Field Summary
Fields Modifier and Type Field Description AtomicLongblockCacheEvictionAtomicLongblockCacheHitAtomicLongblockCacheMissAtomicLongblockCacheSizeAtomicLongblockCacheStoreFailAtomicLongblockCacheStoreFail_lastAtomicLongshardBuffercacheAllocateAtomicLongshardBuffercacheLost-
Fields inherited from class org.apache.solr.search.SolrCacheBase
autowarm, regenerator
-
-
Constructor Summary
Constructors Constructor Description Metrics()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetDescription()Simple one or two line descriptionSet<String>getMetricNames()Modifiable set of metric names that this component reports (default is null, which means none).StringgetName()Simple common usage name, e.g.SolrMetricsContextgetSolrMetricsContext()Implementing classes should override this method to provide the context obtained inSolrMetricProducer.initializeMetrics(SolrMetricsContext, String)to ensure proper cleanup of metrics at the end of the life-cycle of this component.voidinitializeMetrics(SolrMetricsContext parentContext, String scope)Initialize metrics specific to this producer.-
Methods inherited from class org.apache.solr.search.SolrCacheBase
calcHitRatio, getAutowarmDescription, getCategory, getState, getVersion, init, isAutowarmingOn, name, setState
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.solr.core.SolrInfoBean
getCategory, getMetricRegistry, getMetricsSnapshot, registerMetricName
-
Methods inherited from interface org.apache.solr.metrics.SolrMetricProducer
close, initializeMetrics
-
-
-
-
Field Detail
-
blockCacheSize
public AtomicLong blockCacheSize
-
blockCacheHit
public AtomicLong blockCacheHit
-
blockCacheMiss
public AtomicLong blockCacheMiss
-
blockCacheEviction
public AtomicLong blockCacheEviction
-
blockCacheStoreFail
public AtomicLong blockCacheStoreFail
-
blockCacheStoreFail_last
public AtomicLong blockCacheStoreFail_last
-
shardBuffercacheAllocate
public AtomicLong shardBuffercacheAllocate
-
shardBuffercacheLost
public AtomicLong shardBuffercacheLost
-
-
Method Detail
-
initializeMetrics
public void initializeMetrics(SolrMetricsContext parentContext, String scope)
Description copied from interface:SolrMetricProducerInitialize metrics specific to this producer.- Specified by:
initializeMetricsin interfaceSolrMetricProducer- Parameters:
parentContext- parent metrics context. If this component has the same life-cycle as the parent it can simply use the parent context, otherwise it should obtain a child context usingSolrMetricsContext.getChildContext(Object)passingthisas the child.scope- component scope
-
getName
public String getName()
Description copied from interface:SolrInfoBeanSimple common usage name, e.g. BasicQueryHandler, or fully qualified class name.- Specified by:
getNamein interfaceSolrInfoBean
-
getDescription
public String getDescription()
Description copied from interface:SolrInfoBeanSimple one or two line description- Specified by:
getDescriptionin interfaceSolrInfoBean
-
getMetricNames
public Set<String> getMetricNames()
Description copied from interface:SolrInfoBeanModifiable set of metric names that this component reports (default is null, which means none). If not null then this set is used bySolrInfoBean.registerMetricName(String)to capture what metrics names are reported from this component.NOTE: this set has to allow iteration under modifications.
- Specified by:
getMetricNamesin interfaceSolrInfoBean
-
getSolrMetricsContext
public SolrMetricsContext getSolrMetricsContext()
Description copied from interface:SolrMetricProducerImplementing classes should override this method to provide the context obtained inSolrMetricProducer.initializeMetrics(SolrMetricsContext, String)to ensure proper cleanup of metrics at the end of the life-cycle of this component.- Specified by:
getSolrMetricsContextin interfaceSolrMetricProducer
-
-