File tree 2 files changed +0
-11
lines changed 2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -1518,11 +1518,6 @@ impl Aggregator {
1518
1518
relay_statsd:: metric!(
1519
1519
gauge( MetricGauges :: BucketsCost ) = self . cost_tracker. total_cost as u64
1520
1520
) ;
1521
- for cost in self . cost_tracker . cost_per_project_key . values ( ) {
1522
- relay_statsd:: metric!(
1523
- histogram( MetricHistograms :: BucketsCostPerProjectKey ) = * cost as f64
1524
- ) ;
1525
- }
1526
1521
1527
1522
let mut buckets = HashMap :: < ProjectKey , Vec < Bucket > > :: new ( ) ;
1528
1523
Original file line number Diff line number Diff line change @@ -103,11 +103,6 @@ pub enum MetricHistograms {
103
103
/// - `backdated`: A flag indicating whether the metric was reported within the `initial_delay`
104
104
/// time period (`false`) or after the initial delay has expired (`true`).
105
105
BucketsDelay ,
106
-
107
- /// The storage cost of metrics buckets stored Relay's metrics aggregator, for a project key.
108
- ///
109
- /// See also [`MetricGauges::BucketsCost`].
110
- BucketsCostPerProjectKey ,
111
106
}
112
107
113
108
impl HistogramMetric for MetricHistograms {
@@ -117,7 +112,6 @@ impl HistogramMetric for MetricHistograms {
117
112
Self :: BucketsFlushedPerProject => "metrics.buckets.flushed_per_project" ,
118
113
Self :: BucketRelativeSize => "metrics.buckets.relative_bucket_size" ,
119
114
Self :: BucketsDelay => "metrics.buckets.delay" ,
120
- Self :: BucketsCostPerProjectKey => "metrics.buckets.cost_per_project_key" ,
121
115
}
122
116
}
123
117
}
You can’t perform that action at this time.
0 commit comments