Skip to content

Java agent for Sidekick open-source live application debugger

License

Notifications You must be signed in to change notification settings

runsidekick/sidekick-agent-java

Repository files navigation

Sidekick Java Agent

Sidekick Licence  Sidekick Discord Channel  Foresight monitoring  Sidekick Sandbox 

Table of Contents
  1. What is Sidekick?
  2. Sidekick Java Agent
  3. Usage
  4. Build the agent
  5. Official Sidekick Agents
  6. Resources
  7. Questions? Problems? Suggestions?
  8. Contact

What is Sidekick?

Sidekick is a live application debugger that lets you troubleshoot your applications while they keep on running.

Add dynamic logs and put non-breaking breakpoints in your running application without the need of stopping & redeploying.

Sidekick Open Source is here to allow self-hosting and make live debugging more accessible. Built for everyone who needs extra information from their running applications.

Sidekick Actions:

Sidekick has two major actions; Tracepoints & Logpoints.

  • A tracepoint is a non-breaking remote breakpoint. In short, it takes a snapshot of the variables when the code hits that line.
  • Logpoints open the way for dynamic(on-demand) logging to Sidekick users. Replacing traditional logging with dynamic logging has the potential to lower stage sizes, costs, and time for log searching while adding the ability to add new logpoints without editing the source code, redeploying, or restarting the application.

Supported runtimes: Java, Python, Node.js

To learn more about Sidekick features and capabilities, see our web page.

(back to top)

Sidekick Java Agent

Sidekick Java agent allows you to inject tracepoints (non-breaking breakpoints) and log points dynamically to capture call stack snapshots (with variables) and add log messages on the fly without code modification, re-build and re-deploy. So it helps you, your team, and your organization to reduce MTTR (Minimum Time to Repair/Resolve).

To achieve this, the Sidekick Java agent has nothing to do with JDWP (Java Debug Wire Protocol), as it doesn't suspend the code execution, but hooks into code execution at the application layer by bytecode instrumentation. Under the hood, Sidekick agent

  • injects its hook call into the specified line at the bytecode level
  • intercepts the code execution just before the specified line
  • captures call stack snapshot (for tracepoint) or prints dynamic log message (for log point)
  • create events to be sent asynchronously
  • and then lets the code execution continue

Here, to keep Sidekick agent overhead at a minimum (sub-millisecond on average), in addition to non-blocking event publishing, we apply many performance improvements like async snapshot taking, async call stack collecting, and fast serialization by reducing redundant memory copies.

The advantage of Sidekick over classical APM solutions is that, Sidekick

  • can debug and trace any location (your code base or 3rd party dependency) in your application, not just the external (DB, API, etc ...) calls like APM solutions
  • has zero overhead when you don't have any tracepoint or log point but APMs have always
  • doesn't produce too much garbage data because it collects data only at the certain points you specified as long as that point (tracepoint/logpoint) is active

Usage

Supported JVMs and Languages

JDK 8+ is supported Java (8+), Kotlin (1.3+) and Scala (2.10+) JVM languages are supported

Download the agent

Download the latest Sidekick agent from this link repo

Agent configuration : https://docs.runsidekick.com/installation/installing-agents/java/configuration#configure-the-agent

Source bundling: https://docs.runsidekick.com/installation/installing-agents/java/source-bundling

Build

Prerequisites
  • Java 8+
  • Maven 3.x
Build command:

mvn clean package

Benchmarks

Official Sidekick Agents

Resources:

Questions? Problems? Suggestions?

To report a bug or request a feature, create a GitHub Issue. Please ensure someone else has not created an issue for the same topic.

(back to top)

Contact

Reach out on the Discord. A fellow community member or Sidekick engineer will be happy to help you out.

(back to top)