* Describes the metrics provided by this metric implementation. * (e.g. units, ...)
()
| 53 | * (e.g. units, ...) |
| 54 | */ |
| 55 | override describe(): {[key: string]: any} { |
| 56 | return mergeStringMaps(this._metrics.map((metric) => metric.describe())); |
| 57 | } |
| 58 | } |
| 59 | |
| 60 | function mergeStringMaps(maps: {[key: string]: string}[]): {[key: string]: string} { |
nothing calls this directly
no test coverage detected