use of io.helidon.integrations.neo4j.health.Neo4jHealthCheck in project helidon by oracle.
the class Main method createRouting.
/**
* Creates new Routing.
*
* @return routing configured with JSON support, a health check, and a service
* @param config configuration of this server
*/
private static Routing createRouting(Config config) {
MetricsSupport metrics = MetricsSupport.create();
Neo4j neo4j = Neo4j.create(config.get("neo4j"));
// registers all metrics
Neo4jMetricsSupport.builder().driver(neo4j.driver()).build().initialize();
Neo4jHealthCheck healthCheck = Neo4jHealthCheck.create(neo4j.driver());
Driver neo4jDriver = neo4j.driver();
MovieService movieService = new MovieService(new MovieRepository(neo4jDriver));
HealthSupport health = HealthSupport.builder().addLiveness(// Adds a convenient set of checks
HealthChecks.healthChecks()).addReadiness(healthCheck).build();
return Routing.builder().register(// Health at "/health"
health).register(// Metrics at "/metrics"
metrics).register(movieService).build();
}
Aggregations