类 StatsdMetricWriter

    • 构造器详细资料

      • StatsdMetricWriter

        public StatsdMetricWriter​(String host,
                                  int port)
        Create a new writer instance with the given parameters.
        参数:
        host - the hostname for the statsd server
        port - the port for the statsd server
      • StatsdMetricWriter

        public StatsdMetricWriter​(String prefix,
                                  String host,
                                  int port)
        Create a new writer with the given parameters.
        参数:
        prefix - the prefix to apply to all metric names (can be null)
        host - the hostname for the statsd server
        port - the port for the statsd server
      • StatsdMetricWriter

        public StatsdMetricWriter​(com.timgroup.statsd.StatsDClient client)
        Create a new writer with the given client.
        参数:
        client - StatsD client to write metrics with
    • 方法详细资料

      • increment

        public void increment​(Delta<?> delta)
        从接口复制的说明: CounterWriter
        Increment the value of a metric (or decrement if the delta is negative). The name of the delta is the name of the metric to increment.
        指定者:
        increment 在接口中 CounterWriter
        参数:
        delta - the amount to increment by
      • reset

        public void reset​(String name)
        从接口复制的说明: CounterWriter
        Reset the value of a metric, usually to zero value. Implementations can discard the old values if desired, but may choose not to. This operation is optional (some implementations may not be able to fulfill the contract, in which case they should simply do nothing).
        指定者:
        reset 在接口中 CounterWriter
        参数:
        name - the name to reset