You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
msg | The actual message string passed to the logger. | string | This is a log message
@@ -192,19 +193,20 @@ logger | The logger name that emits the log message.
192
193
| string | requests-logger
193
194
194
195
- request logs:
196
+
195
197
Field | Description | Format | Example
196
198
--- | --- | --- | ---
197
-
request | request path that has been processed. | string | /get/api/v2
199
+
request | request path that has been processed. | string | /get/api/v2
198
200
request_received_at | The date when an incoming request was received by the producer.| ISO 8601 YYYY-MM-DDTHH:MM:SS.milliZ The precision is in milliseconds. The timezone is UTC. | 2015-01-24 14:06:05.071Z
199
201
response_sent_at | The date when the response to an incoming request was sent to the consumer. | ditto | 2015-01-24 14:06:05.071Z
200
202
response_time_ms | How many milliseconds it took the producer to prepare the response. | float | 43.476
201
-
protocol | Which protocol was used to issue a request to a producer. In most cases, this will be HTTP (including a version specifier), but for outgoing requests reported by a producer it may contain other values. E.g. a database call via JDBC may report, e.g. "JDBC/1.2" | string | HTTP/1.1
203
+
protocol | Which protocol was used to issue a request to a producer. In most cases, this will be HTTP (including a version specifier), but for outgoing requests reported by a producer, it may contain other values. E.g. a database call via JDBC may report, e.g. "JDBC/1.2" | string | HTTP/1.1
202
204
method | The corresponding protocol method. | string | GET
203
205
remote_ip | IP address of the consumer (might be a proxy, might be the actual client) | string | 192.168.0.1
204
206
remote_host | host name of the consumer (might be a proxy, might be the actual client) | string | my.happy.host
205
207
remote_port | Which TCP port is used by the consumer to establish a connection to the remote producer. | string | 1234
206
208
remote_user | The username associated with the request | string | user_name
207
-
request_size_b | The size in bytes of the request entity or "body" (e.g., in case of POST requests). | long | 1234
209
+
request_size_b | The size in bytes of the requesting entity or "body" (e.g., in case of POST requests). | long | 1234
208
210
response_status | The status code of the response. | long | 200
209
211
response_content_type | The MIME type associated with the entity of the response if available/specified | long | application/json
210
212
referer | For HTTP requests, identifies the address of the webpage (i.e. the URI or IRI) that linked to the resource being requested. | string | /index.html
0 commit comments