Interface MetricsClient
- All Superinterfaces:
AutoCloseable
- All Known Implementing Classes:
AbstractMetricsClient,NoOpMetricsClient,StatsdClientImpl
-
Method Summary
Modifier and TypeMethodDescriptionvoidadjustGauge(String metric, double delta) Adjust the specified gauge's value.voidadjustGauge(String metric, double delta, Unit unit) Adjust the specified gauge's value.voidadjustGauge(String metric, double delta, Unit unit, Set<Dimension> dimensions) Adjust the specified gauge's value.voidadjustGauge(String metric, double delta, Set<Dimension> dimensions) Adjust the specified gauge's value.default voidadjustGauge(String namespace, String metric, double delta) Adjust the specified gauge's value.default voidadjustGauge(String namespace, String metric, double delta, Unit unit) Adjust the specified gauge's value.default voidAdjust the specified gauge's value.default voidadjustGauge(String namespace, String metric, double delta, Set<Dimension> dimensions) Adjust the specified gauge's value.voidSet the specified attribute's value.default voidSet the specified attribute's value.default voidSet the specified attribute's value.voidSet the specified attribute's value.voidClear all periodically sampled gauges.voidclose()Overridden to remove checked exception constraint.voidAdjust the counter value.voidAdjust the counter value.voidAdjust the counter value.voidAdjust the counter value.default voidAdjust the counter value.default voidAdjust the counter value.default voidAdjust the counter value.default voidAdjust the counter value.voidDecrement the counter by 1.voidDecrement the counter by 1.voidDecrement the counter by 1.default voidDecrement the counter by 1.default voidDecrement the counter by 1.default voidDecrement the counter by 1.default voidDecrement the counter by 1.voidDecrement the counter by 1.voidReport an event.voidReport an event.default voidReport an event.default voidReport an event.voidSet the specified gauge's value.voidSet the specified gauge's value.voidSet the specified gauge's value.voidSet the specified gauge's value.default voidSet the specified gauge's value.default voidSet the specified gauge's value.default voidSet the specified gauge's value.default voidSet the specified gauge's value.default voidgauge(String namespace, String metric, DoubleSupplier supplier) Register periodic sampling of a gauge.default voidgauge(String namespace, String metric, DoubleSupplier supplier, Unit unit) Register periodic sampling of a gauge.default voidgauge(String namespace, String metric, DoubleSupplier supplier, Unit unit, Set<Dimension> dimensions) Register periodic sampling of a gauge.default voidRegister periodic sampling of a gauge.voidgauge(String metric, DoubleSupplier supplier) Register periodic sampling of a gauge.voidgauge(String metric, DoubleSupplier supplier, Unit unit) Register periodic sampling of a gauge.voidRegister periodic sampling of a gauge.voidgauge(String metric, DoubleSupplier supplier, Set<Dimension> dimensions) Register periodic sampling of a gauge.voidIncrement the counter by 1.voidIncrement the counter by 1.voidIncrement the counter by 1.default voidIncrement the counter by 1.default voidIncrement the counter by 1.default voidIncrement the counter by 1.default voidIncrement the counter by 1.voidIncrement the counter by 1.voidremoveGaugeSampler(String metric) Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier)orgauge(String, DoubleSupplier, Unit).default voidremoveGaugeSampler(String namespace, String metric) Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier)orgauge(String, DoubleSupplier, Unit).default voidremoveGaugeSampler(String namespace, String metric, Set<Dimension> dimensions) Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier, Set)orgauge(String, DoubleSupplier, Unit, Set).voidremoveGaugeSampler(String metric, Set<Dimension> dimensions) Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier, Set)orgauge(String, DoubleSupplier, Unit, Set).voidReport elapsed time (in milliseconds) of an operation.voidReport elapsed time (in milliseconds) of an operation.voidReport elapsed time (in milliseconds) of an operation.default voidReport elapsed time of an operation.default voidReport elapsed time of an operation.default voidReport elapsed time of an operation.default voidReport elapsed time of an operation.voidReport elapsed time (in milliseconds) of an operation.default voidReport elapsed time (in milliseconds) of an operation.default voidReport elapsed time (in milliseconds) of an operation.default voidReport elapsed time (in milliseconds) of an operation.default voidReport elapsed time of an operation.default voidReport elapsed time of an operation.default voidtimer(String namespace, String metric, long value, TimeUnit unit, double sampleRate, Set<Dimension> dimensions) Report elapsed time of an operation.default voidReport elapsed time of an operation.default voidReport elapsed time (in milliseconds) of an operation.voidReport a unique value in a bucket or "set".default voidReport a unique value in a bucket or "set".default voidReport a unique value in a bucket or "set".voidReport a unique value in a bucket or "set".
-
Method Details
-
close
void close()Overridden to remove checked exception constraint.- Specified by:
closein interfaceAutoCloseable
-
increment
Increment the counter by 1.- Parameters:
metric- metric name
-
increment
Increment the counter by 1.- Parameters:
namespace- metric namespacemetric- metric name- Since:
- 5.4.0
-
increment
Increment the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.
-
increment
Increment the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.- Since:
- 5.4.0
-
increment
Increment the counter by 1.- Parameters:
metric- metric namedimensions- dimensions identifying the entity
-
increment
Increment the counter by 1.- Parameters:
namespace- metric namespacemetric- metric namedimensions- dimensions identifying the entity- Since:
- 5.4.0
-
increment
Increment the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity
-
increment
default void increment(String namespace, String metric, double sampleRate, Set<Dimension> dimensions) Increment the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity- Since:
- 5.4.0
-
decrement
Decrement the counter by 1.- Parameters:
metric- metric name
-
decrement
Decrement the counter by 1.- Parameters:
namespace- metric namespacemetric- metric name- Since:
- 5.4.0
-
decrement
Decrement the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.
-
decrement
Decrement the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.- Since:
- 5.4.0
-
decrement
Decrement the counter by 1.- Parameters:
metric- metric namedimensions- dimensions identifying the entity
-
decrement
Decrement the counter by 1.- Parameters:
namespace- metric namespacemetric- metric namedimensions- dimensions identifying the entity- Since:
- 5.4.0
-
decrement
Decrement the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity
-
decrement
default void decrement(String namespace, String metric, double sampleRate, Set<Dimension> dimensions) Decrement the counter by 1.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity- Since:
- 5.4.0
-
count
Adjust the counter value.- Parameters:
metric- metric namedelta- adjustment value
-
count
Adjust the counter value.- Parameters:
namespace- metric namespacemetric- metric namedelta- adjustment value- Since:
- 5.4.0
-
count
Adjust the counter value.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namedelta- adjustment valuesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.
-
count
Adjust the counter value.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namedelta- adjustment valuesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.- Since:
- 5.4.0
-
count
Adjust the counter value.- Parameters:
metric- metric namedelta- adjustment valuedimensions- dimensions identifying the entity
-
count
Adjust the counter value.- Parameters:
namespace- metric namespacemetric- metric namedelta- adjustment valuedimensions- dimensions identifying the entity- Since:
- 5.4.0
-
count
Adjust the counter value.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- metric namedelta- adjustment valuesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity
-
count
default void count(String namespace, String metric, long delta, double sampleRate, Set<Dimension> dimensions) Adjust the counter value.This uses sampling in order to approximate the actual number of increments. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- metric namedelta- adjustment valuesampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity- Since:
- 5.4.0
-
gauge
Set the specified gauge's value.- Parameters:
metric- metric nameabsoluteValue- absolute value
-
gauge
Set the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric nameabsoluteValue- absolute value- Since:
- 5.4.0
-
gauge
Set the specified gauge's value.- Parameters:
metric- metric nameabsoluteValue- absolute valueunit- unit of measure
-
gauge
Set the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric nameabsoluteValue- absolute valueunit- unit of measure- Since:
- 5.4.0
-
gauge
Set the specified gauge's value.- Parameters:
metric- metric nameabsoluteValue- absolute valuedimensions- dimensions identifying the entity
-
gauge
default void gauge(String namespace, String metric, double absoluteValue, Set<Dimension> dimensions) Set the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric nameabsoluteValue- absolute valuedimensions- dimensions identifying the entity- Since:
- 5.4.0
-
gauge
Set the specified gauge's value.- Parameters:
metric- metric nameabsoluteValue- absolute valueunit- unit of measuredimensions- dimensions identifying the entity
-
gauge
default void gauge(String namespace, String metric, double absoluteValue, Unit unit, Set<Dimension> dimensions) Set the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric nameabsoluteValue- absolute valueunit- unit of measuredimensions- dimensions identifying the entity- Since:
- 5.4.0
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
metric- metric namesupplier- value supplier called once per sampling interval
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
namespace- metric namespacemetric- metric namesupplier- value supplier called once per sampling interval- Since:
- 5.4.0
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
metric- metric namesupplier- value supplier called once per sampling intervaldimensions- dimensions identifying the entity
-
gauge
default void gauge(String namespace, String metric, DoubleSupplier supplier, Set<Dimension> dimensions) Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
namespace- metric namespacemetric- metric namesupplier- value supplier called once per sampling intervaldimensions- dimensions identifying the entity- Since:
- 5.4.0
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
metric- metric namesupplier- value supplier called once per sampling intervalunit- unit of measure
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
namespace- metric namespacemetric- metric namesupplier- value supplier called once per sampling intervalunit- unit of measure- Since:
- 5.4.0
-
gauge
Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
metric- metric namesupplier- value supplier called once per sampling intervalunit- unit of measuredimensions- dimensions identifying the entity
-
gauge
default void gauge(String namespace, String metric, DoubleSupplier supplier, Unit unit, Set<Dimension> dimensions) Register periodic sampling of a gauge.The client will sample the value at its configured sampling interval.
This method should only be called once per unique combination of metric name and dimensions. Duplicate registrations are ignored and may be reported via an implementation-specific error handler.
- Parameters:
namespace- metric namespacemetric- metric namesupplier- value supplier called once per sampling intervalunit- unit of measuredimensions- dimensions identifying the entity- Since:
- 5.4.0
-
removeGaugeSampler
Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier)orgauge(String, DoubleSupplier, Unit).The metric name must correspond exactly to the original registration. The unit is ignored.
- Parameters:
metric- metric name
-
removeGaugeSampler
Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier)orgauge(String, DoubleSupplier, Unit).The metric name must correspond exactly to the original registration. The unit is ignored.
- Parameters:
namespace- metric namespacemetric- metric name- Since:
- 5.4.0
-
removeGaugeSampler
Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier, Set)orgauge(String, DoubleSupplier, Unit, Set).The metric name and dimensions must correspond exactly to the original registration. The unit is ignored.
- Parameters:
metric- metric namedimensions- dimensions
-
removeGaugeSampler
Remove a periodically sampled gauge that was registered viagauge(String, DoubleSupplier, Set)orgauge(String, DoubleSupplier, Unit, Set).The metric name and dimensions must correspond exactly to the original registration. The unit is ignored.
- Parameters:
namespace- metric namespacemetric- metric namedimensions- dimensions- Since:
- 5.4.0
-
clearGaugeSamplers
void clearGaugeSamplers()Clear all periodically sampled gauges. -
adjustGauge
Adjust the specified gauge's value.- Parameters:
metric- metric namedelta- amount to adjust by
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric namedelta- amount to adjust by- Since:
- 5.4.0
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
metric- metric namedelta- amount to adjust byunit- unit of measure
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric namedelta- amount to adjust byunit- unit of measure- Since:
- 5.4.0
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
metric- metric namedelta- amount to adjust bydimensions- dimensions identifying the entity
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric namedelta- amount to adjust bydimensions- dimensions identifying the entity- Since:
- 5.4.0
-
adjustGauge
Adjust the specified gauge's value.- Parameters:
metric- metric namedelta- amount to adjust byunit- unit of measuredimensions- dimensions identifying the entity
-
adjustGauge
default void adjustGauge(String namespace, String metric, double delta, Unit unit, Set<Dimension> dimensions) Adjust the specified gauge's value.- Parameters:
namespace- metric namespacemetric- metric namedelta- amount to adjust byunit- unit of measuredimensions- dimensions identifying the entity- Since:
- 5.4.0
-
unique
Report a unique value in a bucket or "set".The server will track the number of unique identifiers in the named set and report as a counter.
- Parameters:
metric- set nameidentifier- unique identifier
-
unique
Report a unique value in a bucket or "set".The server will track the number of unique identifiers in the named set and report as a counter.
- Parameters:
namespace- metric namespacemetric- set nameidentifier- unique identifier- Since:
- 5.4.0
-
unique
Report a unique value in a bucket or "set".The server will track the number of unique identifiers in the named set and report as a counter.
- Parameters:
metric- set nameidentifier- unique identifierdimensions- dimensions identifying the entity
-
unique
Report a unique value in a bucket or "set".The server will track the number of unique identifiers in the named set and report as a counter.
- Parameters:
namespace- metric namespacemetric- set nameidentifier- unique identifierdimensions- dimensions identifying the entity- Since:
- 5.4.0
-
timer
Report elapsed time (in milliseconds) of an operation.- Parameters:
metric- timer namemillis- elapsed milliseconds
-
timer
Report elapsed time (in milliseconds) of an operation.- Parameters:
namespace- metric namespacemetric- timer namemillis- elapsed milliseconds- Since:
- 5.4.0
-
timer
Report elapsed time (in milliseconds) of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- timer namemillis- elapsed millisecondssampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.
-
timer
Report elapsed time (in milliseconds) of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- timer namemillis- elapsed millisecondssampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.- Since:
- 5.4.0
-
timer
Report elapsed time (in milliseconds) of an operation.- Parameters:
metric- timer namemillis- elapsed millisecondsdimensions- dimensions identifying the entity
-
timer
Report elapsed time (in milliseconds) of an operation.- Parameters:
namespace- metric namespacemetric- timer namemillis- elapsed millisecondsdimensions- dimensions identifying the entity- Since:
- 5.4.0
-
timer
Report elapsed time (in milliseconds) of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- timer namemillis- elapsed millisecondssampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity
-
timer
default void timer(String namespace, String metric, long millis, double sampleRate, Set<Dimension> dimensions) Report elapsed time (in milliseconds) of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- timer namemillis- elapsed millisecondssampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity- Since:
- 5.4.0
-
timer
Report elapsed time of an operation.- Parameters:
metric- timer namevalue- elapsed timeunit- value unit
-
timer
Report elapsed time of an operation.- Parameters:
namespace- metric namespacemetric- timer namevalue- elapsed timeunit- value unit- Since:
- 5.4.0
-
timer
Report elapsed time of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- timer namevalue- elapsed timeunit- value unitsampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.
-
timer
Report elapsed time of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- timer namevalue- elapsed timeunit- value unitsampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.- Since:
- 5.4.0
-
timer
Report elapsed time of an operation.- Parameters:
metric- timer namevalue- elapsed timeunit- value unitdimensions- dimensions identifying the entity
-
timer
default void timer(String namespace, String metric, long value, TimeUnit unit, Set<Dimension> dimensions) Report elapsed time of an operation.- Parameters:
namespace- metric namespacemetric- timer namevalue- elapsed timeunit- value unitdimensions- dimensions identifying the entity- Since:
- 5.4.0
-
timer
default void timer(String metric, long value, TimeUnit unit, double sampleRate, Set<Dimension> dimensions) Report elapsed time of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
metric- timer namevalue- elapsed timeunit- value unitsampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity
-
timer
default void timer(String namespace, String metric, long value, TimeUnit unit, double sampleRate, Set<Dimension> dimensions) Report elapsed time of an operation.This uses sampling in order to approximate the actual number of invocations. An update will be reported for only
sampleRate * 100percent of all invocations.- Parameters:
namespace- metric namespacemetric- timer namevalue- elapsed timeunit- value unitsampleRate- Percentage of invocations to actually report. If the specified value is zero or negative, nothing will be reported. If the value is 1 or greater, it will always report.dimensions- dimensions identifying the entity- Since:
- 5.4.0
-
event
Report an event.The event will be immediately reported for.
- Parameters:
name- event namemessage- messageseverity- severity
-
event
Report an event.The event will be immediately reported for.
- Parameters:
namespace- event namespacename- event namemessage- messageseverity- severity- Since:
- 5.4.0
-
event
Report an event.The event will be immediately reported for.
- Parameters:
name- event namemessage- messageseverity- severitydimensions- dimensions identifying the entity
-
event
default void event(String namespace, String name, String message, Severity severity, Set<Dimension> dimensions) Report an event.The event will be immediately reported for.
- Parameters:
namespace- event namespacename- event namemessage- messageseverity- severitydimensions- dimensions identifying the entity- Since:
- 5.4.0
-
attribute
Set the specified attribute's value.- Parameters:
name- attribute namevalue- attribute value
-
attribute
Set the specified attribute's value.- Parameters:
namespace- attribute namespacename- attribute namevalue- attribute value- Since:
- 5.4.0
-
attribute
Set the specified attribute's value.- Parameters:
metric- attribute namevalue- attribute valuedimensions- dimensions identifying the entity
-
attribute
Set the specified attribute's value.- Parameters:
namespace- attribute namespacemetric- attribute namevalue- attribute valuedimensions- dimensions identifying the entity- Since:
- 5.4.0
-