Skip to content

Product Analytics flow

Product analytics

DETAILS: Tier: Ultimate Offering: GitLab.com Status: Beta

  • Introduced in GitLab 15.4 as an Experiment feature with a flag named cube_api_proxy. Disabled by default.
  • cube_api_proxy revised to only reference the Product Analytics API in GitLab 15.6.
  • cube_api_proxy removed and replaced with product_analytics_internal_preview in GitLab 15.10.
  • product_analytics_internal_preview replaced with product_analytics_dashboards in GitLab 15.11.
  • Snowplow integration introduced in GitLab 15.11 with a flag named product_analytics_snowplow_support. Disabled by default.
  • Snowplow integration feature flag product_analytics_snowplow_support removed in GitLab 16.4.
  • Moved from GitLab self-managed to GitLab.com in 16.7.
  • Enabled in GitLab 16.7 as a Beta feature.

This page is a work in progress, and we're updating the information as we add more features. For more information, see the group direction page. To leave feedback about Product Analytics bugs or functionality:

  • Comment on issue 391970.
  • Create an issue with the group::product analytics label.

How product analytics works

Product analytics uses several tools:

  • Snowplow - A developer-first engine for collecting behavioral data, and passing it through to ClickHouse.
  • ClickHouse - A database suited to store, query, and retrieve analytical data.
  • Cube - A universal semantic layer that provides an API to run queries against the data stored in ClickHouse.

The following diagram illustrates the product analytics flow:

---
title: Product Analytics flow
---
flowchart TB
    subgraph Event collection
        A([SDK]) --Send user data--> B[Snowplow Collector]
        B --Pass data through--> C[Snowplow Enricher]
    end
    subgraph Data warehouse
        C --Transform and enrich data--> D([ClickHouse])
    end
    subgraph Data visualization with dashboards
        E([Dashboards]) --Generated from the YAML definition--> F[Panels/Visualizations]
        F --Request data--> G[Product Analytics API]
        G --Run Cube queries with pre-aggregations--> H[Cube]
        H --Get data from database--> D
        D --Return results--> H
        H --Transform data to be rendered--> G
        G --Return data--> F
    end

Enable product analytics

  • Introduced in GitLab 15.6 with a flag named cube_api_proxy. Disabled by default.
  • Moved behind a flag named product_analytics_admin_settings in GitLab 15.7. Disabled by default.
  • cube_api_proxy removed and replaced with product_analytics_internal_preview in GitLab 15.10.
  • product_analytics_internal_preview replaced with product_analytics_dashboards in GitLab 15.11.

To track events in your project's applications on GitLab.com, you must enable and configure Product Analytics.

Prerequisites:

  • You must be an Owner of the group you wish to enable Product Analytics for.

Group-level settings

NOTE: These group-level settings are available for top-level groups and cascade to all projects that belong to the group.

  1. On the left sidebar, select Search or go to and find your group.
  2. Select Settings > General.
  3. Expand the Permissions and group features section.
  4. Check Use Experiment and Beta features checkbox.
  5. Check Use product analytics checkbox.
  6. Select Save changes.

Project-level settings

You can override the instance-level settings defined by the administrator on a per-project basis. This allows you to have a different configured product analytics instance for your project.

Prerequisites:

  • You must have at least the Maintainer role for the project or group the project belongs to.
  • The project must be in a group namespace.
  1. On the left sidebar, select Search or go to and find your project.
  2. Select Settings > Analytics.
  3. Expand Data sources and enter the configuration values.
  4. Select Save changes.

Data retention

If GitLab manages your product analytics instance, then your analytics data will be retained for 1 year.

You can request to delete your data at any time by contacting support.

Onboard a GitLab project

Onboarding a GitLab project means preparing it to receive events that are used for product analytics.

To onboard a project:

  1. On the left sidebar, select Search or go to and find your project.
  2. Select Analyze > Analytics dashboards.
  3. Under Product analytics, select Set up.
  4. Select Set up product analytics. Your instance is being created, and the project onboarded.

Instrument your application

To instrument code to collect data, use one or more of the existing SDKs:

Product analytics dashboards

  • Introduced in GitLab 15.5 with a flag named product_analytics_internal_preview. Disabled by default.
  • product_analytics_internal_preview replaced with product_analytics_dashboards in GitLab 15.11.

Product analytics dashboards are a subset of dashboards under Analytics dashboards.

Specifically, product analytics dashboards and visualizations use the cube_analytics data type. The cube_analytics data type connects to the Cube instance defined when product analytics was enabled. All filters and queries are sent to the Cube instance, and the returned data is processed by the product analytics data source to be rendered by the appropriate visualizations.

Data table visualizations from cube_analytics have an additional configuration option for rendering links. This option is an array of objects, each with text and href properties to specify the dimensions to be used in links. If href contains multiple dimensions, values are joined into a single URL. View an example.

