Sasha Goldshtein — Fast and Safe Production Monitoring of JVM Applications with BPF Magic

All of us have seen these evasive performance issues or production bugs in the field, which standard monitoring tools don’t see or catch. BPF is a Linux kernel technology that enables fast, safe, dynamic tracing of a running system without any preparation or instrumentation in advance. The JVM itself has a myriad of insertion points for tracing garbage collections, object allocations, JNI calls, and even method calls with extended probes. When the JVM tracepoints don’t cut it, the Linux kernel and libraries
Back to Top