Package metrics_influxdb

Examples of metrics_influxdb.Influxdb


      System.out.println("STOP");
    }
  }

  private static InfluxdbReporter startInfluxdbReporter(MetricRegistry registry) throws Exception {
    final Influxdb influxdb = new Influxdb("127.0.0.1", 8086, "dev", "u0", "u0PWD");
    final InfluxdbReporter reporter = InfluxdbReporter
        .forRegistry(registry)
        .prefixedWith("test")
        .convertRatesTo(TimeUnit.SECONDS)
        .convertDurationsTo(TimeUnit.MILLISECONDS)
View Full Code Here


                    "metrics.influxdb.period", "60s");
            final int delay = TimeUtil.parseDuration(period);

            try {

                Influxdb influxdb = new Influxdb(address, port, database,
                        username, password);
                final InfluxdbReporter reporter = InfluxdbReporter
                        .forRegistry(metricsService.getMetricRegistry())
                        .prefixedWith(hostname)
                        .convertRatesTo(TimeUnit.SECONDS)
View Full Code Here

TOP

Related Classes of metrics_influxdb.Influxdb

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.