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

lv.ctco.cukesrest.SampleHealthCheck Maven / Gradle / Ivy

There is a newer version: 0.2.28
Show newest version
package lv.ctco.cukesrest;

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 - 2024 Weber Informatics LLC | Privacy Policy