Skip navigation links
A B C D G M N R S T V W 

A

add(String) - Method in class com.blacklocus.metrics.MetricNameBuilder
 
addDimension(Dimension) - Method in class com.blacklocus.metrics.MetricNameBuilder
addDimension(Dimension, boolean) - Method in class com.blacklocus.metrics.MetricNameBuilder
addDimension(String, String) - Method in class com.blacklocus.metrics.MetricNameBuilder
addDimension(String, String, boolean) - Method in class com.blacklocus.metrics.MetricNameBuilder
 
addNameToken(String) - Method in class com.blacklocus.metrics.MetricNameBuilder
 
addNameToken(String, boolean) - Method in class com.blacklocus.metrics.MetricNameBuilder
 

B

build() - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
build() - Method in class com.blacklocus.metrics.MetricNameBuilder
 

C

CloudWatchReporter - Class in com.blacklocus.metrics
Included dimension
CloudWatchReporter(MetricRegistry, AmazonCloudWatchAsync) - Constructor for class com.blacklocus.metrics.CloudWatchReporter
Creates a new ScheduledReporter instance.
CloudWatchReporter(MetricRegistry, String, AmazonCloudWatchAsync) - Constructor for class com.blacklocus.metrics.CloudWatchReporter
Creates a new ScheduledReporter instance.
CloudWatchReporter(MetricRegistry, String, MetricFilter, AmazonCloudWatchAsync) - Constructor for class com.blacklocus.metrics.CloudWatchReporter
Creates a new ScheduledReporter instance.
CloudWatchReporterBuilder - Class in com.blacklocus.metrics
A fluent style builder for a CloudWatchReporter.
CloudWatchReporterBuilder() - Constructor for class com.blacklocus.metrics.CloudWatchReporterBuilder
 
com.blacklocus.metrics - package com.blacklocus.metrics
 
Constants - Class in com.blacklocus.metrics
 
Constants() - Constructor for class com.blacklocus.metrics.Constants
 
copy() - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 

D

DEF_DIM_NAME_TYPE - Static variable in class com.blacklocus.metrics.Constants
Default Dimension.name for the type of metric submission, e.g.
DEF_DIM_VAL_COUNTER_COUNT - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_COUNTER_COUNT. The default value will change from "counterSum" to
DEF_DIM_VAL_COUNTER_COUNT - Static variable in class com.blacklocus.metrics.Constants
Counter.getCount() returns the total of the values put in the counter.
DEF_DIM_VAL_GAUGE - Static variable in class com.blacklocus.metrics.Constants
Default Dimension.value for the metric type dimension added to all gauge metrics.
DEF_DIM_VAL_HISTO_SAMPLES - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_HISTO_SAMPLES. The default value will change from "histogramCount" to
DEF_DIM_VAL_HISTO_SAMPLES - Static variable in class com.blacklocus.metrics.Constants
Histogram.getCount() returns the number of samples recorded, UNlike Counter and Meter.
DEF_DIM_VAL_HISTO_STATS - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_HISTO_STATS. The default value will change from "histogramSet" to
DEF_DIM_VAL_HISTO_STATS - Static variable in class com.blacklocus.metrics.Constants
Histogram.getSnapshot() can be mapped into a StatisticSet.
DEF_DIM_VAL_METER_COUNT - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_METER_COUNT. The default value will change from "meterSum" to
DEF_DIM_VAL_METER_COUNT - Static variable in class com.blacklocus.metrics.Constants
Meter.getCount() returns the total of the values put in the counter, just like Counter.getCount().
DEF_DIM_VAL_TIMER_SAMPLES - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_TIMER_SAMPLES. The default value will change from "timerCount" to
DEF_DIM_VAL_TIMER_SAMPLES - Static variable in class com.blacklocus.metrics.Constants
Timer.getCount() returns the number of samples recorded, UNlike Counter and Meter.
DEF_DIM_VAL_TIMER_STATS - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_VAL_TIMER_STATS. The default value will change from "timerSet" to
DEF_DIM_VAL_TIMER_STATS - Static variable in class com.blacklocus.metrics.Constants
 

G

getValue() - Method in class com.blacklocus.metrics.NumberGauge
 

