Class QueueStats
Statistics for a queue.
Implements
Inherited Members
Namespace: Google.Apis.CloudTasks.v2beta2.Data
Assembly: Google.Apis.CloudTasks.v2beta2.dll
Syntax
public class QueueStats : IDirectResponseSchema
Properties
ConcurrentDispatchesCount
Output only. The number of requests that the queue has dispatched but has not received a reply for yet.
Declaration
[JsonProperty("concurrentDispatchesCount")]
public virtual long? ConcurrentDispatchesCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EffectiveExecutionRate
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.
Declaration
[JsonProperty("effectiveExecutionRate")]
public virtual double? EffectiveExecutionRate { get; set; }
Property Value
Type | Description |
---|---|
double? |
ExecutedLastMinuteCount
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.
Declaration
[JsonProperty("executedLastMinuteCount")]
public virtual long? ExecutedLastMinuteCount { get; set; }
Property Value
Type | Description |
---|---|
long? |
OldestEstimatedArrivalTime
object representation of OldestEstimatedArrivalTimeRaw.
Declaration
[JsonIgnore]
[Obsolete("This property is obsolete and may behave unexpectedly; please use OldestEstimatedArrivalTimeDateTimeOffset instead.")]
public virtual object OldestEstimatedArrivalTime { get; set; }
Property Value
Type | Description |
---|---|
object |
OldestEstimatedArrivalTimeDateTimeOffset
DateTimeOffset representation of OldestEstimatedArrivalTimeRaw.
Declaration
[JsonIgnore]
public virtual DateTimeOffset? OldestEstimatedArrivalTimeDateTimeOffset { get; set; }
Property Value
Type | Description |
---|---|
DateTimeOffset? |
OldestEstimatedArrivalTimeRaw
Output only. An estimation of the nearest time in the future where a task in the queue is scheduled to be executed.
Declaration
[JsonProperty("oldestEstimatedArrivalTime")]
public virtual string OldestEstimatedArrivalTimeRaw { get; set; }
Property Value
Type | Description |
---|---|
string |
TasksCount
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.
Declaration
[JsonProperty("tasksCount")]
public virtual long? TasksCount { get; set; }
Property Value
Type | Description |
---|---|
long? |