Add a basic check which does nothing (right now)

This commit is contained in:
R. Tyler Croy 2016-12-18 11:41:34 -08:00
parent 38cf06bf7c
commit 3329b6f475
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 36 additions and 1 deletions

View File

@ -18,6 +18,8 @@
package io.lasagna.httpwizard
import io.lasagna.httpwizard.checks.VersionCheck
import io.dropwizard.Application
import io.dropwizard.setup.Bootstrap
import io.dropwizard.setup.Environment
@ -34,7 +36,7 @@ class HttpWizard extends Application<HttpWizardConfiguration> {
@Override
void run(HttpWizardConfiguration configuration,
Environment env) {
/* nothing to do yet */
env.healthChecks().register('sanity', new VersionCheck());
}
@Override

View File

@ -0,0 +1,33 @@
/*
* Copyright (C) 2016 R. Tyler Croy <tyler@linux.com>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package io.lasagna.httpwizard.checks
import com.codahale.metrics.health.HealthCheck
import com.codahale.metrics.health.HealthCheck.Result
/**
* VersionCheck simple dumps the version of the running application
*/
class VersionCheck extends HealthCheck {
@Override
protected Result check() throws Exception {
return Result.healthy()
}
}