Микрометр отправляет ноль метрик - Spring Boot

Я использую Spring Boot 2 + Influx + Spring AOP для сбора метрик в моей системе.

Так что я:

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
        </dependency>


        <dependency>
            <groupId>io.micrometer</groupId>
            <artifactId>micrometer-registry-influx</artifactId>
        </dependency>

У меня есть класс, который собирает эти метрики и отправляет в приток, смотрите:

@Aspect
@Configuration
@RequiredArgsConstructor
@Slf4j
public class TimerCounterAspect {

    private final MicrometerFactory micrometerFactory;

    @Around("@annotation(br.com.myproject.TimerCount)")
    public Object around(ProceedingJoinPoint joinPoint) {
        Timer.Sample sample = micrometerFactory.starTimer();
        micrometerFactory.counterIncrement(joinPoint.getTarget().getClass());
        Object oReturn;
        try {
            oReturn = joinPoint.proceed();
        } catch (Throwable throwable) {
            micrometerFactory.counterErrorIncrement(joinPoint.getTarget().getClass());
            log.error("Falha ao processar JoinPoint", throwable);
            throw new RuntimeException(throwable);
        } finally {
            micrometerFactory.stopTimer(joinPoint.getTarget().getClass(), sample);
        }

        return oReturn;
    }
}

Когда я посылаю какое-то значение для притока, это работает очень хорошо, но Spring продолжает посылать "нулевые значения" без моего разрешения, заполняя мою базу данных о притоках. Итак, мой InfliffDB показывает что-то вроде этого:

0
0
0
334 (My sent value)
0
0
0
0
0

1 ответ

Вы можете настроить это в файле yml.

management:
  metrics:
    export:
      influx:
        uri: http://localhost:8086
        db: mydbName
        step: 10s  

значение шага должно быть связано с ожидаемым трафиком. Так что вы не видите там 90% нулей.

Другие вопросы по тегам