Uses of Class
org.apache.solr.metrics.prometheus.SolrPrometheusFormatter
-
Packages that use SolrPrometheusFormatter Package Description org.apache.solr.metrics.prometheus TheSolrPrometheusFormatter
is responsible for collecting Prometheus metrics from exportingMetric
's fromMetricRegistry
SolrMetric
is a wrapper to exportMetric
toDataPointSnapshot
org.apache.solr.metrics.prometheus.core TheSolrPrometheusCoreFormatter
is responsible for exporting solr.core registry metrics to Prometheus.org.apache.solr.metrics.prometheus.jetty TheSolrPrometheusJettyFormatter
is responsible for exporting solr.jetty registry metrics to Prometheus.org.apache.solr.metrics.prometheus.jvm TheSolrPrometheusJvmFormatter
is responsible for exporting solr.jvm registry metrics to Prometheus.org.apache.solr.metrics.prometheus.node TheSolrPrometheusNodeFormatter
is responsible for exporting solr.node registry metrics to Prometheus.org.apache.solr.response API and implementations ofQueryResponseWriter
for formatting Solr request responses -
-
Uses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus
Methods in org.apache.solr.metrics.prometheus with parameters of type SolrPrometheusFormatter Modifier and Type Method Description abstract void
SolrMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrNoOpMetric. toPrometheus(SolrPrometheusFormatter formatter)
-
Uses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.core
Subclasses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.core Modifier and Type Class Description class
SolrPrometheusCoreFormatter
This class maintains aMetricSnapshot
s exported from solr.coreMetricRegistry
Methods in org.apache.solr.metrics.prometheus.core with parameters of type SolrPrometheusFormatter Modifier and Type Method Description void
SolrCoreCacheMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrCoreHandlerMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrCoreHighlighterMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrCoreIndexMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrCoreSearcherMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrCoreTlogMetric. toPrometheus(SolrPrometheusFormatter formatter)
-
Uses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.jetty
Subclasses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.jetty Modifier and Type Class Description class
SolrPrometheusJettyFormatter
This class maintains aMetricSnapshot
s exported from solr.jettyMetricRegistry
Methods in org.apache.solr.metrics.prometheus.jetty with parameters of type SolrPrometheusFormatter Modifier and Type Method Description void
SolrJettyDispatchesMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrJettyReqRespMetric. toPrometheus(SolrPrometheusFormatter formatter)
-
Uses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.jvm
Subclasses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.jvm Modifier and Type Class Description class
SolrPrometheusJvmFormatter
This class maintains aMetricSnapshot
s exported from solr.jvmMetricRegistry
Methods in org.apache.solr.metrics.prometheus.jvm with parameters of type SolrPrometheusFormatter Modifier and Type Method Description void
SolrJvmBuffersMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrJvmGcMetrics. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrJvmMemoryMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrJvmOsMetric. toPrometheus(SolrPrometheusFormatter formatter)
-
Uses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.node
Subclasses of SolrPrometheusFormatter in org.apache.solr.metrics.prometheus.node Modifier and Type Class Description class
SolrPrometheusNodeFormatter
This class maintains aMetricSnapshot
s exported from solr.nodeMetricRegistry
Methods in org.apache.solr.metrics.prometheus.node with parameters of type SolrPrometheusFormatter Modifier and Type Method Description void
SolrNodeContainerMetric. toPrometheus(SolrPrometheusFormatter formatter)
void
SolrNodeHandlerMetric. toPrometheus(SolrPrometheusFormatter formatter)
-
Uses of SolrPrometheusFormatter in org.apache.solr.response
Methods in org.apache.solr.response that return SolrPrometheusFormatter Modifier and Type Method Description static SolrPrometheusFormatter
PrometheusResponseWriter. getFormatterType(String registryName)
Method parameters in org.apache.solr.response with type arguments of type SolrPrometheusFormatter Modifier and Type Method Description static void
PrometheusResponseWriter. toPrometheus(com.codahale.metrics.MetricRegistry registry, String registryName, List<com.codahale.metrics.MetricFilter> shouldMatchFilters, com.codahale.metrics.MetricFilter mustMatchFilter, Predicate<CharSequence> propertyFilter, boolean skipHistograms, boolean skipAggregateValues, boolean compact, Consumer<SolrPrometheusFormatter> consumer)
Provides a representation of the given Dropwizard metric registry asSolrPrometheusCoreFormatter
-s.
-