pub struct StatsdBuilder { /* private fields */ }
Expand description

Builder for creating and installing a Statsd recorder/exporter.

Implementations

Creates a new StatsdBuilder.

Configures the exporter to push periodic requests to a statsd agent

Errors

If the given endpoint cannot be parsed into a valid SocketAddr, an error variant will be returned describing the error.

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.

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 Statsd histograms, instead of summaries.

Errors

If values is empty, an error variant will be thrown.

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 Statsd 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.

Adds a global tag to this exporter.

Global tags are applied to all metrics. Tags defined on the metric key itself have precedence over any global tags. If this method is called multiple times, the latest value for a given label key will be used.

Sets the maximum size of packets going out to the gateway.

Defaults to 1432 bytes

Adds a global prefix for every metric name.

Global prefix is applied to all metrics. Its intended use is to introduce a configurable namespace for every metric generated by the application such that different deployments can operate on their own family of metrics without overlap.

Sets the idle timeout for metrics.

If a metric hasn’t been updated within this timeout, it will be removed from the registry 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.

When a metric is rendered its value is replaced with a “zero-value” for that MetricKind however any metric with a state “zero-value” will not be rendered and will be cleaned up when its corresponding idle timeout expires.

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.

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.

Builds the recorder and returns it.

Trait Implementations

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more