Filling missing data

  • Introduced in GitLab 16.3 with a flag named product_analytics_dashboards. Disabled by default.

When exporting data or viewing dashboards, if there is no data for a given day, the missing data is autofilled with 0.

The autofill approach has both benefits and limitations.

  • Benefits:
    • The visualization's day axis matches the selected date range, removing ambiguity about missing data.
    • Data exports have rows for the entire date range, making data analysis easier.
  • Limitations:
    • The day granularity must be used. All other granularities are not supported.
    • Only date ranges defined by the inDateRange filter are filled.
      • The date selector in the UI already uses this filter.
    • The filling of data ignores the query-defined limit. If you set a limit of 10 data points over 20 days, it returns 20 data points, with the missing data filled by 0.

Issue 417231 proposes a solution to this limitation.

Funnel analysis

Use funnel analysis to understand the flow of users through your application, and where users drop out of a predefined flow (for example, a checkout process or ticket purchase).

Each product can also define an unlimited number of funnels. Like dashboards, funnels are defined using the GitLab YAML schema, and stored in the .gitlab/analytics/funnels/ directory of a project repository.

Funnel definitions must include the keys name and seconds_to_convert, and an array of steps.

Key Description
name The name of the funnel.
seconds_to_convert The number of seconds a user has to complete the funnel.
steps An array of funnel steps.

Each step must include the keys name, target, and action.

Key Description
name The name of the step. This should be a unique slug.
action The action performed. (Only pageview is supported.)
target The target of the step. (Because only pageview is supported, this should be a path.)

Example funnel definition

The following example defines a funnel that tracks users who completed a purchase within one hour by going through three target pages:

name: completed_purchase
seconds_to_convert: 3600
steps:
  - name: view_page_1
    target: '/page1.html'
    action: 'pageview'
  - name: view_page_2
    target: '/page2.html'
    action: 'pageview'
  - name: view_page_3
    target: '/page3.html'
    action: 'pageview'

Query a funnel

You can query the funnel data with the REST API. To do this, you can use the example query body below, where you need to replace FUNNEL_NAME with your funnel's name.

NOTE: The afterDate filter is not supported. Use beforeDate or inDateRange.

{
  "query": {
      "measures": [
        "FUNNEL_NAME.count"
      ],
      "order": {
        "completed_purchase.count": "desc"
      },
      "filters": [
        {
          "member": "FUNNEL_NAME.date",
          "operator": "beforeDate",
          "values": [
            "2023-02-01"
          ]
        }
      ],
      "dimensions": [
        "FUNNEL_NAME.step"
      ]
    }
}

Raw data export

Exporting the raw event data from the underlying storage engine can help you debug and create datasets for data analysis.

Because Cube acts as an abstraction layer between the raw data and the API, the exported raw data has some caveats:

  • Data is grouped by the selected dimensions. Therefore, the exported data might be incomplete, unless including both utcTime and userAnonymousId.
  • Data is by default limited to 10,000 rows, but you can increase the limit to maximum 50,000 rows. If your dataset has more than 50,000 rows, you must paginate through the results by using the limit and offset parameters.
  • Data is always returned in JSON format. If you need it in a different format, you need to convert the JSON to the required format using a scripting language of your choice.

Issue 391683 tracks efforts to implement a more scalable export solution.

Export raw data with Cube queries

You can query the raw data with the REST API, and convert the JSON output to any required format.

To export the raw data for a specific dimension, pass a list of dimensions to the dimensions key. For example, the following query outputs the raw data for the attributes listed:

POST /api/v4/projects/PROJECT_ID/product_analytics/request/load?queryType=multi

{
    "query":{
  "dimensions": [
    "TrackedEvents.docEncoding",
    "TrackedEvents.docHost",
    "TrackedEvents.docPath",
    "TrackedEvents.docSearch",
    "TrackedEvents.eventType",
    "TrackedEvents.localTzOffset",
    "TrackedEvents.pageTitle",
    "TrackedEvents.src",
    "TrackedEvents.utcTime",
    "TrackedEvents.vpSize"
  ],
  "order": {
    "TrackedEvents.apiKey": "asc"
  }
    }
}

If the request is successful, the returned JSON includes an array of rows of results.

View product analytics usage quota

Product analytics usage quota is calculated from the number of events received from instrumented applications.

To view product analytics usage quota:

  1. On the left sidebar, select Search or go to and find your group.
  2. Select Settings > Usage quota.
  3. Select the Product analytics tab.

The tab displays the monthly totals for the group, and a breakdown of usage per project. The current month displays events counted to date.

The usage quota excludes projects that are not onboarded with product analytics.

Troubleshooting

No events are collected

Check your instrumentation details, and make sure product analytics is enabled and set up correctly.