router
A Heroku router log line from a Heroku log drain. Honeybadger recognizes it by proc_id == ‘router’.
Fields
12| Field | Type | Description |
|---|---|---|
event_type | string | |
proc_id | string | Heroku process identifier. Always 'router' for this event. Allowed value: router. |
method | string | HTTP method, e.g. "GET", "POST". |
path | string | Request path. |
host | string | Request host header. |
fwd | string | Forwarded client IP address. |
dyno | string | Dyno that handled the request, e.g. "web.1". |
connect | number | Time in milliseconds to establish the connection. |
service | number | Time in milliseconds the dyno spent processing the request. |
status | integer | HTTP response status code. |
bytes | integer | Number of bytes returned in the response. |
protocol | string | Protocol used, e.g. "https". |
Example
{ "event_type": "logplex", "proc_id": "router", "method": "GET", "path": "/users/123", "host": "www.example.com", "fwd": "203.0.113.42", "dyno": "web.1", "connect": 1, "service": 45, "status": 200, "bytes": 15342, "protocol": "https"}