pyroscope-java icon indicating copy to clipboard operation
pyroscope-java copied to clipboard

pyroscope java integration

Results 53 pyroscope-java issues
Sort by recently updated
recently updated
newest added

My app is running on Java 17, and when I include the pyroscope java agent it fails to start with only the following logs: ``` 2022-09-03 22:03:39.792 [WARN] PYROSCOPE_SERVER_ADDRESS is...

Right now ProfilingScheduler can only start profiling and can't stop We need to allow ProfilingScheduler to be stopped, and started again. We also need to expose ProfilingScheduler to users somehow.

Right now Profiler is tied to Config at construction time and only able to do one type of operation, determined at construction It would be useful to decouple Profiler and...

Hi, Would be great new feture to filter some events. This is is especially useful in wall-clock mode. async-profiler supports it with -I and -X options. For example: ./profiler.sh -I...

enhancement
integrations

- starting as javaagent - starting with `PyroscopeAgent.start`

I changed the ScopedContext class to avoid error on closing the scoped context on a diferent thread than it was created. I had this error on my project when using...

Add an explicit option to set first profiling interval. This will enable the following: - Differentiate startup profiling. - User control, as currently the continuous scheduler uses a random algorithm....

We are currently integrating the Pyroscope Java agent into our infrastructure, and it works great. However, we have encountered a problem: In cases of a large fleet of pods (1000+)...

I am trying to integrate opentelemetry and pyroscope in my application. Here is my Dockerfile: ``` FROM openjdk:17-slim-bullseye ENV OTEL_SERVICE_NAME=cart-api ENV OTEL_TRACES_EXPORTER=zipkin,otlp ENV OTEL_METRICS_EXPORTER=prometheus ENV OTEL_LOGS_EXPORTER=otlp ENV OTEL_EXPORTER_ZIPKIN_ENDPOINT=http://zipkin:9411/api/v2/spans ENV OTEL_SERVICE_NAME=cartorio-api...