Struct gapi_grpc::google::devtools::clouddebugger::v2::Debuggee[][src]

pub struct Debuggee {
    pub id: String,
    pub project: String,
    pub uniquifier: String,
    pub description: String,
    pub is_inactive: bool,
    pub agent_version: String,
    pub is_disabled: bool,
    pub status: Option<StatusMessage>,
    pub source_contexts: Vec<SourceContext>,
    pub ext_source_contexts: Vec<ExtendedSourceContext>,
    pub labels: HashMap<String, 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.

Fields

id: String

Unique identifier for the debuggee generated by the controller service.

project: String

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

uniquifier: String

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: String

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: String

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: Option<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: Vec<SourceContext>

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

ext_source_contexts: Vec<ExtendedSourceContext>

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

labels: HashMap<String, String>

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

Trait Implementations

impl Clone for Debuggee[src]

impl Debug for Debuggee[src]

impl Default for Debuggee[src]

impl Message for Debuggee[src]

impl PartialEq<Debuggee> for Debuggee[src]

impl StructuralPartialEq for Debuggee[src]

Auto Trait Implementations

impl RefUnwindSafe for Debuggee

impl Send for Debuggee

impl Sync for Debuggee

impl Unpin for Debuggee

impl UnwindSafe for Debuggee

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]