View Source ExCurl.Response (ex_curl v0.2.1)

A valid response returned by ExCurl.

metrics

Metrics

When the metrics_returned field is set to true, the following metrics will be included:

Link to this section Summary

Link to this section Types

@type t() :: %ExCurl.Response{
  appconnect_time: float(),
  body: nil | String.t(),
  connect_time: float(),
  headers: map(),
  metrics_returned: bool(),
  namelookup_time: float(),
  pretransfer_time: float(),
  starttransfer_time: float(),
  status_code: integer(),
  total_time: float()
}