MultiTRegistry is a TransactionalGatherer that joins gathered metrics from multiple transactional gatherers. It is caller responsibility to ensure two registries have mutually exclusive metric families, no deduplication will happen.
| 997 | // It is caller responsibility to ensure two registries have mutually exclusive metric families, |
| 998 | // no deduplication will happen. |
| 999 | type MultiTRegistry struct { |
| 1000 | tGatherers []TransactionalGatherer |
| 1001 | } |
| 1002 | |
| 1003 | // NewMultiTRegistry creates MultiTRegistry. |
| 1004 | func NewMultiTRegistry(tGatherers ...TransactionalGatherer) *MultiTRegistry { |
nothing calls this directly
no outgoing calls
no test coverage detected