Class Debuggee (1.0.2)

Debuggee(mapping=None, *, ignore_unknown_fields=False, **kwargs)

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.

Attributes

NameDescription
id str
Unique identifier for the debuggee generated by the controller service.
project str
Project the debuggee is associated with. Use project number or id when registering a Google Cloud Platform project.
uniquifier str
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.
description str
Human readable description of the debuggee. Including a human-readable project name, environment name and version information is recommended.
is_inactive bool
If set to true, indicates that Controller service does not detect any activity from the debuggee agents and the application is possibly stopped.
agent_version str
Version ID of the agent. Schema: domain/language-platform/vmajor.minor (for example google.com/java-gcp/v1.1).
is_disabled bool
If set to true, indicates that the agent should disable itself and detach from the debuggee.
status google.cloud.debugger_v2.types.StatusMessage
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.
source_contexts Sequence[google.cloud.source_context_v1.types.source_context_pb2.SourceContext]
References to the locations and revisions of the source code used in the deployed application.
ext_source_contexts Sequence[google.cloud.source_context_v1.types.source_context_pb2.ExtendedSourceContext]
References to the locations and revisions of the source code used in the deployed application.
labels Sequence[google.cloud.debugger_v2.types.Debuggee.LabelsEntry]
A set of custom debuggee properties, populated by the agent, to be displayed to the user.

Classes

LabelsEntry

LabelsEntry(mapping=None, *, ignore_unknown_fields=False, **kwargs)

The abstract base class for a message.

Parameters
NameDescription
kwargs dict

Keys and values corresponding to the fields of the message.

mapping Union[dict, .Message]

A dictionary or message to be used to determine the values for this message.

ignore_unknown_fields Optional(bool)

If True, do not raise errors for unknown fields. Only applied if mapping is a mapping type or there are keyword parameters.