-
Notifications
You must be signed in to change notification settings - Fork 329
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add kamon-pekko-http #1285
Add kamon-pekko-http #1285
Conversation
@DieBauer Pekko HTTP 1.0.0 should be out within the week. Pekko Connectors Kafka (alpakka-kafka equivalent) should be out this week too - if you are interested in adding support for that too. |
...ttp/src/main/scala-2.13/kamon/instrumentation/akka/http/PekkoHttpServerInstrumentation.scala
Outdated
Show resolved
Hide resolved
...tp/src/main/scala-2.12/kamon/instrumentation/pekko/http/PekkoHttpServerInstrumentation.scala
Outdated
Show resolved
Hide resolved
...ttp/src/main/scala-2.13/kamon/instrumentation/akka/http/PekkoHttpServerInstrumentation.scala
Outdated
Show resolved
Hide resolved
@DieBauer Pekko HTTP 1.0.0 and Pekko Connectors Kafka 1.0.0 are released |
@DieBauer could you please rebase this PR on master now that the pekko instrumentation is merged? thanks! |
Done! |
Thank you very much for all the work here @DieBauer! I'll release this as Kamon Telemetry 2.7 at some point before Sunday since I have one more bit of instrumentation I want to include in that release. Great job! |
Hi everyone, nice job! Is there any update on when is this being released? |
* Add kamon-pekko-http module for Apache Pekko HTTP support * Rework deprecated methods * Remove pekko-http2-support module see apache/pekko-http#52 * Remove Akka 10.1 references * Set pekko-http 1.0.0-RC2 * Use Pekko HTTP release version
Sorry for being such a scala noob, but trying to build the 2.13 version of kamon-pekko, kamon-pekko-http and get [info] loading project definition from /home/acme/dev/external/Kamon/instrumentation/kamon-pekko/project could someone point me in the right direction? |
Since Akka changed its license to BSL, an Apache fork of Akka was made: Apache Pekko (and Apache Pekko Http).
An initial release is released, and the major change is that the namespaces changed from akka. to org.apache.pekko..
This PR adds the first module that copy the behavior of kamon-akka-http.
The changes can be summed up as follows:
All tests are green.
This builds on top of #1264