public sealed class Debuggee : IMessage<Debuggee>, IEquatable<Debuggee>, IDeepCloneable<Debuggee>, IBufferMessage, IMessage
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
IMessage<Debuggee>, IEquatable<Debuggee>, IDeepCloneable<Debuggee>, IBufferMessage, IMessageNamespace
Google.Cloud.Debugger.V2Assembly
Google.Cloud.Debugger.V2.dll
Constructors
Debuggee()
public Debuggee()
Debuggee(Debuggee)
public Debuggee(Debuggee other)
Parameter | |
---|---|
Name | Description |
other | Debuggee |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
RepeatedField<ExtendedSourceContext> |
Id
public string Id { get; set; }
Unique identifier for the debuggee generated by the controller service.
Property Value | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
Boolean |
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 | |
---|---|
Type | Description |
Boolean |
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 | |
---|---|
Type | Description |
MapField<String, String> |
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 | |
---|---|
Type | Description |
String |
SourceContexts
public RepeatedField<SourceContext> SourceContexts { get; }
References to the locations and revisions of the source code used in the deployed application.
Property Value | |
---|---|
Type | Description |
RepeatedField<SourceContext> |
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 | |
---|---|
Type | Description |
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 | |
---|---|
Type | Description |
String |