Skip to content

Commit

Permalink
don't track rtt and downlink as tags
Browse files Browse the repository at this point in the history
  • Loading branch information
dashed committed Oct 17, 2020
1 parent d871330 commit a722fee
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/tracing/src/browser/metrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,12 +171,10 @@ export class MetricsInstrumentation {

if (isMeasurementValue(connection.rtt)) {
this._measurements['connection.rtt'] = { value: connection.rtt };
transaction.setTag('connection.rtt', String(connection.rtt));
}

if (isMeasurementValue(connection.downlink)) {
this._measurements['connection.downlink'] = { value: connection.downlink };
transaction.setTag('connection.downlink', String(connection.downlink));
}
}

Expand Down

0 comments on commit a722fee

Please sign in to comment.