作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想实现一个千分尺,以监控我的数据库中的记录量。所以我用 spring-boot-starter-aop
创建了一个方面这是在我的服务方法被调用后执行的。
方面:
@Slf4j
@Aspect
@Configuration
public class ContactAmountAspect {
@Autowired
ContactRepository contactRepository;
@Autowired
MeterRegistry registry;
@AfterReturning(value = "execution(* mypackage.ContactService.*(..))")
public void monitorContactAmount() {
Gauge
.builder("contacts.amount", contactRepository.findAll(), List::size)
.register(registry);
log.info("Amount of contacts in database: {}", contactRepository.findAll().size());
}
}
/prometheus
端点我只看到应用程序启动后第一次调用的联系人数量。
log.info
打印出新的触点数量,但我的仪表什么也不做。
1. App Startup (let's say with 1 contact in DB)
2. Call Rest Endpoint "getAllContacts"
3. My AOP method starts
4. The gauge monitors contact amount of 1
5. the logger logs contact amount of 1
6. Call Rest Endpoint "postOneContact"
7. My AOP method starts
8. The gauge does nothing or monitors still the amount of 1
9. the logger logs contact amount of 2
最佳答案
实际上,问题在于 Gauge 指标的初始化不正确。您应该像这样声明这个指标:
测量
.builder("contacts.amount", contactRepository, ContactRepository::count)
.注册(注册);
这段代码对我有用!
关于database - 为什么我的千分尺在应用程序启动后只执行一次?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53117329/
在千分尺中,我们可以创建一个新的仪表,做一些类似的事情 myMeterRegistry.gauge("my_metric", 69); 在此处查看代码 https://github.com/micro
我是一名优秀的程序员,十分优秀!