Files
zipline/zipline-profiler/README.md
2023-05-24 18:14:48 -07:00

499 B

Zipline Profiler

To better understand how CPU is used in a Zipline program, use the sampling profiler. It writes data in HPROF format that is readable by YourKit.

Note that this profiler only observes Kotlin/JS.

zipline.quickJs.startCpuSampling(fileSystem, "zipline.hprof".toPath()).use {
  // ...use Zipline...
}