Class HealthService


  • @Path("/")
    public class HealthService
    extends Object
    Service that reports if Runtime is ready and healthy.
    • Constructor Detail

      • HealthService

        public HealthService()
    • Method Detail

      • ready

        @GET
        @PermitAll
        @Path("/ready")
        @Produces("application/json")
        public String ready()
      • alive

        @GET
        @PermitAll
        @Path("/healthy")
        @Produces("application/json")
        public String alive()