Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,18 @@ every request to an InfluxDB backend exposing UDP.

## Exported Fields (per request)

| Metric | Type | Description |
|-----------------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------|
| method | string | The HTTP request method that has been given as a reply to the caller |
| status | integer | The HTTP status code of the reply from the server (refer to [RFC 7231](https://tools.ietf.org/html/rfc7231#section-6.1) for more details) |
| bytes_sent | integer | The number of bytes sent to a client body + header |
| body_bytes_sent | integer | The number of bytes sent to a client only for body |
| header_bytes_sent | integer | The number of bytes sent to a client for header and body |
| request_length | integer | Request length (including request line, header, and request body) |
| uri | string | The called uri (e.g: /index.html) |
| extension | string | The extension of the served file (e.g: js, html, php, png) |
| content_type | string | The content type of the response (e.g: text/html) |
| Metric | Type | Description |
|-----------------------|---------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| method | string | The HTTP request method that has been given as a reply to the caller |
| status | integer | The HTTP status code of the reply from the server (refer to [RFC 7231](https://tools.ietf.org/html/rfc7231#section-6.1) for more details) |
| bytes_sent | integer | The number of bytes sent to a client body + header |
| body_bytes_sent | integer | The number of bytes sent to a client only for body |
| header_bytes_sent | integer | The number of bytes sent to a client for header and body |
| request_length | integer | Request length (including request line, header, and request body) |
| uri | string | The called uri (e.g: /index.html) |
| extension | string | The extension of the served file (e.g: js, html, php, png) |
| content_type | string | The content type of the response (e.g: text/html) |
| request_time | string | Request processing time in seconds with a milliseconds resolution |


## Installation
Expand Down