Skip to content

finch.request.stop

View Markdown

A Finch HTTP request finished. By default, Honeybadger stores only the hostname. Enable full_url in insights_config to include the path.

Source Finch Category HTTP Fields 10 honeybadger-elixir

Fields

10
FieldTypeDescription
event_typestringAllowed value: finch.request.stop.
namestringFinch pool name.
methodstringHTTP method, e.g. "GET", "POST".
hoststringDestination hostname.
urlstringFull URL without query params. Present when full_url is true.
statusintegerHTTP response status code. Present on successful (non-streaming) responses.
streamingbooleanTrue for streaming requests where no status code is available.
errorstringError message if the request failed.
durationnumberRequest round-trip duration in microseconds.
request_idstringRequest ID from the current EventContext.

Example

{
"event_type": "finch.request.stop",
"name": "Elixir.MyApp.Finch",
"method": "GET",
"host": "api.example.com",
"url": "https://api.example.com/v1/users",
"status": 200,
"streaming": false,
"duration": 85000,
"request_id": "F8ZBOg1zcBQDqDgAAADx"
}