Caudit应用性能跟踪库

联合创作 · 2023-09-28 17:19

Caudit 是一个简单的库用来记录应用程序的性能、健康状态和运行相关的统计信息。它具有两种基本的审核类型:秒表和数量。秒表是你跟踪特定操作所经过的时间的表,数量是你要监视的变量。

示例代码:

//Mapping audit to integer is for performance(string comparison vs integer comparison)
private final static int BASIC_STOPWATCH_ID = Audits.mapAudit("example.basicStopwatch");

public void tryOut(){
    final Stopwatch stopwatch = Audits.getBasicStopwatch(BASIC_STOPWATCH_ID);
    stopwatch.start();
    doSomeWork();
    stopwatch.stop();
}
浏览 9
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报
评论
图片
表情
推荐
点赞
评论
收藏
分享

手机扫一扫分享

编辑 分享
举报