Skip to content

Commit

Permalink
Create onboarding-set-up-checklist-windows.toml (#692)
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkberry authored Nov 22, 2024
1 parent 8abcf8a commit 2f6d0e7
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions jetstream/onboarding-set-up-checklist-windows.toml
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'
)
"""

0 comments on commit 2f6d0e7

Please sign in to comment.