Skip to content

Instantly share code, notes, and snippets.

@emag
Last active December 29, 2015 22:09
Show Gist options
  • Save emag/7734289 to your computer and use it in GitHub Desktop.
Save emag/7734289 to your computer and use it in GitHub Desktop.
WildFly Byteman rule
RULE WILDFLY_STARTED
CLASS org.jboss.as.server.BootstrapListener
METHOD done
AT EXIT
IF TRUE
DO traceln("WildFly started with Byteman!")
ENDRULE
RULE WILDFLY_STOPPED
CLASS org.jboss.as.server.ApplicationServerService
METHOD stop
AT EXIT
IF TRUE
DO traceln("WildFly stopped with Byteman!")
ENDRULE
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment