Gradle依赖
compile "org.springframework.boot:spring-boot-starter-web:2.0.1.RELEASE"
compile "org.springframework.boot:spring-boot-starter-actuator:2.0.1.RELEASE"
compile "org.springframework.boot:spring-boot-starter-aop:2.0.1.RELEASE"
我的预定任务
@Scheduled(fixedRate = 1000L * 57L)
@Timed("importCustomers")
open fun importCustomers() = importCustomerService.importCustomers()
通过执行器端点(http://xxx:yyy/actuator/metrics/importCustomers)请求作业的指标时,我能够看到调用次数,最长时间和总时间。
有没有办法查看调用函数的时间戳,或者至少是调用的最新时间?
喜欢,最后一次在2018-04-17T17:00:00.000Z。