C D G H I N R S T 

C

com.timgroup.statsd - package com.timgroup.statsd
 
count(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Adjusts the specified counter by a given delta.
count(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
count(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Adjusts the specified counter by a given delta.

D

decrement(String, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
decrement(String, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
decrement(String, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to decrementCounter(String, String[]).
decrementCounter(String, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Decrements the specified counter by one.
decrementCounter(String, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
decrementCounter(String, String...) - Method in interface com.timgroup.statsd.StatsDClient
Decrements the specified counter by one.

G

gauge(String, double, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
gauge(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
gauge(String, double, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
gauge(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
gauge(String, double, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to recordGaugeValue(String, double, String[]).
gauge(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to recordGaugeValue(String, long, String[]).

H

handle(Exception) - Method in interface com.timgroup.statsd.StatsDClientErrorHandler
Handle the given exception, which occurred during a StatsD client operation.
histogram(String, double, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
histogram(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
histogram(String, double, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
histogram(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
histogram(String, double, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to recordHistogramValue(String, double, String[]).
histogram(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to recordHistogramValue(String, long, String[]).

I

increment(String, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
increment(String, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
increment(String, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to incrementCounter(String, String[]).
incrementCounter(String, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Increments the specified counter by one.
incrementCounter(String, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
incrementCounter(String, String...) - Method in interface com.timgroup.statsd.StatsDClient
Increments the specified counter by one.

N

NonBlockingStatsDClient - Class in com.timgroup.statsd
A simple StatsD client implementation facilitating metrics recording.
NonBlockingStatsDClient(String, String, int) - Constructor for class com.timgroup.statsd.NonBlockingStatsDClient
Create a new StatsD client communicating with a StatsD instance on the specified host and port.
NonBlockingStatsDClient(String, String, int, String...) - Constructor for class com.timgroup.statsd.NonBlockingStatsDClient
Create a new StatsD client communicating with a StatsD instance on the specified host and port.
NonBlockingStatsDClient(String, String, int, String[], StatsDClientErrorHandler) - Constructor for class com.timgroup.statsd.NonBlockingStatsDClient
Create a new StatsD client communicating with a StatsD instance on the specified host and port.
NoOpStatsDClient - Class in com.timgroup.statsd
A No-Op StatsDClient, which can be substituted in when metrics are not required.
NoOpStatsDClient() - Constructor for class com.timgroup.statsd.NoOpStatsDClient
 

R

recordExecutionTime(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Records an execution time in milliseconds for the specified named operation.
recordExecutionTime(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
recordExecutionTime(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Records an execution time in milliseconds for the specified named operation.
recordGaugeValue(String, double, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Records the latest fixed value for the specified named gauge.
recordGaugeValue(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Records the latest fixed value for the specified named gauge.
recordGaugeValue(String, double, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
recordGaugeValue(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
recordGaugeValue(String, double, String...) - Method in interface com.timgroup.statsd.StatsDClient
Records the latest fixed value for the specified named gauge.
recordGaugeValue(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Records the latest fixed value for the specified named gauge.
recordHistogramValue(String, double, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Records a value for the specified named histogram.
recordHistogramValue(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Records a value for the specified named histogram.
recordHistogramValue(String, double, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
recordHistogramValue(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
recordHistogramValue(String, double, String...) - Method in interface com.timgroup.statsd.StatsDClient
Records a value for the specified named histogram.
recordHistogramValue(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Records a value for the specified named histogram.

S

StatsDClient - Interface in com.timgroup.statsd
Describes a client connection to a StatsD server, which may be used to post metrics in the form of counters, timers, and gauges.
StatsDClientErrorHandler - Interface in com.timgroup.statsd
Describes a handler capable of processing exceptions that occur during StatsD client operations.
StatsDClientException - Exception in com.timgroup.statsd
Signals that an exception has occurred when trying to start the StatsD client
StatsDClientException() - Constructor for exception com.timgroup.statsd.StatsDClientException
 
StatsDClientException(String, Throwable) - Constructor for exception com.timgroup.statsd.StatsDClientException
 
stop() - Method in class com.timgroup.statsd.NonBlockingStatsDClient
Cleanly shut down this StatsD client.
stop() - Method in class com.timgroup.statsd.NoOpStatsDClient
 
stop() - Method in interface com.timgroup.statsd.StatsDClient
Cleanly shut down this StatsD client.

T

time(String, long, String...) - Method in class com.timgroup.statsd.NonBlockingStatsDClient
time(String, long, String...) - Method in class com.timgroup.statsd.NoOpStatsDClient
 
time(String, long, String...) - Method in interface com.timgroup.statsd.StatsDClient
Convenience method equivalent to recordExecutionTime(String, long, String[]).
C D G H I N R S T 

Copyright © 2015. All Rights Reserved.