(opts: TraceQueryOpts = {})
| 86 | |
| 87 | // Traces |
| 88 | async getTraces(opts: TraceQueryOpts = {}): Promise<TraceListResult> { |
| 89 | const query = this.buildQueryString(opts); |
| 90 | return this.fetch<TraceListResult>(`/dashboard/traces${query}`); |
| 91 | } |
| 92 | |
| 93 | async getTrace(id: string): Promise<TraceDetail> { |
| 94 | return this.fetch<TraceDetail>(`/dashboard/traces/${id}`); |
no test coverage detected