#Spring boot Profiling is not working

2 messages · Page 1 of 1 (latest)

mystic imp
#

Hi, I'm trying to profile my spring boot application that's running in a docker container in a k8s cluster, but I can't figure out why I can't get any profile results to show up in Sentry.

in my application.properties file I do have

sentry.traces-sample-rate=${SENTRY_TRACES_SAMPLE_RATE:0.1}
sentry.profile-session-sample-rate=${SENTRY_PROFILE_SESSION_SAMPLE_RATE:1}
sentry.profile-lifecycle=trace

and in my pom file i do have

<dependency>
            <groupId>io.sentry</groupId>
            <artifactId>sentry-async-profiler</artifactId>
        </dependency>

Do i need to define something special because I'm running in a docker container because I'm running out of ideas and I wanted to use it to debug an api call that runs slow in qa.

indigo lagoon