开发者

Get application uptime

I've written an application in java and I want to add a feature to report the uptime of the application. Is there a Class/method in the JVM that can do this?

Should I save the timesta开发者_StackOverflow中文版mp when application starts, then calculate the difference with the current uptime in the moment of the request?

What's a better way to retrieve application uptime in Java?


You can use RuntimeMXBean.getUptime()

RuntimeMXBean rb = ManagementFactory.getRuntimeMXBean();
long uptime = rb.getUptime();


The result is in milliseconds:

RuntimeMXBean mxBean = ManagementFactory.getRuntimeMXBean();
System.out.println(mxBean.getUptime());

See: ManagementFactory.getRuntimeMXBean() javadoc.


It is just like Heartbeat application. IN which You have write small application which communicate to your java application. Whenever You application start you have to store the time with date in file/database. Monitor application will check the application running or not. The monitor application also take difference of end time and start time sand display the application time.


The solution I know is to use System.currentTimeMillis() as it's described here and here. There also was similar question

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