I am trying to instrument a Java Spring Boot application for OpenTelemetry. I am following the instructions from here: Instrument your Java application for Splunk Observability Cloud — Splunk Observability Cloud documentation But when I start the application, I get this error: ``` java -javaagent:./splunk-otel-javaagent.jar -jar my-app/target/my-app-0.0.1-SNAPSHOT.jar Unexpected error (103) returned by AddToSystemClassLoaderSearch Unable to add ./splunk-otel-javaagent.jar to system class path - the system class loader does not define the appendToClassPathForInstrumentation method or the method failed FATAL ERROR in native method: processing of -javaagent failed, appending to system class path failed ``` From my `mvn -v`: ``` Java version: 21.0.2, vendor: Oracle Corporation, runtime: C:\Users\****\apps\openjdk21\current Default locale: en_US, platform encoding: UTF-8 OS name: "windows 10", version: "10.0", arch: "amd64", family: "windows" ``` How do I correctly start the application with the javaagent?
... View more