Struct google_api_proto::google::devtools::clouddebugger::v2::Debuggee
source · 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: BTreeMap<String, String>,
}
Expand description
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: BTreeMap<String, String>
A set of custom debuggee properties, populated by the agent, to be displayed to the user.
Trait Implementations§
source§impl Message for Debuggee
impl Message for Debuggee
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for Debuggee
impl PartialEq for Debuggee
impl StructuralPartialEq for Debuggee
Auto Trait Implementations§
impl Freeze for Debuggee
impl RefUnwindSafe for Debuggee
impl Send for Debuggee
impl Sync for Debuggee
impl Unpin for Debuggee
impl UnwindSafe for Debuggee
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request