(metricName: string)
| 86 | return this.native.getAttribute(attribute); |
| 87 | } |
| 88 | getMetric(metricName: string): number { |
| 89 | return this.native.getLongMetric(metricName); |
| 90 | } |
| 91 | getMetrics(): { [key: string]: number } { |
| 92 | return deserialize(this.native.getAttributes()); |
| 93 | } |
nothing calls this directly
no outgoing calls
no test coverage detected