Uses of Interface
org.apache.bookkeeper.stats.StatsProvider
-
Packages that use StatsProvider Package Description org.apache.bookkeeper.conf Configurations used by bookkeeper.org.apache.bookkeeper.server BookKeeper Server (Bookie) related components.org.apache.bookkeeper.server.http Package for bookkeeper http service.org.apache.bookkeeper.server.http.service Define the services running in bookkeeper admin http server.org.apache.bookkeeper.server.service Services running in a storage server (bookie).org.apache.bookkeeper.stats A lightweight stats library used for exporting bookkeeper stats.org.apache.bookkeeper.stats.codahale A lightweight stats library implementation based on Codahale metrics library.org.apache.bookkeeper.stats.otel A stats provider implementation based on OpenTelemetry.org.apache.bookkeeper.stats.prometheus A stats provider implementation based on {@link https://prometheus.io/}. -
-
Uses of StatsProvider in org.apache.bookkeeper.conf
Methods in org.apache.bookkeeper.conf that return types with arguments of type StatsProvider Modifier and Type Method Description java.lang.Class<? extends StatsProvider>ServerConfiguration. getStatsProviderClass()Get the stats provider used by bookie.Method parameters in org.apache.bookkeeper.conf with type arguments of type StatsProvider Modifier and Type Method Description ServerConfigurationServerConfiguration. setStatsProviderClass(java.lang.Class<? extends StatsProvider> providerClass)Set the stats provider used by bookie. -
Uses of StatsProvider in org.apache.bookkeeper.server
Methods in org.apache.bookkeeper.server that return StatsProvider Modifier and Type Method Description StatsProviderEmbeddedServer. getStatsProvider()Methods in org.apache.bookkeeper.server with parameters of type StatsProvider Modifier and Type Method Description EmbeddedServer.BuilderEmbeddedServer.Builder. statsProvider(StatsProvider statsProvider) -
Uses of StatsProvider in org.apache.bookkeeper.server.http
Fields in org.apache.bookkeeper.server.http declared as StatsProvider Modifier and Type Field Description (package private) StatsProviderBKHttpServiceProvider.Builder. statsProviderMethods in org.apache.bookkeeper.server.http with parameters of type StatsProvider Modifier and Type Method Description BKHttpServiceProvider.BuilderBKHttpServiceProvider.Builder. setStatsProvider(StatsProvider statsProvider) -
Uses of StatsProvider in org.apache.bookkeeper.server.http.service
Constructors in org.apache.bookkeeper.server.http.service with parameters of type StatsProvider Constructor Description MetricsService(ServerConfiguration conf, StatsProvider statsProvider) -
Uses of StatsProvider in org.apache.bookkeeper.server.service
Methods in org.apache.bookkeeper.server.service that return StatsProvider Modifier and Type Method Description StatsProviderStatsProviderService. getStatsProvider() -
Uses of StatsProvider in org.apache.bookkeeper.stats
Classes in org.apache.bookkeeper.stats that implement StatsProvider Modifier and Type Class Description classCachingStatsProviderACachingStatsProvideradds the caching functionality to an existingStatsProvider.classNullStatsProviderA no-op stats provider implementation.Fields in org.apache.bookkeeper.stats declared as StatsProvider Modifier and Type Field Description (package private) static StatsProviderStats. provprotected StatsProviderCachingStatsProvider. underlyingMethods in org.apache.bookkeeper.stats that return StatsProvider Modifier and Type Method Description static StatsProviderStats. get()Constructors in org.apache.bookkeeper.stats with parameters of type StatsProvider Constructor Description CachingStatsProvider(StatsProvider provider) -
Uses of StatsProvider in org.apache.bookkeeper.stats.codahale
Classes in org.apache.bookkeeper.stats.codahale that implement StatsProvider Modifier and Type Class Description classCodahaleMetricsProviderAStatsProviderimplemented based on Codahale metrics library.classFastCodahaleMetricsProviderAStatsProviderimplemented based on Codahale metrics library. -
Uses of StatsProvider in org.apache.bookkeeper.stats.otel
Classes in org.apache.bookkeeper.stats.otel that implement StatsProvider Modifier and Type Class Description classOtelMetricsProvider -
Uses of StatsProvider in org.apache.bookkeeper.stats.prometheus
Classes in org.apache.bookkeeper.stats.prometheus that implement StatsProvider Modifier and Type Class Description classPrometheusMetricsProviderA Prometheus basedStatsProviderimplementation.
-