signalfx/splunk-otel-ios

Events are very different after update from 0.10.1 to 0.11.2

Opened this issue · 3 comments

After updating from 0.10.1 to 0.11.2 first I noticed that the initialisation of SplunkRUM is very different.
It went from SplunkRum.initialize to SplunkRumBuilder...build(), I hope that I am not missing anything..?
The second thing is that when looking at the options in the version 0.10.1 there was an option to disable showVCInstrumentation and in 0.11.2 I can't see that option anymore.
Finally, our logging is quite broken after this update and most of our events are missing in the dashboard.

Is there anything that we are doing wrong?

Hi @sardzoski
You are correct in that we switched initialization to be a builder style initializer. You can find details on how to use it on our docs page: https://docs.splunk.com/observability/en/gdi/get-data-in/rum/ios/configure-rum-ios-instrumentation.html or in our sample project.

It looks like you're correct in that the showVCInstrumentation option did not carry over to the new builder method. I will include it in the next release. Thank you for catching this!

If you're still having issues with logging, please reach out to Splunk support and we can help debug what is wrong.

showVCInstrumentation was added in this MR #179

Thank you