Skip to content

router

View Markdown

A Heroku router log line from a Heroku log drain. Honeybadger recognizes it by proc_id == ‘router’.

Source Heroku Router Category Request Fields 12 heroku

Fields

12
FieldTypeDescription
event_typestring
proc_idstringHeroku process identifier. Always 'router' for this event. Allowed value: router.
methodstringHTTP method, e.g. "GET", "POST".
pathstringRequest path.
hoststringRequest host header.
fwdstringForwarded client IP address.
dynostringDyno that handled the request, e.g. "web.1".
connectnumberTime in milliseconds to establish the connection.
servicenumberTime in milliseconds the dyno spent processing the request.
statusintegerHTTP response status code.
bytesintegerNumber of bytes returned in the response.
protocolstringProtocol 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"
}