文件名称:Java程序监控APIJavaSimon.zip
文件大小:773KB
文件格式:ZIP
更新时间:2022-08-05 14:46:48
开源项目
Java Simon 是一个简单的监控 API ,可用于监控 Java 程序中的执行情况,监控代码直接植入应用程序中。例如下面的代码:// get us some stopwatch SimonStopwatch stopwatch = SimonManager.getStopwatch("org.javasimon.examples.HelloWorld-stopwatch");Split split = stopwatch.start(); // start the stopwatchSystem.out.println("Hello world, " stopwatch); // print itsplit.stop(); // stop itSystem.out.println("Result: " stopwatch); // here we print our stopwatch again输入结果:Hello world, Simon Stopwatch: [org.javasimon.examples.HelloWorld-stopwatch INHERIT] total 0 ns, counter 0, max 0 ns, min undefResult: Simon Stopwatch: [org.javasimon.examples.HelloWorld-stopwatch INHERIT] total 59.2 ms, counter 1, max 59.2 ms, min 59.2 ms 标签:JavaSimon