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

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

package lv.ctco.cukes.rest;

import com.yammer.metrics.core.*;

public class SampleHealthCheck extends HealthCheck {

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

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy