CONNECTOR · AMPLITUDE
Amplitude — Event analytics. Puxamos export bruto e reconstruímos funis em dbt.
CONNECTOR · AMPLITUDE
Amplitude
Event analytics. Puxamos export bruto e reconstruímos funis em dbt.
- categoriaOrigem · Product analytics
- alvo de frescorHourly via S3 / GCS export.
- modelo de authAPI key + secret por projeto.
- modo de syncExport JSONL comprimido → staging → dbt.
TABELAS SINCRONIZADAS
events, user_properties, sessions.
SCHEMA · EXEMPLO
schema.sqlSQL
CREATE TABLE amplitude.events (
event_type TEXT,
user_id TEXT,
device_id TEXT,
event_time TIMESTAMP,
event_properties JSONB
);QUERY · EXEMPLO
query.sqlSQL
SELECT event_type, COUNT(*) AS n
FROM amplitude.events
WHERE event_time >= now() - interval 0