Sentry API Requests - why so many?

When I run my app and look at the network tab in the Chrome Dev Tools I see continuous calls to:

https://oXXXXXXX.ingest.sentry.io/api/xxxxxx/envelope/?sentry_key=xxxxxxx&sentry_version=7

They are all POST requests with a payload of something like:

{“sent_at”:“2021-06-07T13:48:25.999Z”,“sdk”:{“name”:“sentry.javascript.browser”,“version”:“6.2.3”}}
{“type”:“session”}
{“sid”:“xxxxx”,“init”:false,“started”:“2021-06-07T13:47:18.888Z”,“timestamp”:“2021-06-07T13:48:25.999Z”,“status”:“exited”,“errors”:0,“duration”:67111,“attrs”:{“release”:“x.x.x”,“environment”:“Staging”}}

What are these calls and why does the app make so many of them?

Ok, I think these might be Sentry breadcrumb calls?

Ok, I realise now it’s the Release Health calls

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.