Show / Hide Table of Contents

Class GoogleDevtoolsRemotebuildbotCommandDurations

CommandDuration contains the various duration metrics tracked when a bot performs a command.

Inheritance
System.Object
GoogleDevtoolsRemotebuildbotCommandDurations
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.RemoteBuildExecution.v1.Data
Assembly: Google.Apis.RemoteBuildExecution.v1.dll
Syntax
public class GoogleDevtoolsRemotebuildbotCommandDurations : IDirectResponseSchema

Properties

CasRelease

The time spent to release the CAS blobs used by the task.

Declaration
[JsonProperty("casRelease")]
public virtual object CasRelease { get; set; }
Property Value
Type Description
System.Object

CmWaitForAssignment

The time spent waiting for Container Manager to assign an asynchronous container for execution.

Declaration
[JsonProperty("cmWaitForAssignment")]
public virtual object CmWaitForAssignment { get; set; }
Property Value
Type Description
System.Object

DockerPrep

The time spent preparing the command to be run in a Docker container (includes pulling the Docker image, if necessary).

Declaration
[JsonProperty("dockerPrep")]
public virtual object DockerPrep { get; set; }
Property Value
Type Description
System.Object

DockerPrepStartTime

The timestamp when docker preparation begins.

Declaration
[JsonProperty("dockerPrepStartTime")]
public virtual object DockerPrepStartTime { get; set; }
Property Value
Type Description
System.Object

Download

The time spent downloading the input files and constructing the working directory.

Declaration
[JsonProperty("download")]
public virtual object Download { get; set; }
Property Value
Type Description
System.Object

DownloadStartTime

The timestamp when downloading the input files begins.

Declaration
[JsonProperty("downloadStartTime")]
public virtual object DownloadStartTime { get; set; }
Property Value
Type Description
System.Object

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ExecStartTime

The timestamp when execution begins.

Declaration
[JsonProperty("execStartTime")]
public virtual object ExecStartTime { get; set; }
Property Value
Type Description
System.Object

Execution

The time spent executing the command (i.e., doing useful work).

Declaration
[JsonProperty("execution")]
public virtual object Execution { get; set; }
Property Value
Type Description
System.Object

IsoPrepDone

The timestamp when preparation is done and bot starts downloading files.

Declaration
[JsonProperty("isoPrepDone")]
public virtual object IsoPrepDone { get; set; }
Property Value
Type Description
System.Object

Overall

The time spent completing the command, in total.

Declaration
[JsonProperty("overall")]
public virtual object Overall { get; set; }
Property Value
Type Description
System.Object

Stdout

The time spent uploading the stdout logs.

Declaration
[JsonProperty("stdout")]
public virtual object Stdout { get; set; }
Property Value
Type Description
System.Object

Upload

The time spent uploading the output files.

Declaration
[JsonProperty("upload")]
public virtual object Upload { get; set; }
Property Value
Type Description
System.Object

UploadStartTime

The timestamp when uploading the output files begins.

Declaration
[JsonProperty("uploadStartTime")]
public virtual object UploadStartTime { get; set; }
Property Value
Type Description
System.Object

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top