Skip to content
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

URLSessionInstrumentation blocking calls #254

Open
wolfAle opened this issue Feb 28, 2025 · 0 comments
Open

URLSessionInstrumentation blocking calls #254

wolfAle opened this issue Feb 28, 2025 · 0 comments

Comments

@wolfAle
Copy link

wolfAle commented Feb 28, 2025

Hi,

I've integrated the SDK in my Swift project.

func setupElasticApm() {

        let config = AgentConfigBuilder()
            .withServerUrl(myUrl)
            .withSecretToken(myToken)
            .useConnectionType(.http)
            .build()

        let instrumentationConfig = InstrumentationConfigBuilder()
            .withURLSessionInstrumentation(false) --> this makes a difference
            .build()

        ElasticApmAgent
            .start(with: config, instrumentationConfig)
    }

Almost all is working just fine.
Only issue I'm experiencing si with the URLSessionInstrumentation: it looks like its intercepting the networking requests my app is starting but it is also blocking them and they don't complete.

Some background info:

  • our networking requests are defined using OpenAPI Generator for Swift, version 4.3.1 (I know, old one)
  • the generated library uses Alamofire version 4.9.1 (I know, old one)

I was not able to debug it properly and get to the bottom of the issue but I've got the feeling that when multiple network requests are executed ad the same time some can be cancelled/lost somehow.
I can see calls get started and I never reach the completion block of the request.

It doesn't happen if I add .withURLSessionInstrumentation(false) and it never happened before.

Is there anything you can suggest?

Kind regards,
Alessandro

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant