Class: Google::Apis::LoggingV2beta1::HttpRequest
- Inherits:
-
Object
- Object
- Google::Apis::LoggingV2beta1::HttpRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/logging_v2beta1/classes.rb,
generated/google/apis/logging_v2beta1/representations.rb,
generated/google/apis/logging_v2beta1/representations.rb
Overview
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.
Instance Attribute Summary collapse
-
#cache_fill_bytes ⇒ String
The number of HTTP response bytes inserted into cache.
-
#cache_hit ⇒ Boolean
(also: #cache_hit?)
Whether or not an entity was served from cache (with or without validation).
-
#cache_lookup ⇒ Boolean
(also: #cache_lookup?)
Whether or not a cache lookup was attempted.
-
#cache_validated_with_origin_server ⇒ Boolean
(also: #cache_validated_with_origin_server?)
Whether or not the response was validated with the origin server before being served from cache.
-
#latency ⇒ String
The request processing latency on the server, from the time the request was received until the response was sent.
-
#referer ⇒ String
The referer URL of the request, as defined in HTTP/1.1 Header Field Definitions.
-
#remote_ip ⇒ String
The IP address (IPv4 or IPv6) of the client that issued the HTTP request.
-
#request_method ⇒ String
The request method.
-
#request_size ⇒ String
The size of the HTTP request message in bytes, including the request headers and the request body.
-
#request_url ⇒ String
The scheme (http, https), the host name, the path and the query portion of the URL that was requested.
-
#response_size ⇒ String
The size of the HTTP response message sent back to the client, in bytes, including the response headers and the response body.
-
#server_ip ⇒ String
The IP address (IPv4 or IPv6) of the origin server that the request was sent to.
-
#status ⇒ Fixnum
The response code indicating the status of response.
-
#user_agent ⇒ String
The user agent sent by the client.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HttpRequest
constructor
A new instance of HttpRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ HttpRequest
Returns a new instance of HttpRequest.
841 842 843 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 841 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cache_fill_bytes ⇒ String
The number of HTTP response bytes inserted into cache. Set only when a
cache fill was attempted.
Corresponds to the JSON property cacheFillBytes
810 811 812 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 810 def cache_fill_bytes @cache_fill_bytes end |
#cache_hit ⇒ Boolean Also known as: cache_hit?
Whether or not an entity was served from cache
(with or without validation).
Corresponds to the JSON property cacheHit
790 791 792 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 790 def cache_hit @cache_hit end |
#cache_lookup ⇒ Boolean Also known as: cache_lookup?
Whether or not a cache lookup was attempted.
Corresponds to the JSON property cacheLookup
756 757 758 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 756 def cache_lookup @cache_lookup end |
#cache_validated_with_origin_server ⇒ Boolean Also known as: cache_validated_with_origin_server?
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.
Corresponds to the JSON property cacheValidatedWithOriginServer
776 777 778 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 776 def cache_validated_with_origin_server @cache_validated_with_origin_server end |
#latency ⇒ String
The request processing latency on the server, from the time the request was
received until the response was sent.
Corresponds to the JSON property latency
804 805 806 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 804 def latency @latency end |
#referer ⇒ String
The referer URL of the request, as defined in
HTTP/1.1 Header Field Definitions.
Corresponds to the JSON property referer
784 785 786 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 784 def referer @referer end |
#remote_ip ⇒ String
The IP address (IPv4 or IPv6) of the client that issued the HTTP
request. Examples: "192.168.1.1"
, "FE80::0202:B3FF:FE1E:8329"
.
Corresponds to the JSON property remoteIp
821 822 823 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 821 def remote_ip @remote_ip end |
#request_method ⇒ String
The request method. Examples: "GET"
, "HEAD"
, "PUT"
, "POST"
.
Corresponds to the JSON property requestMethod
815 816 817 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 815 def request_method @request_method end |
#request_size ⇒ String
The size of the HTTP request message in bytes, including the request
headers and the request body.
Corresponds to the JSON property requestSize
839 840 841 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 839 def request_size @request_size end |
#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"
.
Corresponds to the JSON property requestUrl
798 799 800 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 798 def request_url @request_url end |
#response_size ⇒ String
The size of the HTTP response message sent back to the client, in bytes,
including the response headers and the response body.
Corresponds to the JSON property responseSize
763 764 765 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 763 def response_size @response_size end |
#server_ip ⇒ String
The IP address (IPv4 or IPv6) of the origin server that the request was
sent to.
Corresponds to the JSON property serverIp
827 828 829 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 827 def server_ip @server_ip end |
#status ⇒ Fixnum
The response code indicating the status of response.
Examples: 200, 404.
Corresponds to the JSON property status
769 770 771 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 769 def status @status end |
#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)"
.
Corresponds to the JSON property userAgent
833 834 835 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 833 def user_agent @user_agent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 |
# File 'generated/google/apis/logging_v2beta1/classes.rb', line 846 def update!(**args) @cache_lookup = args[:cache_lookup] if args.key?(:cache_lookup) @response_size = args[:response_size] if args.key?(:response_size) @status = args[:status] if args.key?(:status) @cache_validated_with_origin_server = args[:cache_validated_with_origin_server] if args.key?(:cache_validated_with_origin_server) @referer = args[:referer] if args.key?(:referer) @cache_hit = args[:cache_hit] if args.key?(:cache_hit) @request_url = args[:request_url] if args.key?(:request_url) @latency = args[:latency] if args.key?(:latency) @cache_fill_bytes = args[:cache_fill_bytes] if args.key?(:cache_fill_bytes) @request_method = args[:request_method] if args.key?(:request_method) @remote_ip = args[:remote_ip] if args.key?(:remote_ip) @server_ip = args[:server_ip] if args.key?(:server_ip) @user_agent = args[:user_agent] if args.key?(:user_agent) @request_size = args[:request_size] if args.key?(:request_size) end |