(identifier: string)
| 135 | return HttpMetric.fromNative(this.native.newHttpMetric(url, httpMethod)); |
| 136 | } |
| 137 | newTrace(identifier: string): Trace { |
| 138 | return Trace.fromNative(this.native.newTrace(identifier)); |
| 139 | } |
| 140 | |
| 141 | startTrace(identifier: string): Trace { |
| 142 | const trace = this.newTrace(identifier); |
no test coverage detected