Skip to content

tesla.request.exception

View Markdown

A Tesla HTTP request raised an exception. By default, Honeybadger stores only the hostname. Enable full_url in insights_config to include the path. If Tesla uses Finch, Honeybadger records the Finch event instead of a second Tesla event.

Source Tesla Category HTTP Fields 7 honeybadger-elixir

Fields

7
FieldTypeDescription
event_typestringAllowed value: tesla.request.exception.
methodstringHTTP method in uppercase, e.g. "GET", "POST".
hoststringDestination hostname.
status_codeintegerHTTP response status code.
urlstringFull request URL. Present when full_url is true.
durationnumberRequest round-trip duration in microseconds.
request_idstringRequest ID from the current EventContext.

Example

{
"event_type": "tesla.request.exception",
"method": "POST",
"host": "api.example.com",
"status_code": 500,
"url": "https://api.example.com/v1/payments",
"duration": 30000,
"request_id": "F8ZBOg1zcBQDqDgAAADx"
}