diff --git a/test/pc/e2e/network_quality_metrics_reporter.cc b/test/pc/e2e/network_quality_metrics_reporter.cc index 2df45291d8..513bdc0a5f 100644 --- a/test/pc/e2e/network_quality_metrics_reporter.cc +++ b/test/pc/e2e/network_quality_metrics_reporter.cc @@ -116,10 +116,10 @@ void NetworkQualityMetricsReporter::ReportStats( "average_send_rate", network_label, stats->PacketsSent() >= 2 ? stats->AverageSendRate().bytes_per_sec() : 0, "bytesPerSecond"); - ReportResult("bytes_dropped", network_label, stats->BytesDropped().bytes(), - "sizeInBytes"); - ReportResult("packets_dropped", network_label, stats->PacketsDropped(), - "unitless"); + ReportResult("bytes_discarded_no_receiver", network_label, + stats->BytesDropped().bytes(), "sizeInBytes"); + ReportResult("packets_discarded_no_receiver", network_label, + stats->PacketsDropped(), "unitless"); ReportResult("bytes_received", network_label, stats->BytesReceived().bytes(), "sizeInBytes"); ReportResult("packets_received", network_label, stats->PacketsReceived(), diff --git a/test/pc/e2e/stats_based_network_quality_metrics_reporter.cc b/test/pc/e2e/stats_based_network_quality_metrics_reporter.cc index e4efe1fd77..2bc5344165 100644 --- a/test/pc/e2e/stats_based_network_quality_metrics_reporter.cc +++ b/test/pc/e2e/stats_based_network_quality_metrics_reporter.cc @@ -212,10 +212,10 @@ void StatsBasedNetworkQualityMetricsReporter::ReportStats( const NetworkLayerStats& network_layer_stats, int64_t packet_loss, const Timestamp& end_time) { - ReportResult("bytes_dropped", pc_label, + ReportResult("bytes_discarded_no_receiver", pc_label, network_layer_stats.stats->BytesDropped().bytes(), "sizeInBytes"); - ReportResult("packets_dropped", pc_label, + ReportResult("packets_discarded_no_recevier", pc_label, network_layer_stats.stats->PacketsDropped(), "unitless"); ReportResult("payload_bytes_received", pc_label,