Struct gapi_grpc::google::appengine::logging::v1::RequestLog [−][src]
Complete log information about a single HTTP request to an App Engine application.
Fields
app_id: StringApplication that handled this request.
module_id: StringModule of the application that handled this request.
version_id: StringVersion of the application that handled this request.
request_id: StringGlobally unique identifier for a request, which is based on the request start time. Request IDs for requests which started later will compare greater as strings than those for requests which started earlier.
ip: StringOrigin IP address.
start_time: Option<Timestamp>Time when the request started.
end_time: Option<Timestamp>Time when the request finished.
latency: Option<Duration>Latency of the request.
mega_cycles: i64Number of CPU megacycles used to process request.
method: StringRequest method. Example: "GET", "HEAD", "PUT", "POST", "DELETE".
resource: StringContains the path and query portion of the URL that was requested. For
example, if the URL was “http://example.com/app?name=val”, the resource
would be “/app?name=val”. The fragment identifier, which is identified by
the # character, is not included.
http_version: StringHTTP version of request. Example: "HTTP/1.1".
status: i32HTTP response status code. Example: 200, 404.
response_size: i64Size in bytes sent back to client by request.
referrer: StringReferrer URL of request.
user_agent: StringUser agent that made the request.
nickname: StringThe logged-in user who made the request.
Most likely, this is the part of the user’s email before the @ sign. The
field value is the same for different requests from the same user, but
different users can have similar names. This information is also
available to the application via the App Engine Users API.
This field will be populated starting with App Engine 1.9.21.
url_map_entry: StringFile or class that handled the request.
host: StringInternet host and port number of the resource being requested.
cost: f64An indication of the relative cost of serving this request.
task_queue_name: StringQueue name of the request, in the case of an offline request.
task_name: StringTask name of the request, in the case of an offline request.
was_loading_request: boolWhether this was a loading request for the instance.
pending_time: Option<Duration>Time this request spent in the pending request queue.
instance_index: i32If the instance processing this request belongs to a manually scaled module, then this is the 0-based index of the instance. Otherwise, this value is -1.
finished: boolWhether this request is finished or active.
first: boolWhether this is the first RequestLog entry for this request. If an
active request has several RequestLog entries written to Stackdriver
Logging, then this field will be set for one of them.
instance_id: StringAn identifier for the instance that handled the request.
line: Vec<LogLine>A list of log lines emitted by the application while serving this request.
app_engine_release: StringApp Engine release version.
trace_id: StringStackdriver Trace identifier for this request.
trace_sampled: boolIf true, the value in the ‘trace_id’ field was sampled for storage in a trace backend.
source_reference: Vec<SourceReference>Source code for the application that handled this request. There can be more than one source reference per deployed application if source code is distributed among multiple repositories.
Trait Implementations
impl Clone for RequestLog[src]
fn clone(&self) -> RequestLog[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for RequestLog[src]
impl Default for RequestLog[src]
fn default() -> RequestLog[src]
impl Message for RequestLog[src]
fn encode_raw<B>(&self, buf: &mut B) where
B: BufMut, [src]
B: BufMut,
fn merge_field<B>(
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf, [src]
&mut self,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError> where
B: Buf,
fn encoded_len(&self) -> usize[src]
fn clear(&mut self)[src]
pub fn encode<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
B: BufMut,
pub fn encode_length_delimited<B>(&self, buf: &mut B) -> Result<(), EncodeError> where
B: BufMut, [src]
B: BufMut,
pub fn decode<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf, [src]
Self: Default,
B: Buf,
pub fn decode_length_delimited<B>(buf: B) -> Result<Self, DecodeError> where
Self: Default,
B: Buf, [src]
Self: Default,
B: Buf,
pub fn merge<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf, [src]
B: Buf,
pub fn merge_length_delimited<B>(&mut self, buf: B) -> Result<(), DecodeError> where
B: Buf, [src]
B: Buf,
impl PartialEq<RequestLog> for RequestLog[src]
fn eq(&self, other: &RequestLog) -> bool[src]
fn ne(&self, other: &RequestLog) -> bool[src]
impl StructuralPartialEq for RequestLog[src]
Auto Trait Implementations
impl RefUnwindSafe for RequestLog
impl Send for RequestLog
impl Sync for RequestLog
impl Unpin for RequestLog
impl UnwindSafe for RequestLog
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> IntoRequest<T> for T[src]
pub fn into_request(self) -> Request<T>[src]
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>, [src]
V: MultiLane<T>,
impl<T> WithSubscriber for T[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>, [src]
S: Into<Dispatch>,