Package org.apache.tajo.util.metrics.reporter

Examples of org.apache.tajo.util.metrics.reporter.TajoMetricsScheduledReporter.start()


            LOG.warn(reporterClass + " is not subclass of " + TajoMetricsScheduledReporter.class.getCanonicalName());
            continue;
          }
          TajoMetricsScheduledReporter reporter = (TajoMetricsScheduledReporter)reporterObject;
          reporter.init(metricRegistry, groupName, hostAndPort, eachMetricsReporterProperties);
          reporter.start();

          metricsReporters.add(reporter);
          LOG.info("Started metrics reporter " + reporter.getClass().getCanonicalName() + " for " + groupName);
        } catch (ClassNotFoundException e) {
          LOG.warn("No metrics reporter class[" + eachReporterName + "], required class= " + reporterClass);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.