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

com.github.arteam.jdbi3.JdbiHealthCheck Maven / Gradle / Ivy

There is a newer version: 1.2.1
Show newest version
package com.github.arteam.jdbi3;

import com.codahale.metrics.health.HealthCheck;
import io.dropwizard.db.TimeBoundHealthCheck;
import io.dropwizard.util.Duration;
import org.jdbi.v3.core.Handle;
import org.jdbi.v3.core.Jdbi;

import java.util.concurrent.ExecutorService;

/**
 * @author Artem Prigoda
 * @since 28.07.16
 */
public class JdbiHealthCheck extends HealthCheck {

    private final Jdbi jdbi;
    private final String validationQuery;
    private final TimeBoundHealthCheck timeBoundHealthCheck;

    public JdbiHealthCheck(ExecutorService executorService, Duration duration, Jdbi dbi, String validationQuery) {
        this.jdbi = dbi;
        this.validationQuery = validationQuery;
        this.timeBoundHealthCheck = new TimeBoundHealthCheck(executorService, duration);
    }

    @Override
    protected Result check() throws Exception {
        return timeBoundHealthCheck.check(() -> {
            try (Handle handle = jdbi.open()) {
                handle.execute(validationQuery);
                return Result.healthy();
            }
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy