Timber v1.1.16 Timber.Events.HTTPClientResponseEvent

The HTTPClientResponseEvent tracks responses for outgoing HTTP requests. This gives you structured insight into communication with external services.

See Timber.Events.HTTPClientRequestEvent for examples on track the entire HTTP request lifecycle.

Summary

Functions

Message to be used when logging

Builds a new struct taking care to

Convenience methods for creating an event and getting the message at the same time

Types

t()
t() :: %Timber.Events.HTTPClientResponseEvent{body: String.t | nil, headers: map | nil, request_id: String.t | nil, service_name: String.t | nil, status: pos_integer, time_ms: float}

Functions

message(h_t_t_p_client_response_event)
message(t) :: IO.chardata

Message to be used when logging.

new(opts)
new(Keyword.t) :: t

Builds a new struct taking care to:

  • Truncate the body if it is too large.
  • Normalize header values so they are consistent.
  • Removes “” or nil values.
new_with_message(opts)
new_with_message(Keyword.t) :: {t, IO.chardata}

Convenience methods for creating an event and getting the message at the same time.