dns_resolver::metrics

Struct Metrics

Source
pub struct Metrics {
    pub authoritative_hits: u64,
    pub override_hits: u64,
    pub blocked: u64,
    pub cache_misses: u64,
    pub cache_hits: u64,
    pub nameserver_hits: u64,
    pub nameserver_misses: u64,
}
Expand description

Metrics from a resolution attempt. The resolvers build this structure rather than update the Prometheus metrics directly.

Fields§

§authoritative_hits: u64

Hits on authoritative data: zone authoritative answers, CNAMEs, delegations, and name errors. Does not include blocked domains.

§override_hits: u64

Hits on non-authoritative data: zone non-authoritative answers and CNAMEs (zone non-authoritative delegations and name errors are ignored). Does not include blocked domains.

§blocked: u64

A or AAAA questions (ie, not *) where the result is from a zone and has the unspecified IP.

§cache_misses: u64

Cache misses

§cache_hits: u64

Cache hits

§nameserver_hits: u64

Questions which are answered by some upstream nameserver.

§nameserver_misses: u64

Questions which an upstream nameserver fails to answer.

Implementations§

Source§

impl Metrics

Source

pub fn new() -> Self

Source

pub fn zoneresult_answer( &mut self, rrs: &[ResourceRecord], zone: &Zone, question: &Question, )

Source

pub fn zoneresult_cname(&mut self, zone: &Zone)

Source

pub fn zoneresult_delegation(&mut self, zone: &Zone)

Source

pub fn zoneresult_nameerror(&mut self, zone: &Zone)

Source

pub fn cache_hit(&mut self)

Source

pub fn cache_miss(&mut self)

Source

pub fn nameserver_hit(&mut self)

Source

pub fn nameserver_miss(&mut self)

Trait Implementations§

Source§

impl Default for Metrics

Source§

fn default() -> Self

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

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

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

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

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

fn with_current_subscriber(self) -> WithDispatch<Self>

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