Google Cloud Debugger v2 API - Class Debuggee (3.2.0)

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

Reference documentation and code samples for the Google Cloud Debugger v2 API 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.

Inheritance

object > Debuggee

Namespace

Google.Cloud.Debugger.V2

Assembly

Google.Cloud.Debugger.V2.dll

Constructors

Debuggee()

public Debuggee()

Debuggee(Debuggee)

public Debuggee(Debuggee other)
Parameter
NameDescription
otherDebuggee

Properties

AgentVersion

public string AgentVersion { get; set; }

Version ID of the agent. Schema: domain/language-platform/vmajor.minor (for example google.com/java-gcp/v1.1).

Property Value
TypeDescription
string

Description

public string Description { get; set; }

Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.

Property Value
TypeDescription
string

ExtSourceContexts

[Obsolete]
public RepeatedField<ExtendedSourceContext> ExtSourceContexts { get; }

References to the locations and revisions of the source code used in the deployed application.

Property Value
TypeDescription
RepeatedFieldExtendedSourceContext

Id

public string Id { get; set; }

Unique identifier for the debuggee generated by the controller service.

Property Value
TypeDescription
string

IsDisabled

public bool IsDisabled { get; set; }

If set to true, indicates that the agent should disable itself and detach from the debuggee.

Property Value
TypeDescription
bool

IsInactive

public bool IsInactive { get; set; }

If set to true, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped.

Property Value
TypeDescription
bool

Labels

public MapField<string, string> Labels { get; }

A set of custom debuggee properties, populated by the agent, to be displayed to the user.

Property Value
TypeDescription
MapFieldstringstring

Project

public string Project { get; set; }

Project the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.

Property Value
TypeDescription
string

SourceContexts

public RepeatedField<SourceContext> SourceContexts { get; }

References to the locations and revisions of the source code used in the deployed application.

Property Value
TypeDescription
RepeatedFieldSourceContext

Status

public StatusMessage Status { get; set; }

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.

Property Value
TypeDescription
StatusMessage

Uniquifier

public string Uniquifier { get; set; }

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.

Property Value
TypeDescription
string