pyroscope-java
pyroscope-java copied to clipboard
pyroscope java integration
I use 0.12.0 agent upload JFR data to my backend. ``` io.pyroscope agent 0.12.0 ``` Upload code: ``` Config profileConfig = new Config.Builder() .setFormat(Format.JFR) .setLogLevel(Logger.Level.INFO) .setProfilingEvent(EventType.ITIMER) .setProfilingAlloc("0") .setProfilingInterval(Duration.ofMillis(10)) .setUploadInterval(Duration.ofSeconds(5)) .build();...
Given that JFR provides inbuilt support for collecting JVM profiling metrics with very little overhead and being able to start stop remotely if property setup is made, Having JFR as...
pyroscope-java currently uses a custom logger implementation. I'd like to propose the usage of a dedicated logging framework like SLF4J. What do you think?
### Our scenario Hello. We are using docker as the underlying technology to deploy apps and the observability stack. For all the logs we decide to use JSON format that...
https://github.com/grafana/pyroscope-java/pull/139 added some integration tests running as java agent we should have tests running sdk from java code + using labels
This change adds support for JFR recordings, it allows to run agents on platforms that don't support async profiler (like Windows). We have introduced ProfilerDelegate abstraction, allowing us to use...
I'm using Spring Boot app and I was hoping I could utilize the [CRaC](https://docs.azul.com/core/crac/crac-introduction) project. My app uses [this](https://github.com/grafana/pyroscope-java) javaagent to send profiling data to server. In order for CRaC...
Hey folks! We've been running Pyroscope v0.12.2 within Trino, and after a recent upgrade to JVM 21 we started getting SIGSEGV errors. Errors look like: ``` # # A fatal...
It seems to be possible to get both since async profiler v3. https://github.com/async-profiler/async-profiler/issues/740 How about also supporting pyroscope?
As mentioned in https://github.com/async-profiler/async-profiler#community-supported-builds there is a community supported windows version available for the async profiler. Maybe we can make windows a first class citizen and also support it in...