All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lv.ctco.cukes.rest.SampleHealthCheck Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package lv.ctco.cukes.rest;

import com.yammer.metrics.core.HealthCheck;

public class SampleHealthCheck extends HealthCheck {

    protected SampleHealthCheck() {
        super("sample");
    }

    @Override
    protected Result check() {
        return Result.healthy(); // To Disable Dropwizard warnings
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy