You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Cesar Hernandez (JIRA)" <ji...@apache.org> on 2019/06/28 18:52:00 UTC

[jira] [Updated] (GERONIMO-6736) geronimo-health provides by detault /health endpoint without application(endpoint) prefix

     [ https://issues.apache.org/jira/browse/GERONIMO-6736?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cesar Hernandez updated GERONIMO-6736:
--------------------------------------
    Description: 
Currently, if MicroProfile health endpoint has the following URL: 

`http://localhost:8080/myapp/health`

Assuming that the JAX-RS application contains the following Application definition:

 
{code:java}
@ApplicationPath("/data")
public class MpconfigRestApplication extends Application {
}{code}
 

 

The MicroProfile health [specification|https://github.com/eclipse/microprofile-health/releases/download/2.0.1/microprofile-health-spec.pdf] states:

 
{code:java}
Integration with CDI
Any enabled bean with a bean of type org.eclipse.microprofile.health.HealthCheck and @Liveness,
@Readiness or @Health qualifier can be used as health check procedure.
Contextual references of health check procedures are invoked by runtime when the outermost
protocol entry point (i.e. http://HOST:PORT/health) receives an inbound request
@ApplicationScoped
public class MyCheck implements HealthCheck {
 public HealthCheckResponse call() {
 [...]
 }
{code}
 

It seems current TCK is missing the enforce of the URL format: 
{code:java}
http://HOST:PORT/health{code}
 

The rest of the implementation, apart from Geronimo, had followed the approach defined in the specification since the first version.

I think if geronimo add this URL format as the default it would increase his adoption since the current default behavior  `http://localhost:8080/myapp/health` feels not-specification compliant. 

 

> geronimo-health provides by detault /health endpoint without application(endpoint) prefix
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMO-6736
>                 URL: https://issues.apache.org/jira/browse/GERONIMO-6736
>             Project: Geronimo
>          Issue Type: Task
>      Security Level: public(Regular issues) 
>            Reporter: Cesar Hernandez
>            Assignee: Romain Manni-Bucau
>            Priority: Major
>             Fix For: Health_1.0.2
>
>
> Currently, if MicroProfile health endpoint has the following URL: 
> `http://localhost:8080/myapp/health`
> Assuming that the JAX-RS application contains the following Application definition:
>  
> {code:java}
> @ApplicationPath("/data")
> public class MpconfigRestApplication extends Application {
> }{code}
>  
>  
> The MicroProfile health [specification|https://github.com/eclipse/microprofile-health/releases/download/2.0.1/microprofile-health-spec.pdf] states:
>  
> {code:java}
> Integration with CDI
> Any enabled bean with a bean of type org.eclipse.microprofile.health.HealthCheck and @Liveness,
> @Readiness or @Health qualifier can be used as health check procedure.
> Contextual references of health check procedures are invoked by runtime when the outermost
> protocol entry point (i.e. http://HOST:PORT/health) receives an inbound request
> @ApplicationScoped
> public class MyCheck implements HealthCheck {
>  public HealthCheckResponse call() {
>  [...]
>  }
> {code}
>  
> It seems current TCK is missing the enforce of the URL format: 
> {code:java}
> http://HOST:PORT/health{code}
>  
> The rest of the implementation, apart from Geronimo, had followed the approach defined in the specification since the first version.
> I think if geronimo add this URL format as the default it would increase his adoption since the current default behavior  `http://localhost:8080/myapp/health` feels not-specification compliant. 
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)