Using Natchez in IO #959
Unanswered
adamjuhasz
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We have some existing http4s services we would like to add tracing to. These were all written in
IO
though so we can't add theSpan
typeclass to it.What's the best way of using Natchez in the concrete IO world?
Example
We've tried making a TracedIO with
type TracedIO[A] = Kleisli[IO, Span[IO], A]
and lifiting the app but we're not getting the types to match upI assume I'm missing a conceptual link somewhere
Beta Was this translation helpful? Give feedback.
All reactions