Krishna Chaitanya Surapaneni
Krishna Chaitanya Surapaneni
This (reactive) page is currently out of sync with the Servlet page. This pull request aims to ensure alignment between both pages.
Hello, We are attempting to integrate OpenTelemetry instrumentation with an ActiveJ application, following the [getting-started tutorial](https://github.com/activej/activej/tree/master/examples/tutorials/getting-started). In the example, I added a log statement inside the [servlet](https://github.com/activej/activej/blob/master/examples/tutorials/getting-started/src/main/java/HttpHelloWorldExample.java#L10): ```java logger.info("info") ```...
### Description: Currently, the [HttpRequest](https://github.com/activej/activej/blob/master/core-http/src/main/java/io/activej/http/HttpRequest.java) class in Activej does not provide a way to retrieve the HTTP route pattern (e.g., `/user/:id`) separate from the URL path (e.g., `/user/1`). This functionality...