https://github.com/http4s/http4s-otel4s-middleware
http4s middlewares built on otel4s
https://github.com/http4s/http4s-otel4s-middleware
Last synced: 20 days ago
JSON representation
http4s middlewares built on otel4s
- Host: GitHub
- URL: https://github.com/http4s/http4s-otel4s-middleware
- Owner: http4s
- License: apache-2.0
- Created: 2023-11-16T20:53:53.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-06-25T20:30:30.000Z (8 months ago)
- Last Synced: 2025-06-25T21:04:41.035Z (8 months ago)
- Language: Scala
- Size: 449 KB
- Stars: 23
- Watchers: 7
- Forks: 10
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# http4s-otel4s-middleware
## Quick Start
To use http4s-otel4s-middleware in an existing SBT project with Scala 2.13 or a
later version, add one or more of the following dependencies to your `build.sbt`
depending on your needs:
```scala
libraryDependencies ++= Seq(
"org.http4s" %% "http4s-otel4s-middleware-core" % "",
"org.http4s" %% "http4s-otel4s-middleware-metrics" % "",
"org.http4s" %% "http4s-otel4s-middleware-trace-core" % "",
"org.http4s" %% "http4s-otel4s-middleware-trace-client" % "",
"org.http4s" %% "http4s-otel4s-middleware-trace-server" % "",
)
```