Pages Onboarding Wizard Usage statistics
Before the Pages Onboarding wizard was introduced, a tracking event was introduced for one month prior to establish the baseline of User interface interactions with GitLab Pages.
In this timeframe the following number of interactions was counted:
| MONTH | interactions |
|---|---|
| 2022-07* | 80 |
| 2022-08 | 437 |
*the baseline tracking started on 2022-07-27
As a comparison baseline we selected the 437 events that occurred in august, as this was a complete month of tracking.
Query
select DATE_TRUNC('month', derived_tstamp) as `month`, count(*) from legacy.snowplow_structured_events_all where event_label = 'pages_docs_link' group by event_label, `month` order by `month` asc;
After the feature was made available on GitLab.com the following initial interactions have been registered:
| MONTH | interactions | compared to baseline |
|---|---|---|
| 2022-09 | 1315 | 3.01x |
| 2022-10 | 1431 | 3.27x |
| 2022-11 | 1464 | 3.35x |
| 2022-12 | 1202 | 2.75x |
| 2023-01 | 1346 | 3.08x |
| 2023-02 | 1287 | 2.95x |
| 2023-03 | 1596 | 3.65x |
| 2023-04 | 1426 | 3.26x |
| 2023-05 | 1427 | 3.27x |
| 2023-06 | 1113 | 2.55x |
| 2023-07 | 1323 | 3.03x |
| 2023-08 | 1513 | 3.46x |
| average\ | 1370 | 3.14x |
Query
select DATE_TRUNC('month', derived_tstamp) as `month`, count(*) from legacy.snowplow_structured_events_all where event_label = 'pipeline_wizard_navigation' and event_property = 'next' and contexts['data'][0]['data']['extra']['fromStep'] = 1 group by `month` order by `month` asc;
Edited by Janis Altherr