-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to integrate with Spring boot actuator? #123
Comments
Hi @ortizman , I used the example in the project: And added Then I started the Then I tried to access the endpoint provided by actuator: ➤ curl http://localhost:8080/actuator From the output I can see the actuator output: Does this solve your problem? |
As doc https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.monitoring
The sample project you mentioned uses Spring MVC https://github.com/resteasy/resteasy-spring-boot/blob/main/sample-app/pom.xml#L38 I think @ortizman is asking for a native support for Resteasy (in the same way of the above technologies) This native support should cover the http tracing features of actuator https://docs.spring.io/spring-boot/docs/current/reference/html/actuator.html#actuator.tracing |
@jbaris I created a Pull Request to verify the actuator behavior : I deployed the sample into WildFly: And I can see that If I enable the above I need to check the detail implementation of |
Just for the record: This application will conflict with the spring-mvc path for Actuator.
or:
|
I am using this starter to expose JAX-RS resources.
Now I want to integrate Spring boot Actuator
Simply, I insert the dependency in my build.gradle
Dependency
implementation 'org.springframework.boot:spring-boot-starter-actuator'.
LOGS
INFO 1386771 --- [ main] o.s.b.a.e.web.EndpointLinksResolver : Exposing 1 endpoint(s) beneath base path '/actuator'.
But I can't access it.
Is there any alternative to access these endpoints without having to migrate to Jersey?
The text was updated successfully, but these errors were encountered: