We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have this dependency in my pom.xml (Quarkus 2.4.2.Final)
<dependency> <groupId>io.quarkus</groupId> <artifactId>quarkus-smallrye-health</artifactId> </dependency>
if I enter this url : http://localhost:8080/q/health
I'll obtain this
{ "status": "UP", "checks": [ { "name": "SmallRye Reactive Messaging - liveness check", "status": "UP", "data": { "cleanupjob": "[OK]", "cleanupjob-completed": "[OK]" } }, { "name": "SmallRye Reactive Messaging - readiness check", "status": "UP", "data": { "cleanupjob": "[OK]", "cleanupjob-completed": "[OK]" } }, { "name": "SmallRye Reactive Messaging - startup check", "status": "UP", "data": { "cleanupjob": "[OK]", "cleanupjob-completed": "[OK]" } } ] }
but if I enter this : http://localhost:8080/q/health-ui/
I'll obtain this error
Why the url in the UI is trying to retreive this http://localhost:8080/health instead of http://localhost:8080/q/health
No response
mvn io.quarkus.platform:quarkus-maven-plugin:2.4.2.Final:create \ -DprojectGroupId=org.acme \ -DprojectArtifactId=microprofile-health-quickstart \ -Dextensions="smallrye-health" cd microprofile-health-quickstart mvn clean quarkus:dev http://localhost:8080/q/health/ -> works http://localhost:8080/q/health-ui/ -> fails
uname -a
ver
java -version
mvnw --version
gradlew --version
The text was updated successfully, but these errors were encountered:
/cc @jmartisk, @xstefank
Sorry, something went wrong.
@phillip-kruger you might also be interested by this one given it's a UI issue.
I'll have a look. as a workaround, you can set the url by clicking the gear icon in the UI and change the url in the for to /q/health
@xstefank will look at this
Successfully merging a pull request may close this issue.
Describe the bug
I have this dependency in my pom.xml (Quarkus 2.4.2.Final)
if I enter this url : http://localhost:8080/q/health
I'll obtain this
but if I enter this : http://localhost:8080/q/health-ui/
I'll obtain this error
Why the url in the UI is trying to retreive this http://localhost:8080/health instead of http://localhost:8080/q/health
Expected behavior
No response
Actual behavior
No response
How to Reproduce?
Output of
uname -a
orver
No response
Output of
java -version
No response
GraalVM version (if different from Java)
No response
Quarkus version or git rev
No response
Build tool (ie. output of
mvnw --version
orgradlew --version
)No response
Additional information
No response
The text was updated successfully, but these errors were encountered: