Struct gapi_grpc::google::logging::type::HttpRequest[][src]

pub struct HttpRequest {
    pub request_method: String,
    pub request_url: String,
    pub request_size: i64,
    pub status: i32,
    pub response_size: i64,
    pub user_agent: String,
    pub remote_ip: String,
    pub server_ip: String,
    pub referer: String,
    pub latency: Option<Duration>,
    pub cache_lookup: bool,
    pub cache_hit: bool,
    pub cache_validated_with_origin_server: bool,
    pub cache_fill_bytes: i64,
    pub protocol: String,
}

A common proto for logging HTTP requests. Only contains semantics defined by the HTTP specification. Product-specific logging information MUST be defined in a separate message.

Fields

request_method: String

The request method. Examples: "GET", "HEAD", "PUT", "POST".

request_url: String

The scheme (http, https), the host name, the path and the query portion of the URL that was requested. Example: "http://example.com/some/info?color=red".

request_size: i64

The size of the HTTP request message in bytes, including the request headers and the request body.

status: i32

The response code indicating the status of response. Examples: 200, 404.

response_size: i64

The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body.

user_agent: String

The user agent sent by the client. Example: "Mozilla/4.0 (compatible; MSIE 6.0; Windows 98; Q312461; .NET CLR 1.0.3705)".

remote_ip: String

The IP address (IPv4 or IPv6) of the client that issued the HTTP request. This field can include port information. Examples: "192.168.1.1", "10.0.0.1:80", "FE80::0202:B3FF:FE1E:8329".

server_ip: String

The IP address (IPv4 or IPv6) of the origin server that the request was sent to. This field can include port information. Examples: "192.168.1.1", "10.0.0.1:80", "FE80::0202:B3FF:FE1E:8329".

referer: String

The referer URL of the request, as defined in HTTP/1.1 Header Field Definitions.

latency: Option<Duration>

The request processing latency on the server, from the time the request was received until the response was sent.

cache_lookup: bool

Whether or not a cache lookup was attempted.

cache_hit: bool

Whether or not an entity was served from cache (with or without validation).

cache_validated_with_origin_server: bool

Whether or not the response was validated with the origin server before being served from cache. This field is only meaningful if cache_hit is True.

cache_fill_bytes: i64

The number of HTTP response bytes inserted into cache. Set only when a cache fill was attempted.

protocol: String

Protocol used for the request. Examples: “HTTP/1.1”, “HTTP/2”, “websocket”

Trait Implementations

impl Clone for HttpRequest[src]

impl Debug for HttpRequest[src]

impl Default for HttpRequest[src]

impl Message for HttpRequest[src]

impl PartialEq<HttpRequest> for HttpRequest[src]

impl StructuralPartialEq for HttpRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for HttpRequest

impl Send for HttpRequest

impl Sync for HttpRequest

impl Unpin for HttpRequest

impl UnwindSafe for HttpRequest

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]