Collect and forward analytics events to your BigQuery tables.
Edgee Event | BigQuery Record | Description |
---|---|---|
Page | A new record in the configured table | Full JSON dump of the Page event |
Track | A new record in the configured table | Full JSON dump of the Track event |
User | A new record in the configured table | Full JSON dump of the User event |
edgee/bigquery
from the list of available components.SELECT context.client.ip AS ip FROM your-project-id.your-dataset-id.your-table-id
.SELECT data.track.name FROM your-project-id.your-dataset-id.your-table-id WHERE event_type = 'track'
SELECT data.page.path FROM your-project-id.your-dataset-id.your-table-id WHERE event_type = 'page'