/*
* Copyright Terracotta, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ehcache.core.statistics;
import org.terracotta.statistics.ValueStatistic;
import org.terracotta.statistics.observer.ChainedOperationObserver;
import java.util.Map;
All statistics relative to a cache and its underlying tiers.
/**
* All statistics relative to a cache and its underlying tiers.
*/
public interface CacheStatistics {
List of statistics tracked on this cache
Returns: a map of statistics per name
/**
* List of statistics tracked on this cache
*
* @return a map of statistics per name
*/
Map<String, ValueStatistic<?>> getKnownStatistics();
Map of tier statistics on this cache. Per tier name
Returns: tier statistics per tier name
/**
* Map of tier statistics on this cache. Per tier name
*
* @return tier statistics per tier name
*/
Map<String, TierStatistics> getTierStatistics();
Register a derived statistic to one of the existing statistic.
Params: - outcomeClass – the enum of the possible outcomes
- statName – name of the statistic we are looking for
- derivedStatistic – derived statistic to register
Type parameters:
/**
* Register a derived statistic to one of the existing statistic.
*
* @param outcomeClass the enum of the possible outcomes
* @param statName name of the statistic we are looking for
* @param derivedStatistic derived statistic to register
* @param <T> type of the outcome
* @param <S> type of the derived statistic
*/
<T extends Enum<T>, S extends ChainedOperationObserver<? super T>> void registerDerivedStatistic(Class<T> outcomeClass, String statName, S derivedStatistic);
Reset the values for this cache and its underlying tiers.
Implementation note: Calling clear doesn't really clear the data. It freezes the actual values and compensate
for them when returning a result.
/**
* Reset the values for this cache and its underlying tiers.
* <p>
* <b>Implementation note:</b> Calling clear doesn't really clear the data. It freezes the actual values and compensate
* for them when returning a result.
*/
void clear();
How many hits occurred on the cache since its creation or the latest clear()
Returns: hit count
/**
* How many hits occurred on the cache since its creation or the latest {@link #clear()}
*
* @return hit count
*/
long getCacheHits();
The percentage of hits compared to all gets since the cache creation or the latest clear()
Returns: hit percentage
/**
* The percentage of hits compared to all gets since the cache creation or the latest {@link #clear()}
*
* @return hit percentage
*/
float getCacheHitPercentage();
How many misses occurred on the cache since its creation or the latest clear()
Returns: miss count
/**
* How many misses occurred on the cache since its creation or the latest {@link #clear()}
*
* @return miss count
*/
long getCacheMisses();
The percentage of misses compared to all gets since the cache creation or the latest clear()
Returns: miss count
/**
* The percentage of misses compared to all gets since the cache creation or the latest {@link #clear()}
*
* @return miss count
*/
float getCacheMissPercentage();
How many gets occurred on the cache since its creation or the latest clear()
Returns: get count
/**
* How many gets occurred on the cache since its creation or the latest {@link #clear()}
*
* @return get count
*/
long getCacheGets();
How many puts occurred on the cache since its creation or the latest clear()
Returns: put count
/**
* How many puts occurred on the cache since its creation or the latest {@link #clear()}
*
* @return put count
*/
long getCachePuts();
How many removals occurred on the cache since its creation or the latest clear()
Returns: removal count
/**
* How many removals occurred on the cache since its creation or the latest {@link #clear()}
*
* @return removal count
*/
long getCacheRemovals();
How many evictions occurred on the cache since its creation or the latest clear()
Returns: eviction count
/**
* How many evictions occurred on the cache since its creation or the latest {@link #clear()}
*
* @return eviction count
*/
long getCacheEvictions();
How many expirations occurred on the cache since its creation or the latest clear()
Returns: expiration count
/**
* How many expirations occurred on the cache since its creation or the latest {@link #clear()}
*
* @return expiration count
*/
long getCacheExpirations();
}