-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create onboarding-set-up-checklist-windows.toml (#692)
- Loading branch information
1 parent
8abcf8a
commit 2f6d0e7
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
[experiment] | ||
[experiment.exposure_signal] | ||
description = "Exposure events from the messaging feature" | ||
name = "saw_message" | ||
friendly_name = "Saw Message" | ||
select_expression = """( | ||
COALESCE(feature = 'featureCallout', false) | ||
)""" | ||
data_source = "exposure_events" | ||
window_start = 0 | ||
window_end = 7 | ||
|
||
[data_sources] | ||
[data_sources.exposure_events] | ||
from_expression = """( | ||
SELECT | ||
client_id, | ||
`mozfun.map.get_key`(event_map_values, 'branchSlug') AS branch, | ||
`mozfun.map.get_key`(event_map_values, 'featureId') AS feature, | ||
submission_date | ||
FROM | ||
`moz-fx-data-shared-prod.telemetry.events` | ||
WHERE | ||
event_category = 'normandy' | ||
AND (event_method = 'exposure' OR event_method = 'expose') | ||
AND submission_date >= '2024-11-14' | ||
AND event_string_value = 'onboarding-set-up-checklist-windows' | ||
) | ||
""" |