Return a collector corresponding to the specified metric category and name.
Declared in <balm_metric.h>
static
Collector*
lookupCollector(
char const* category,
char const* name,
MetricsManager* manager = 0);
Optionally specify a metrics manager used to provide the collector. If manager is 0, use the default metrics manager if initialized; if manager is 0 and the default metrics manager has not been initialized, return 0. The behavior is undefined unless category and name are null-terminated.
collector for category and name, or 0 if none is available
| Name | Description |
|---|---|
| category | null-terminated category name |
| name | null-terminated metric name |
| manager | metrics manager used to provide the collector (optional) |