Java Profiling in Continuous Integration

Are there any Java profiling tools that integrate with CI servers like Jenkins?

I have no idea if such things exist, but what would be great would be some kind of test environment that would produce results, such as YourKit Profiler snapshots. They will be called by the CI server, and the results are saved with the assembly. As a result, you can see a history of performance changes in code blocks to help more holistic performance studies at the system integration level.

+6
source share
1 answer

Take a look at spf4j , I use it for continuous profiling (profiling is always on).

It uses fetching for profiling and can save profile data in ssdump files or generate html reports. (Spf4j has a user interface for rendering ssdump profile files)

+7
source

Source: https://habr.com/ru/post/947287/


All Articles