最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

java - Tracing per endpoint using Spring Boot and micrometer - Stack Overflow

programmeradmin0浏览0评论

I have a REST API which exposes two endpoints.

  • Endpoint 1 is a low traffic, but mission critical. We need to trace everything from the controller layer all the way to the repository.

  • Endpoint 2 has a very high traffic volume, but it is not super important in terms of observability requirements. It needs to work of course, but no need to see tracing here.

@RestController
class ReportController {

  private static final Logger LOGGER = LoggerFactory.getLogger(ReportController.class);

  @Autowired
  ReportService reportService;

  @GetMapping("/businessCriticalFLow")
  String businessCriticalFLow(@RequestBody String string) {
    LOGGER.info("would like to see traces like this INFO [app,bbe3aea006077640b66d40f3e62f04b9,93b7a150b7e293ef]");
    Report report = reportService.getReport(string); //will see traces from the repository as well
    return ...;
  }

  @GetMapping("/notSoImportant")
  String notSoImportant(@RequestParam(value = "id", required = true) int id) {
      return ...;
  }

}

We have the current solutions:

  1. disable tracing entirely (removing micrometer, or setting false to the micrometer property in application properties)

    Result -> We lose everything, no observability on the endpoint 1 (important flow)

  2. enable tracing for everything (default behavior when bringing micrometer, actuator and co)

    Result -> We waste money sending traces we will not use for flow 2 just to see traces of flow 1

  3. refactor and break the app into two apps, one endpoint each, one that has tracing enabled, and one that does not.

Is there a way we can achieve tracing per-flow, per endpoint using micrometer and Spring Boot?

发布评论

评论列表(0)

  1. 暂无评论