File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1- # simpleApm
2- It's a simple java agent to monitor every method's execute frequency and time consuming.
1+ # javaagent
2+ It's a simple and elegant java agent to monitor every method's execute frequency and time consuming.
33As a developer,you probably know your code's performance roughly,but you never know it for sure.How many times your code was
4- invoked during a day,how much time do your code take just for one time running.
5- simpleApm is a tool that can do the monitor work for you,it can monitor every method as you want to,and cost almost nothing
4+ invoked during a day,how much cpu time do your code take just for one time running.
5+ This javaagent is a tool that can do the monitor work for you,it can monitor every method as you want to,and cost almost nothing
66to your system's performance,so you can use it not only during testing,but after release.
77
88you can use simpleAgent by config the java options like this:
@@ -16,7 +16,7 @@ the agent.properties look like as follows:
1616 agent.exclude.package=
1717 #the packages you want to monitor,the agent only monitor the packages and subpackages
1818 #that configed in here,multi config separated by semicolon
19- agent.include.package=com.thunisoft
19+ agent.include.package=com.dingjsh
2020 #the log file name,it will add current date automatically
2121 agent.log.file=d\:\\agent.log
2222 #how much seconds per time do the log output
You can’t perform that action at this time.
0 commit comments