Package com.datasift.dropwizard.health

Examples of com.datasift.dropwizard.health.GraphiteHealthCheck


                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    conf.getGraphite().getPrefix()
            );

            env.addHealthCheck(new GraphiteHealthCheck(
                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    "graphite"));
        }
    }
View Full Code Here


                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    conf.getGraphite().getPrefix()
            );

            env.addHealthCheck(new GraphiteHealthCheck(
                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    "graphite"));
        }
    }
View Full Code Here

                            return sb.append(name.getName()).toString();
                        }
                    }
            );

            environment.addHealthCheck(new GraphiteHealthCheck(
                    graphiteConfiguration.getHost(),
                    graphiteConfiguration.getPort(),
                    "graphite"));
        }
    }
View Full Code Here

                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    conf.getGraphite().getPrefix()
            );

            env.addHealthCheck(new GraphiteHealthCheck(
                    conf.getGraphite().getHost(),
                    conf.getGraphite().getPort(),
                    "graphite"));
        }
    }
View Full Code Here

TOP

Related Classes of com.datasift.dropwizard.health.GraphiteHealthCheck

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.