We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 677ac26 commit 0b59b5aCopy full SHA for 0b59b5a
src/sentry/preprod/size_analysis/tasks.py
@@ -215,12 +215,13 @@ def compare_preprod_artifact_size_analysis(
215
216
time_now = timezone.now()
217
e2e_size_analysis_compare_duration = time_now - artifact.date_added
218
+ # TODO: Remove project_id_value once this metric's volume get too big to avoid high cardinality cost issues
219
metrics.distribution(
220
"preprod.size_analysis.compare.results_e2e",
221
e2e_size_analysis_compare_duration.total_seconds(),
222
sample_rate=1.0,
223
tags={
- "project_id": project_id,
224
+ "project_id_value": project_id,
225
"organization_id": org_id,
226
"artifact_type": artifact_type_name,
227
},
0 commit comments