Struct google_cloudtasks2_beta3::api::QueueStats[][src]

pub struct QueueStats {
    pub concurrent_dispatches_count: Option<String>,
    pub effective_execution_rate: Option<f64>,
    pub executed_last_minute_count: Option<String>,
    pub oldest_estimated_arrival_time: Option<String>,
    pub tasks_count: Option<String>,
}
Expand description

Statistics for a queue.

This type is not used in any activity, and only used as part of another schema.

Fields

concurrent_dispatches_count: Option<String>

Output only. The number of requests that the queue has dispatched but has not received a reply for yet.

effective_execution_rate: Option<f64>

Output only. The current maximum number of tasks per second executed by the queue. The maximum value of this variable is controlled by the RateLimits of the Queue. However, this value could be less to avoid overloading the endpoints tasks in the queue are targeting.

executed_last_minute_count: Option<String>

Output only. The number of tasks that the queue has dispatched and received a reply for during the last minute. This variable counts both successful and non-successful executions.

oldest_estimated_arrival_time: Option<String>

Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.

tasks_count: Option<String>

Output only. An estimation of the number of tasks in the queue, that is, the tasks in the queue that haven’t been executed, the tasks in the queue which the queue has dispatched but has not yet received a reply for, and the failed tasks that the queue is retrying.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. 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

Performs the conversion.

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

Performs the conversion.

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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