在春季启动时,通过成功/失败响应来计算API触发次数的最佳方法是什么。
我的想法是在应用程序出现时以及在调用api时使用post构造来启动新线程,然后对每个新的唯一请求使用计数器服务来计算有多少api被触发该特定请求及其中有多少成功或失败。
如果你们有任何新方法,推荐一些新方法。
答案 0 :(得分:3)
如果从头开始,您不必创建,只需使用内置此功能的Spring Boot Actuator即可。只需在项目中添加以下依赖项:
<强>的pom.xml 强>:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
执行器暴露,例如/metrics
端点,在这里您可以找到所有响应的计数器 - 每个计数器都以counter.status.{{status_code}}.{{endpoint}}
开头。
例如,我有一个带/hello
端点的简单演示应用程序。每当我调用此端点度量标准counter.status.200.hello
时,都会增加。当我访问/metrics
端点时,我可以看到类似的内容:
{
"mem": 586013,
"mem.free": 324496,
"processors": 8,
"instance.uptime": 144496,
"uptime": 149950,
"systemload.average": 0.52,
"heap.committed": 522240,
"heap.init": 251904,
"heap.used": 197743,
"heap": 3580928,
"nonheap.committed": 64960,
"nonheap.init": 2496,
"nonheap.used": 63773,
"nonheap": 0,
"threads.peak": 42,
"threads.daemon": 25,
"threads.totalStarted": 54,
"threads": 27,
"classes": 8938,
"classes.loaded": 8938,
"classes.unloaded": 0,
"gc.ps_scavenge.count": 8,
"gc.ps_scavenge.time": 54,
"gc.ps_marksweep.count": 2,
"gc.ps_marksweep.time": 65,
"gauge.response.star-star.favicon.ico": 1,
"counter.status.200.star-star": 2,
"counter.status.304.star-star": 2,
"counter.status.200.metrics.name": 2,
"counter.status.200.star-star.favicon.ico": 5,
"gauge.response.star-star": 3,
"gauge.response.hello": 5,
"gauge.response.metrics.name": 3,
"counter.status.200.hello": 2,
"counter.status.404.metrics.name": 1,
"httpsessions.max": -1,
"httpsessions.active": 0,
"datasource.primary.active": 0,
"datasource.primary.usage": 0
}
我还可以访问单个指标,例如/metrics/counter.status.200.hello
仅返回:
{
"counter.status.200.hello": 2
}
默认情况下/metrics
端点是安全的。对于您的本地开发者,您可以通过添加:
management:
security:
enabled: false
到您的 application.yml 或
management.security.enabled=false
到 application.properties 如果你使用那个。