(attribute: string)
| 14 | |
| 15 | export interface ITrace { |
| 16 | getAttribute(attribute: string): string | null; |
| 17 | getMetric(metricName: string): number; |
| 18 | getMetrics(): { [key: string]: number }; |
| 19 | incrementMetric(metricName: string, incrementBy: number): void; |