pub struct PrometheusBuilder { /* private fields */ }
Expand description
Builder for creating and installing a Prometheus recorder/exporter.
Implementations§
source§impl PrometheusBuilder
impl PrometheusBuilder
sourcepub fn new() -> Self
pub fn new() -> Self
Creates a new PrometheusBuilder
.
sourcepub fn with_http_listener(self, addr: impl Into<SocketAddr>) -> Self
pub fn with_http_listener(self, addr: impl Into<SocketAddr>) -> Self
Configures the exporter to expose an HTTP listener that functions as a scrape endpoint.
The HTTP listener that is spawned will respond to GET requests on any request path.
Running in HTTP listener mode is mutually exclusive with the push gateway i.e. enabling the HTTP listener will disable the push gateway, and vise versa.
Defaults to enabled, listening at 0.0.0.0:9000
.
sourcepub fn with_push_gateway<T>(
self,
endpoint: T,
interval: Duration
) -> Result<Self, BuildError>where
T: AsRef<str>,
pub fn with_push_gateway<T>( self, endpoint: T, interval: Duration ) -> Result<Self, BuildError>where T: AsRef<str>,
Configures the exporter to push periodic requests to a Prometheus push gateway.
Running in push gateway mode is mutually exclusive with the HTTP listener i.e. enabling the push gateway will disable the HTTP listener, and vise versa.
Defaults to disabled.
Errors
If the given endpoint cannot be parsed into a valid URI, an error variant will be returned describing the error.
sourcepub fn add_allowed_address<A>(self, address: A) -> Result<Self, BuildError>where
A: AsRef<str>,
pub fn add_allowed_address<A>(self, address: A) -> Result<Self, BuildError>where A: AsRef<str>,
Adds an IP address or subnet to the allowlist for the scrape endpoint.
If a client makes a request to the scrape endpoint and their IP is not present in the allowlist, either directly or within any of the allowed subnets, they will receive a 403 Forbidden response.
Defaults to allowing all IPs.
Security Considerations
On its own, an IP allowlist is insufficient for access control, if the exporter is running in an environment alongside applications (such as web browsers) that are susceptible to DNS rebinding attacks.
Errors
If the given address cannot be parsed into an IP address or subnet, an error variant will be returned describing the error.
sourcepub fn set_quantiles(self, quantiles: &[f64]) -> Result<Self, BuildError>
pub fn set_quantiles(self, quantiles: &[f64]) -> Result<Self, BuildError>
Sets the quantiles to use when rendering histograms.
Quantiles represent a scale of 0 to 1, where percentiles represent a scale of 1 to 100, so a quantile of 0.99 is the 99th percentile, and a quantile of 0.99 is the 99.9th percentile.
Defaults to a hard-coded set of quantiles: 0.0, 0.5, 0.9, 0.95, 0.99, 0.999, and 1.0. This means that all histograms will be exposed as Prometheus summaries.
If buckets are set (via set_buckets
or
set_buckets_for_metric
) then all histograms will be exposed
as summaries instead.
Errors
If quantiles
is empty, an error variant will be thrown.
sourcepub fn set_buckets(self, values: &[f64]) -> Result<Self, BuildError>
pub fn set_buckets(self, values: &[f64]) -> Result<Self, BuildError>
Sets the buckets to use when rendering histograms.
Buckets values represent the higher bound of each buckets. If buckets are set, then all histograms will be rendered as true Prometheus histograms, instead of summaries.
Errors
If values
is empty, an error variant will be thrown.
sourcepub fn set_buckets_for_metric(
self,
matcher: Matcher,
values: &[f64]
) -> Result<Self, BuildError>
pub fn set_buckets_for_metric( self, matcher: Matcher, values: &[f64] ) -> Result<Self, BuildError>
Sets the bucket for a specific pattern.
The match pattern can be a full match (equality), prefix match, or suffix match. The matchers are applied in that order if two or more matchers would apply to a single metric. That is to say, if a full match and a prefix match applied to a metric, the full match would win, and if a prefix match and a suffix match applied to a metric, the prefix match would win.
Buckets values represent the higher bound of each buckets. If buckets are set, then any histograms that match will be rendered as true Prometheus histograms, instead of summaries.
This option changes the observer’s output of histogram-type metric into summaries.
It only affects matching metrics if set_buckets
was not used.
Errors
If values
is empty, an error variant will be thrown.
sourcepub fn idle_timeout(
self,
mask: MetricKindMask,
timeout: Option<Duration>
) -> Self
pub fn idle_timeout( self, mask: MetricKindMask, timeout: Option<Duration> ) -> Self
Sets the idle timeout for metrics.
If a metric hasn’t been updated within this timeout, it will be removed from the registry and in turn removed from the normal scrape output until the metric is emitted again. This behavior is driven by requests to generate rendered output, and so metrics will not be removed unless a request has been made recently enough to prune the idle metrics.
Further, the metric kind “mask” configures which metrics will be considered by the idle timeout. If the kind of a metric being considered for idle timeout is not of a kind represented by the mask, it will not be affected, even if it would have othered been removed for exceeding the idle timeout.
Refer to the documentation for MetricKindMask
for more
information on defining a metric kind mask.
sourcepub fn add_global_label<K, V>(self, key: K, value: V) -> Selfwhere
K: Into<String>,
V: Into<String>,
pub fn add_global_label<K, V>(self, key: K, value: V) -> Selfwhere K: Into<String>, V: Into<String>,
Adds a global label to this exporter.
Global labels are applied to all metrics. Labels defined on the metric key itself have precedence over any global labels. If this method is called multiple times, the latest value for a given label key will be used.
sourcepub fn install(self) -> Result<(), BuildError>
pub fn install(self) -> Result<(), BuildError>
Builds the recorder and exporter and installs them globally.
When called from within a Tokio runtime, the exporter future is spawned directly into the runtime. Otherwise, a new single-threaded Tokio runtime is created on a background thread, and the exporter is spawned there.
Errors
If there is an error while either building the recorder and exporter, or installing the recorder and exporter, an error variant will be returned describing the error.
sourcepub fn install_recorder(self) -> Result<PrometheusHandle, BuildError>
pub fn install_recorder(self) -> Result<PrometheusHandle, BuildError>
Builds the recorder and installs it globally, returning a handle to it.
The handle can be used to generate valid Prometheus scrape endpoint payloads directly.
Errors
If there is an error while building the recorder, or installing the recorder, an error variant will be returned describing the error.
sourcepub fn build(
self
) -> Result<(PrometheusRecorder, Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'static>>), BuildError>
pub fn build( self ) -> Result<(PrometheusRecorder, Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'static>>), BuildError>
Builds the recorder and exporter and returns them both.
In most cases, users should prefer to use install
to create
and install the recorder and exporter automatically for them. If a caller is combining
recorders, or needs to schedule the exporter to run in a particular way, this method, or
build_recorder
, provide the flexibility to do so.
Panics
This method must be called from within an existing Tokio runtime or it will panic.
Errors
If there is an error while building the recorder and exporter, an error variant will be returned describing the error.
sourcepub fn build_recorder(self) -> PrometheusRecorder
pub fn build_recorder(self) -> PrometheusRecorder
Builds the recorder and returns it.