@NotThreadSafe public class AWSRequestMetrics extends Object
In contrast to AWSRequestMetricsFullSupport
, which is intended to be
a full support of AWS SDK request metrics, this class only provides access to
a TimingInfo
instance that only has minimal support for start and end
time (ie with no-ops for sub-event measurements) for backward compatibility
reason. The other methods related to properties and counters in this class
are effectively no-ops.
This class is instantiated instead of AWSRequestMetricsFullSupport
when request metric collection is not required during a particular service
request/response cycle.
Modifier and Type | Class and Description |
---|---|
static class |
AWSRequestMetrics.Field
Predefined AWS SDK metric types general across all AWS clients.
|
Constructor and Description |
---|
AWSRequestMetrics()
This constructor should be used only in the case when AWS SDK metrics
collector is disabled, when minimal timing info is supported for backward
compatibility reasons.
|
public AWSRequestMetrics()
AWSRequestMetricsFullSupport
public final TimingInfo getTimingInfo()
public boolean isEnabled()
public void startEvent(String eventName)
public void startEvent(MetricType f)
public void endEvent(String eventName)
public void endEvent(MetricType f)
public void incrementCounter(String event)
public void incrementCounter(MetricType f)
public final AWSRequestMetrics incrementCounterWith(String event)
incrementCounter(String)
public final AWSRequestMetrics incrementCounterWith(MetricType f)
incrementCounter(MetricType)
public void setCounter(String counterName, long count)
public void setCounter(MetricType f, long count)
public final AWSRequestMetrics withCounter(String counterName, long count)
setCounter(String, long)
public final AWSRequestMetrics withCounter(MetricType f, long count)
setCounter(MetricType, long)
public void addProperty(MetricType f, Object value)
public final AWSRequestMetrics addPropertyWith(String propertyName, Object value)
addProperty(String, Object)
public final AWSRequestMetrics addPropertyWith(MetricType f, Object value)
addProperty(MetricType, Object)
public void log()
public List<Object> getProperty(MetricType f)
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.