Package com.codahale.metrics.graphite

Examples of com.codahale.metrics.graphite.GraphiteUDP


      if ("tcp".equals(transport)) {
        graphite = new Graphite(hostname, port, SocketFactory.getDefault(), charset);
      }
      else if ("udp".equals(transport)) {
        graphite = new GraphiteUDP(hostname, port);
      }
      else if ("pickle".equals(transport)) {
        graphite = new PickledGraphite(hostname, port, SocketFactory.getDefault(), charset, getProperty(BATCH_SIZE, Integer.TYPE, 100));
      }
      else {
View Full Code Here

TOP

Related Classes of com.codahale.metrics.graphite.GraphiteUDP

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.