Last active
December 29, 2015 22:09
-
-
Save emag/7734289 to your computer and use it in GitHub Desktop.
WildFly Byteman rule
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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