Hello! I’m trying to manually connect spans; I’m trying to connect different integrant systems. Here is my failing approach:
I create the parent span with span/with-span! then I take the context with context/current which I pass as an argument ctx to a multi-method that creates the child span with span/with-span!where I set :parent ctx and :links [[ctx]]
I must be getting something wrong because they remain unconnected. Do I need to try bound context? I don’t use any http://clojure.async in my code nor does integrant.
Referring to a previous answer, here is a https://clojurians.slack.com/archives/C034UN5273N/p1722855379935119?thread_ts=1722851375.240269&cid=C034UN5273N. Note that :parent is explicitly set to nil, to override the default.
thanks! got that sorted