---
title: finch.request.stop
description: A Finch HTTP request finished. By default, Honeybadger stores only the hostname. Enable full_url in insights_config to include the path.
url: https://docs.honeybadger.io/insights/event-types/elixir/finch.request.stop/
---

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](https://docs.honeybadger.io/lib/elixir/)

## Fields

| Field        | Type    | Description                                                                 |
| ------------ | ------- | --------------------------------------------------------------------------- |
| `event_type` | string  | Allowed value: `finch.request.stop`.                                        |
| `name`       | string  | Finch pool name.                                                            |
| `method`     | string  | HTTP method, e.g. "GET", "POST".                                            |
| `host`       | string  | Destination hostname.                                                       |
| `url`        | string  | Full URL without query params. Present when full\_url is true.              |
| `status`     | integer | HTTP response status code. Present on successful (non-streaming) responses. |
| `streaming`  | boolean | True for streaming requests where no status code is available.              |
| `error`      | string  | Error message if the request failed.                                        |
| `duration`   | number  | Request round-trip duration in microseconds.                                |
| `request_id` | string  | Request ID from the current EventContext.                                   |

## Example

```json
{
  "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"
}
```

---

## Try Honeybadger for FREE

Intelligent logging, error tracking, and Just Enough APM™ in one dev-friendly platform. Find and fix problems before users notice.

[Start free trial](https://app.honeybadger.io/users/sign_up)

[See plans and pricing](https://www.honeybadger.io/plans/)
