pyroscope-java
pyroscope-java copied to clipboard
pyroscope java integration
After introducing dependencies, related APIs cannot be introduced. Maven is normal. ` implementation 'io.pyroscope:agent:0.14.0' `
Currently we do `start` `stop` `dump` every 15 seconds. It make sense to do `start` once and then never `stop` and only do `dump` every 15 seconds We may need...
Async profiler crashes with JDK23. ``` # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007f2f1145f738, pid=1, tid=7 # # JRE...
https://jenkins.pyroscope.io/job/release/job/release-java/55/console ``` Could not PUT 'https://s01.oss.sonatype.org/service/local/staging/deployByRepositoryId/iopyroscope-1044/io/pyroscope/agent/0.14.1/agent-0.14.1.jar'. Received status code 401 from server: Content access is protected by token ```
## Problem When using the `authToken` for Grafana Cloud, users encounter a confusing error message: ``` [ERROR] upload profile: failed to upload. server responded with statusCode: '401' and body: '{"status":"error","error":"authentication...
```Docker FROM registry.access.redhat.com/jboss-eap-7/eap71-openshift COPY HelloWorld.war $JBOSS_HOME/standalone/deployments/ USER root RUN chown jboss:jboss $JBOSS_HOME/standalone/deployments/HelloWorld.war RUN mkdir -p /app/grafana-alloy/ && \ curl -L -o /app/grafana-alloy/pyroscope.jar \ https://github.com/grafana/pyroscope-java/releases/download/v0.14.0/pyroscope.jar RUN chown -R jboss:jboss /app/grafana-alloy/ USER...
https://github.com/grafana/pyroscope-java/issues/70 . - Instead of assertion error, degrade the labels functionality in case refcounting issue detected. Some labels or labelsets may be missing in the resulting profile.
I suggest to officially support sampling, remove experimental tags, and merge the 2 classes: [ContinuousProfilingScheduler](https://github.com/grafana/pyroscope-java/blob/main/agent/src/main/java/io/pyroscope/javaagent/impl/ContinuousProfilingScheduler.java) and [SamplingProfilingScheduler](https://github.com/grafana/pyroscope-java/blob/main/agent/src/main/java/io/pyroscope/javaagent/impl/SamplingProfilingScheduler.java). Let me know if it makes sense to you and should I send...
#### Describe the bug Hi, I'm sending profiles from a ARM64 based java service to a Pyroscope distributor. My Java agent config ``` public class PyroscopeProfiler { protected final FlagsConfig...
[JEP 349: JFR Event Streaming](https://openjdk.org/jeps/349) has been around for some time. Should be there a support for JFR event streaming? Consideration regarding performance, the article [A Closer Look at JFR...