@@ -67,7 +67,7 @@ bool TemporalMetricStorage::buildMetrics(CollectorHandle *collector,
6767 metric_data.end_ts = collection_ts;
6868
6969 // Direct conversion of delta metrics to point data
70- delta_metrics->GetAllEnteries (
70+ delta_metrics->GetAllEntries (
7171 [&metric_data](const MetricAttributes &attributes, Aggregation &aggregation) {
7272 PointDataAttributes point_data_attr;
7373 point_data_attr.point_data = aggregation.ToPoint ();
@@ -102,7 +102,7 @@ bool TemporalMetricStorage::buildMetrics(CollectorHandle *collector,
102102 : kAggregationCardinalityLimit ));
103103 for (auto &agg_hashmap : unreported_list)
104104 {
105- agg_hashmap->GetAllEnteries (
105+ agg_hashmap->GetAllEntries (
106106 [&merged_metrics, this ](const MetricAttributes &attributes, Aggregation &aggregation) {
107107 auto agg = merged_metrics->Get (attributes);
108108 if (agg)
@@ -135,7 +135,7 @@ bool TemporalMetricStorage::buildMetrics(CollectorHandle *collector,
135135 if (aggregation_temporarily == AggregationTemporality::kCumulative )
136136 {
137137 // merge current delta to previous cumulative
138- last_aggr_hashmap->GetAllEnteries (
138+ last_aggr_hashmap->GetAllEntries (
139139 [&merged_metrics, this ](const MetricAttributes &attributes, Aggregation &aggregation) {
140140 auto agg = merged_metrics->Get (attributes);
141141 if (agg)
@@ -172,7 +172,7 @@ bool TemporalMetricStorage::buildMetrics(CollectorHandle *collector,
172172 metric_data.aggregation_temporality = aggregation_temporarily;
173173 metric_data.start_ts = last_collection_ts;
174174 metric_data.end_ts = collection_ts;
175- result_to_export->GetAllEnteries (
175+ result_to_export->GetAllEntries (
176176 [&metric_data](const MetricAttributes &attributes, Aggregation &aggregation) {
177177 PointDataAttributes point_data_attr;
178178 point_data_attr.point_data = aggregation.ToPoint ();
0 commit comments