#include <bdlm_metricsregistry.h>
This class implements a mechanism that provides a registry of metrics that is transferable to implementations of the bdlm::MetricsAdapter
protocol. This class is usually a singleton.
See bdlm_metricsregistry
◆ Callback
◆ CallbackHandle
◆ MetricsRegistry()
Create a MetricsRegistry
object that stores the information necessary to forward the registration and unregistration of metrics to an adapter supplied with setMetricsRegistry
. Optionally specify a basicAllocator
used to supply memory. If basicAllocator
is 0, the currently installed default allocator is used.
◆ ~MetricsRegistry()
bdlm::MetricsRegistry::~MetricsRegistry |
( |
| ) |
|
◆ allocator()
◆ BSLMF_NESTED_TRAIT_DECLARATION()
◆ defaultInstance()
◆ numRegisteredCollectionCallbacks()
int bdlm::MetricsRegistry::numRegisteredCollectionCallbacks |
( |
| ) |
const |
◆ registerCollectionCallback()
Register the metric described by the specified descriptor
and associate it with the specified callback
to collect data from the metric, and load the specified result
with a handle can be used later to unregister the metric. After this operation completes, result->isRegistered()
will be true
. The metric and associated callback remain registered with this registry until either the handle is unregistered or destroyed. When a MetricsAdapter
is associated with this registry using setMetricsAdapter
, this objects registers all the registered metrics and callbacks with that adapter, and similarly unregisters them if the MetricAdapter
is later disassociated with this registry (either on this objects destruction, or due to a call to removeMetricsAdapter
or setMetricsAdapter
). In this way, a MetricsRegistry
serves as an intermediary between users of bdlm
that register metrics and the subsystem for collecting and publishing metrics being adapted by a concrete instance of bdlm::MetricAdapter
.
◆ removeMetricsAdapter()
void bdlm::MetricsRegistry::removeMetricsAdapter |
( |
MetricsAdapter * |
adapter | ) |
|
If the specified adapter
is the currently associated registrar, remove all registered metrics from it and disassociate the registry. Note that this operation takes an adapter
to disambiguate multiple, potentially concurrent, calls to this method and setMetricsAdapter
.
◆ setMetricsAdapter()
void bdlm::MetricsRegistry::setMetricsAdapter |
( |
MetricsAdapter * |
adapter | ) |
|
Configure this metrics registry to register all metrics collection callbacks with the specified adapter
. This operation first, if there is already an associated metrics adapter, unregisters all the collection callbacks from that adapter, then registers the collection callbacks with the new adapter
.
The documentation for this class was generated from the following file: