Skip to main content

HostStats

Struct HostStats 

Source
pub struct HostStats {
    pub total_requests: u64,
    pub successful_requests: u64,
    pub rate_limited: u64,
    pub server_errors: u64,
    pub client_errors: u64,
    pub last_success: Option<Instant>,
    pub last_rate_limit: Option<Instant>,
    pub request_times: Vec<Duration>,
    pub status_codes: HashMap<u16, u64>,
    pub cache_hits: u64,
    pub cache_misses: u64,
}
Expand description

Record and report statistics for a crate::ratelimit::Host

Fields§

§total_requests: u64

Total number of requests made to this host

§successful_requests: u64

Number of successful requests (2xx status)

§rate_limited: u64

Number of requests that received rate limit responses (429)

§server_errors: u64

Number of server error responses (5xx)

§client_errors: u64

Number of client error responses (4xx, excluding 429)

§last_success: Option<Instant>

Timestamp of the last successful request

§last_rate_limit: Option<Instant>

Timestamp of the last rate limit response

§request_times: Vec<Duration>

Request times for median calculation

§status_codes: HashMap<u16, u64>

Status code counts

§cache_hits: u64

Number of cache hits

§cache_misses: u64

Number of cache misses

Implementations§

Source§

impl HostStats

Source

pub fn record_response(&mut self, status_code: u16, request_time: Duration)

Record a response with status code and request duration

Source

pub fn median_request_time(&self) -> Option<Duration>

Get median request time

Source

pub fn error_rate(&self) -> f64

Get error rate (percentage)

Source

pub fn success_rate(&self) -> f64

Get the current success rate (0.0 to 1.0)

Source

pub fn average_request_time(&self) -> Option<Duration>

Get average request time

Source

pub fn latest_request_time(&self) -> Option<Duration>

Get the most recent request time

Source

pub fn is_currently_rate_limited(&self) -> bool

Check if this host has been experiencing rate limiting recently

Source

pub const fn record_cache_hit(&mut self)

Record a cache hit

Source

pub const fn record_cache_miss(&mut self)

Record a cache miss

Source

pub fn cache_hit_rate(&self) -> f64

Get cache hit rate (0.0 to 1.0)

Source

pub fn summary(&self) -> String

Get human-readable summary of the stats

Trait Implementations§

Source§

impl Clone for HostStats

Source§

fn clone(&self) -> HostStats

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for HostStats

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for HostStats

Source§

fn default() -> HostStats

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

impl Serialize for HostStats

Source§

fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: Serializer,

Serialize this value into the given Serde serializer. 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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

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

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

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

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

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

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
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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