M

METRIC_TYPE_DIMENSION - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Will eventually be replaced by Constants.DEF_DIM_NAME_TYPE. The default value will change from "type" to
MetricNameBuilder - Class in com.blacklocus.metrics
A builder for the metrics name syntax defined by this module.
MetricNameBuilder() - Constructor for class com.blacklocus.metrics.MetricNameBuilder
 
MetricNameBuilder(String) - Constructor for class com.blacklocus.metrics.MetricNameBuilder
 
MetricNameBuilder.MetricsNameSyntaxException - Exception in com.blacklocus.metrics
 
MetricsNameSyntaxException(String) - Constructor for exception com.blacklocus.metrics.MetricNameBuilder.MetricsNameSyntaxException
 

N

NAME_DIMENSION_SEPARATOR - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.NAME_DIMENSION_SEPARATOR
NAME_DIMENSION_SEPARATOR - Static variable in class com.blacklocus.metrics.Constants
Separator of key and value segments of a metric name.
NAME_PERMUTE_MARKER - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.NAME_PERMUTE_MARKER
NAME_PERMUTE_MARKER - Static variable in class com.blacklocus.metrics.Constants
If any token, whether a simple string or a dimension pair ends with this marker, then metrics will be sent once with and once without.
NAME_TOKEN_DELIMITER - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.NAME_TOKEN_DELIMITER
NAME_TOKEN_DELIMITER - Static variable in class com.blacklocus.metrics.Constants
 
NAME_TOKEN_DELIMITER_RGX - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.NAME_TOKEN_DELIMITER_RGX
NAME_TOKEN_DELIMITER_RGX - Static variable in class com.blacklocus.metrics.Constants
Delimiter of tokens in the metric name.
NumberGauge - Class in com.blacklocus.metrics
A thread-safe Gauge implementation for any sort of Number.
NumberGauge() - Constructor for class com.blacklocus.metrics.NumberGauge
Initialized with value of 0.
NumberGauge(Number) - Constructor for class com.blacklocus.metrics.NumberGauge
 

R

report(SortedMap<String, Gauge>, SortedMap<String, Counter>, SortedMap<String, Histogram>, SortedMap<String, Meter>, SortedMap<String, Timer>) - Method in class com.blacklocus.metrics.CloudWatchReporter
 

S

setValue(Number) - Method in class com.blacklocus.metrics.NumberGauge
 

T

toString() - Method in class com.blacklocus.metrics.MetricNameBuilder
 

V

VALID_DIMENSION_PART_RGX - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.VALID_DIMENSION_PART_RGX
VALID_DIMENSION_PART_RGX - Static variable in class com.blacklocus.metrics.Constants
 
VALID_NAME_TOKEN_RGX - Static variable in class com.blacklocus.metrics.CloudWatchReporter
Deprecated.
maintained for backwards compatibility. Moved to Constants.VALID_NAME_TOKEN_RGX
VALID_NAME_TOKEN_RGX - Static variable in class com.blacklocus.metrics.Constants
 

W

withClient(AmazonCloudWatchAsync) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withDimensions(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
Sets global reporter-wide dimensions and returns itself.
withDimensions(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withFilter(MetricFilter) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withNamespace(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withRegistry(MetricRegistry) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withReporterFilter(Predicate<MetricDatum>) - Method in class com.blacklocus.metrics.CloudWatchReporter
This filter is applied right before submission to CloudWatch.
withReporterFilter(Predicate<MetricDatum>) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
This filter is applied right before submission to CloudWatch.
withTimestampLocal(boolean) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTimestampLocal(Boolean) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimName(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimName(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValCounterCount(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValCounterCount(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValGauge(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValGauge(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValHistoSamples(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValHistoSamples(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValHistoStats(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValHistoStats(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValMeterCount(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValMeterCount(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValTimerSamples(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValTimerSamples(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
withTypeDimValTimerStats(String) - Method in class com.blacklocus.metrics.CloudWatchReporter
 
withTypeDimValTimerStats(String) - Method in class com.blacklocus.metrics.CloudWatchReporterBuilder
 
A B C D G M N R S T V W 
Skip navigation links