HTTPRequest
Extends:
The HTTP request event tracks incoming and outgoing HTTP requests to your server.
Constructor Summary
Public Constructor | ||
public |
constructor(body: String, direction: String, headers: Array, host: String, method: String, path: String, port: Number, query_string: String, request_id: String, scheme: String) |
Member Summary
Public Members | ||
public |
body: * |
|
public |
direction: * |
|
public |
headers: * |
|
public |
host: * |
|
public |
method: * |
|
public |
path: * |
|
public |
port: * |
|
public |
query_string: * |
|
public |
request_id: * |
|
public |
scheme: * |
Public Constructors
public constructor(body: String, direction: String, headers: Array, host: String, method: String, path: String, port: Number, query_string: String, request_id: String, scheme: String) source
Params:
Name | Type | Attribute | Description |
body | String |
|
the body of the request |
direction | String |
|
incoming or outgoing |
headers | Array |
|
the headers of the request |
host | String | the server's hostname |
|
method | String |
|
|
path | String |
|
the path of the request |
port | Number |
|
the port of the request |
query_string | String |
|
the query parameters present on the url |
request_id | String |
|
the uuid attached to the request |
scheme | String |
|