AWS SDK for C++AWS SDK for C++ Version 1.11.791 |
#include <MeterAdapters.h>
A Open Telemetry Implementation of Meter.
Definition at line 21 of file MeterAdapters.h.
Definition at line 23 of file MeterAdapters.h.
Create a Counter that will measure a metric that can only increase in count.
| name | The metric name being recorded. |
| units | units The units of the measurement being recorded. |
| description | The description of the measurement. |
Implements smithy::components::tracing::Meter.
Create a Gauge instrument that will measure a provided callback function.
| name | The metric name being recorded. |
| callback | The callback function that will be recording the measurement in a async runtime. |
| units | The units of the measurement being recorded. |
| description | The description of the measurement. |
Implements smithy::components::tracing::Meter.
Create a Histogram that will measure a metric that can be translated into a statistical measurement.
| name | The metric name being recorded. |
| units | units The units of the measurement being recorded. |
| description | The description of the measurement. |
Implements smithy::components::tracing::Meter.
Create a UpDownCounter that will measure a metric that can increase/decrease in count.
| name | The metric name being recorded. |
| units | units The units of the measurement being recorded. |
| description | The description of the measurement. |
Implements smithy::components::tracing::Meter.