Product analytics API
- Tier: Ultimate
- Offering: GitLab.com, GitLab Self-Managed
- Status: Beta
The availability of this feature is controlled by a feature flag. For more information, see the history. This feature is not ready for production use.
Make sure to define the cube_api_base_url
and cube_api_key
application settings first using the API.
Send query request to Cube
Generate an access token that can be used to query the Cube API. For example:
POST /projects/:id/product_analytics/request/load
POST /projects/:id/product_analytics/request/dry-run
Attribute | Type | Required | Description |
---|---|---|---|
id | integer | yes | The ID of a project that the current user has read access to. |
include_token | boolean | no | Whether to include the access token in the response. (Only required for funnel generation.) |
Request body
The body of the load request must be a valid Cube query.
When measuring TrackedEvents
, you must use TrackedEvents.*
for dimensions
and timeDimensions
. The same rule applies when measuring Sessions
.
Tracked events example
{
"query": {
"measures": [
"TrackedEvents.count"
],
"timeDimensions": [
{
"dimension": "TrackedEvents.utcTime",
"dateRange": "This week"
}
],
"order": [
[
"TrackedEvents.count",
"desc"
],
[
"TrackedEvents.docPath",
"desc"
],
[
"TrackedEvents.utcTime",
"asc"
]
],
"dimensions": [
"TrackedEvents.docPath"
],
"limit": 23
},
"queryType": "multi"
}
Sessions example
{
"query": {
"measures": [
"Sessions.count"
],
"timeDimensions": [
{
"dimension": "Sessions.startAt",
"granularity": "day"
}
],
"order": {
"Sessions.startAt": "asc"
},
"limit": 100
},
"queryType": "multi"
}
Send metadata request to Cube
Return Cube Metadata for the Analytics data. For example:
GET /projects/:id/product_analytics/request/meta
Attribute | Type | Required | Description |
---|---|---|---|
id | integer | yes | The ID of a project that the current user has read access to. |
Docs
Edit this page to fix an error or add an improvement in a merge request.
Create an issue to suggest an improvement to this page.
Product
Create an issue if there's something you don't like about this feature.
Propose functionality by submitting a feature request.
Feature availability and product trials
View pricing to see all GitLab tiers and features, or to upgrade.
Try GitLab for free with access to all features for 30 days.
Get help
If you didn't find what you were looking for, search the docs.
If you want help with something specific and could use community support, post on the GitLab forum.
For problems setting up or using this feature (depending on your GitLab subscription).
Request support