Google Cloud Tasks v2beta3 API - Class QueueStats (3.0.0-beta05)

public sealed class QueueStats : IMessage<QueueStats>, IEquatable<QueueStats>, IDeepCloneable<QueueStats>, IBufferMessage, IMessage

Reference documentation and code samples for the Google Cloud Tasks v2beta3 API class QueueStats.

Statistics for a queue.

Inheritance

object > QueueStats

Namespace

Google.Cloud.Tasks.V2Beta3

Assembly

Google.Cloud.Tasks.V2Beta3.dll

Constructors

QueueStats()

public QueueStats()

QueueStats(QueueStats)

public QueueStats(QueueStats other)
Parameter
NameDescription
otherQueueStats

Properties

ConcurrentDispatchesCount

public long ConcurrentDispatchesCount { get; set; }

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

Property Value
TypeDescription
long

EffectiveExecutionRate

public double EffectiveExecutionRate { get; set; }

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.

Property Value
TypeDescription
double

ExecutedLastMinuteCount

public long ExecutedLastMinuteCount { get; set; }

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.

Property Value
TypeDescription
long

OldestEstimatedArrivalTime

public Timestamp OldestEstimatedArrivalTime { get; set; }

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

Property Value
TypeDescription
Timestamp

TasksCount

public long TasksCount { get; set; }

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.

Property Value
TypeDescription
long