Struct google_clouddebugger2::Debuggee[][src]

pub struct Debuggee {
    pub status: Option<StatusMessage>,
    pub description: Option<String>,
    pub is_disabled: Option<bool>,
    pub labels: Option<HashMap<String, String>>,
    pub uniquifier: Option<String>,
    pub project: Option<String>,
    pub source_contexts: Option<Vec<SourceContext>>,
    pub ext_source_contexts: Option<Vec<ExtendedSourceContext>>,
    pub agent_version: Option<String>,
    pub is_inactive: Option<bool>,
    pub id: Option<String>,
}

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.

This type is not used in any activity, and only used as part of another schema.

Fields

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.

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

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

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

Uniquifier to further distiguish 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 distiguish the application. Agents should consider seeding this field with value that identifies the code, binary, configuration and environment.

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

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

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

NOTE: this field is experimental and can be ignored.

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

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

Unique identifier for the debuggee generated by the controller service.

Trait Implementations

impl Default for Debuggee
[src]

Returns the "default value" for a type. Read more

impl Clone for Debuggee
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Debuggee
[src]

Formats the value using the given formatter. Read more

impl Part for Debuggee
[src]

Auto Trait Implementations

impl Send for Debuggee

impl Sync for Debuggee