Class Debuggee
Represents the debugged application. The application may include one or more replicated processes executing the same code. Each of these processes is attached with a debugger agent, carrying out the debugging commands. Agents attached to the same debuggee identify themselves as such by using exactly the same Debuggee message value when registering.
Implements
Inherited Members
Namespace: Google.Apis.CloudDebugger.v2.Data
Assembly: Google.Apis.CloudDebugger.v2.dll
Syntax
public class Debuggee : IDirectResponseSchema
Properties
AgentVersion
Version ID of the agent. Schema: domain/language-platform/vmajor.minor
(for example
google.com/java-gcp/v1.1
).
Declaration
[JsonProperty("agentVersion")]
public virtual string AgentVersion { get; set; }
Property Value
Type | Description |
---|---|
string |
CanaryMode
Used when setting breakpoint canary for this debuggee.
Declaration
[JsonProperty("canaryMode")]
public virtual string CanaryMode { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExtSourceContexts
References to the locations and revisions of the source code used in the deployed application.
Declaration
[JsonProperty("extSourceContexts")]
public virtual IList<ExtendedSourceContext> ExtSourceContexts { get; set; }
Property Value
Type | Description |
---|---|
IList<ExtendedSourceContext> |
Id
Unique identifier for the debuggee generated by the controller service.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
IsDisabled
If set to true
, indicates that the agent should disable itself and detach from the debuggee.
Declaration
[JsonProperty("isDisabled")]
public virtual bool? IsDisabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IsInactive
If set to true
, indicates that Controller service does not detect any activity from the debuggee agents
and the application is possibly stopped.
Declaration
[JsonProperty("isInactive")]
public virtual bool? IsInactive { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Labels
A set of custom debuggee properties, populated by the agent, to be displayed to the user.
Declaration
[JsonProperty("labels")]
public virtual IDictionary<string, string> Labels { get; set; }
Property Value
Type | Description |
---|---|
IDictionary<string, string> |
Project
Project the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.
Declaration
[JsonProperty("project")]
public virtual string Project { get; set; }
Property Value
Type | Description |
---|---|
string |
SourceContexts
References to the locations and revisions of the source code used in the deployed application.
Declaration
[JsonProperty("sourceContexts")]
public virtual IList<SourceContext> SourceContexts { get; set; }
Property Value
Type | Description |
---|---|
IList<SourceContext> |
Status
Human readable message to be displayed to the user about this debuggee. Absence of this field indicates no status. The message can be either informational or an error status.
Declaration
[JsonProperty("status")]
public virtual StatusMessage Status { get; set; }
Property Value
Type | Description |
---|---|
StatusMessage |
Uniquifier
Uniquifier to further distinguish the application. It is possible that different applications might have identical values in the debuggee message, thus, incorrectly identified as a single application by the Controller service. This field adds salt to further distinguish the application. Agents should consider seeding this field with value that identifies the code, binary, configuration and environment.
Declaration
[JsonProperty("uniquifier")]
public virtual string Uniquifier { get; set; }
Property Value
Type | Description |
---|---|
string |