Uses of Class
org.apache.hadoop.fs.statistics.impl.DynamicIOStatisticsBuilder
Packages that use DynamicIOStatisticsBuilder
-
Uses of DynamicIOStatisticsBuilder in org.apache.hadoop.fs.statistics.impl
Methods in org.apache.hadoop.fs.statistics.impl that return DynamicIOStatisticsBuilderModifier and TypeMethodDescriptionstatic DynamicIOStatisticsBuilderIOStatisticsBinding.dynamicIOStatistics()Create a builder for dynamic IO Statistics.DynamicIOStatisticsBuilder.withAtomicIntegerCounter(String key, AtomicInteger source) Add a counter statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicIntegerGauge(String key, AtomicInteger source) Add a gauge statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicIntegerMaximum(String key, AtomicInteger source) Add a maximum statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicIntegerMinimum(String key, AtomicInteger source) Add a minimum statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicLongCounter(String key, AtomicLong source) Add a counter statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicLongGauge(String key, AtomicLong source) Add a gauge statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicLongMaximum(String key, AtomicLong source) Add a maximum statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withAtomicLongMinimum(String key, AtomicLong source) Add a minimum statistic to dynamically return the latest value of the source.DynamicIOStatisticsBuilder.withLongFunctionCounter(String key, ToLongFunction<String> eval) Add a new evaluator to the counter statistics.DynamicIOStatisticsBuilder.withLongFunctionGauge(String key, ToLongFunction<String> eval) Add a new evaluator to the gauge statistics.DynamicIOStatisticsBuilder.withLongFunctionMaximum(String key, ToLongFunction<String> eval) Add a new evaluator to the maximum statistics.DynamicIOStatisticsBuilder.withLongFunctionMinimum(String key, ToLongFunction<String> eval) Add a new evaluator to the minimum statistics.DynamicIOStatisticsBuilder.withMeanStatisticFunction(String key, Function<String, MeanStatistic> eval) Add a new evaluator to the mean statistics.DynamicIOStatisticsBuilder.withMutableCounter(String key, MutableCounterLong source) Build a dynamic counter statistic from aMutableCounterLong.