From 540c237092d82c180fc5ba3488f75b54e521dd6f Mon Sep 17 00:00:00 2001 From: Tony Xiao Date: Mon, 26 Jun 2023 11:28:41 -0400 Subject: [PATCH] feat(profiling): Add insufficient data as client discard reason (#4407) We'd like to add a new client discard reason called `insufficient_data` for the use case where the SDK did not collect enough data for a valid profile and discards it as a result. --- snuba/datasets/processors/outcomes_processor.py | 1 + 1 file changed, 1 insertion(+) diff --git a/snuba/datasets/processors/outcomes_processor.py b/snuba/datasets/processors/outcomes_processor.py index 2f4a5dd926..4485b1d42b 100644 --- a/snuba/datasets/processors/outcomes_processor.py +++ b/snuba/datasets/processors/outcomes_processor.py @@ -33,6 +33,7 @@ "sample_rate", "send_error", "internal_sdk_error", + "insufficient_data", "backpressure", ] )