Skip to content

Agent that publishes JFR events when jdbc prepared statement is executed

Notifications You must be signed in to change notification settings

JakubDziworski/JavaMissionControlJdbcEventPublisherAgent

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Java Mission Control Jdbc JFR Event Publisher Agent

Quick dictionary if you are not familiar with those terms:

  • Java Mission Control - tool for monitoring jvm apps
  • JFR (Java Flight Recording) - module of Java Mission Control that allows you to "record" events and browse them afterwards.
  • Java Agent - It allows you to start or even connect to running jvm and change bytecode at runtime! This allows you to use this extension and start publishing events on already running jvm any time.

Running

Note: Works only with Oracle JRE!

First build it.

mvn clean package

Option 1 - Start agent with the jvm

Just add -javaagent $THIS_REPO_ROOT/agent/target/agent-1.0-SNAPSHOT-jar-with-dependencies.jar to your app's jvm arguments and start it

Option 2 - Attach to the running jvm

mvn clean package
java -classpath agent/target/agent-1.0-SNAPSHOT-jar-with-dependencies.jar:jfr/target/jfr-1.0-SNAPSHOT.jar:$JAVA_HOME/lib/tools.jar com.jakubdziworski.agent.RuntimeAttacher <PROCESS_ID> agent/target/agent-1.0-SNAPSHOT-jar-with-dependencies.jar

Start new fligh recording in jmc. Remember to enable custom event in "Start Recording Settings Wizard"!!

Demo

Demo

About

Agent that publishes JFR events when jdbc prepared statement is executed

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages