(metricName: string, value: number)
| 98 | this.native.putAttribute(attribute, value); |
| 99 | } |
| 100 | putMetric(metricName: string, value: number): void { |
| 101 | this.native.putMetric(metricName, value); |
| 102 | } |
| 103 | removeMetric(metricName: string): void { |
| 104 | this.native.removeAttribute(metricName); |
| 105 | } |