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 3fee51c commit be9009aCopy full SHA for be9009a
src/sentry/dynamic_sampling/tasks/boost_low_volume_projects.py
@@ -283,6 +283,17 @@ def boost_low_volume_projects_of_org(
283
)
284
if rebalanced_projects is not None:
285
store_rebalanced_projects(org_id, rebalanced_projects)
286
+ metrics.incr(
287
+ "dynamic_sampling.boost_low_volume_projects_of_org.success",
288
+ tags={"type": "rebalanced"},
289
+ sample_rate=1,
290
+ )
291
+ else:
292
293
294
+ tags={"type": "not_rebalanced"},
295
296
297
298
299
def fetch_projects_with_total_root_transaction_count_and_rates(
0 commit comments