Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create onboarding-set-up-checklist-windows.toml #692

Merged
merged 3 commits into from
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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'
)
"""
Loading