Lauri Tulmin
Lauri Tulmin
I'd start by figuring out how to attach the agent and verifying that the agent works at all. https://helpx.adobe.com/coldfusion/installing/installing-the-server-configuration.html indicates that it might be using tomcat, if that is so...
> It does work, I just want better routes and some better tracing First you need to figure out what would be an appropriate route for the framework at hand...
@garethedwards-tass I'd start by commenting out all the instrumentation code you have. Firstly start with an advice that prints a line or stack trace when the method is called that...
@ghedwards I doubt that we'll be able to help you much at the SIG meeting. An alternative approach you could consider is setting up something that would allow as easily...
Feel free to provide instructions for whichever is easier.
Firstly in https://github.com/cfmleditor/awesome-cf-compose/blob/5c9445635f5374c23ed109420a0dbb6292546140/cf-2021-with-otel/agent/config.properties#L1 you are pointing to `cfmleditor-cfmlpage-instrumentation-1.0-all.jar` but the extension jar is really named `cfmleditor-cfmlpage-instrumentation-1.0.jar` (the `-all` file in the same extension shades some additional jars into the extension...
> After my debugging, I found that it was successfully set to threadlocal and then overwritten by other contexts. You can't really modify the context in a span processor because...
> Is there any problem with this? @crossoverJie the obvious issue with your code are that context is propagated only once. For example if you make two http requests to...
You could extract the context from the original context propagation header. ```java Context context = openTelemetry.getPropagators().getTextMapPropagator().extract( Context.root(), record, new TextMapGetter
@bnigh thanks now I understand that the ask is to add the consumer span (not the producer) info into the header. If I understand correctly opentracing seems to overwrite the...