object Metrics
Client middleware to record metrics for the http4s client.
This middleware will record: - Number of active requests - Time duration to receive the response headers - Time duration to process the whole response body - Time duration of errors, timeouts and other abnormal terminations
This middleware can be extended to support any metrics ecosystem by implementing the org.http4s.metrics.MetricsOps type
- Source
- Metrics.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Metrics
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
apply[F[_]](ops: MetricsOps[F], classifierF: (Request[F]) ⇒ Option[String] = (_: Request[F]) =>
None)(client: Client[F])(implicit F: Sync[F], clock: Clock[F]): Client[F]
Wraps a Client with a middleware capable of recording metrics