How to build Hightouch dashboards in Metabase
Hightouch is a reverse-ETL and activation platform that syncs warehouse data — audiences, traits, events — into marketing and sales tools. Metabase is where you turn that marketing data into shared, trustworthy dashboards. This guide covers two complementary paths: a lightweight MCP + CLI route that pulls live data with the Hightouch MCP server and loads a CSV into Metabase with the Metabase CLI, and a durable pipeline route that syncs Hightouch daily stats into a database so you can build dashboards anyone can read.
How do you connect Hightouch to Metabase?
Most teams combine both routes: use MCP and CLI uploads for a fast first pass, then move recurring marketing reporting to a warehouse-backed model.
Live data in, quick analysis out
Pair the Hightouch MCP server with the Metabase CLI. Use MCP for live lookups, write a scoped result to CSV, then load it into Metabase as a ready-to-query table and model.
- Quick lookups such as "show me sync success rate by destination"
- Loading a Hightouch export into Metabase in seconds
- Spot-checks and one-off analyses without a warehouse
- Great for exploration, not governed recurring reporting
- Use read-only/scoped credentials wherever the MCP server supports them
- CSV uploads are snapshots — refresh or move to the pipeline for history
Durable dashboards with history
Sync Hightouch daily stats and entities into a database or warehouse with a connector, custom pipeline, or API, then point Metabase at it.
- Hightouch reporting that marketing leaders depend on
- Joining Hightouch data with CRM, revenue, or product data
- Long-run trends for sync success rate by destination and rows added, changed, and removed per sync
- You own the refresh schedule and the rollup grain
- Sync daily aggregates and entities — not raw event streams
- Metric definitions must be consistent across channels and teams
What can you analyze from Hightouch data in Metabase?
- Sync success rate by destination — built from sync runs and the related syncs, models, audiences data your sync exposes.
- Rows added, changed, and removed per sync — built from sync runs and the related syncs, models, audiences data your sync exposes.
- Sync duration and latency trends — built from sync runs and the related syncs, models, audiences data your sync exposes.
- Audience size over time — built from sync runs and the related syncs, models, audiences data your sync exposes.
- Failed rows by error category — built from sync runs and the related syncs, models, audiences data your sync exposes.
Which Hightouch dashboards should you build in Metabase?
Pipeline health
Whether events and syncs are flowing at all.
- Sync success rate by destination by week (line)
- Failed runs and error reasons (table)
- Sync latency: scheduled vs. landed (line)
- Destinations with stale data (table)
Event volume and quality
What's moving through the pipes, and whether it's clean.
- Events by source by day (stacked area)
- Volume anomalies vs. trailing average (line)
- Schema violations and blocked events (table)
- New event names appearing this week (table)
Identity and audiences
Whether profiles resolve and audiences stay fresh.
- Identified vs. anonymous profile share (line)
- Audience sizes over time (line)
- Audience sync freshness by destination (table)
- Profile merges per week (bar)
Activation coverage
Whether the customer-data investment reaches the tools that act on it.
- Destinations by team and status (table)
- Rows synced to activation tools by week (stacked bar)
- Coverage: sources instrumented vs. planned (progress)
- Incidents traced to data delays (number)
How do you use the Hightouch MCP server with the Metabase CLI?
Pair the Hightouch MCP server with the Metabase CLI for fast, hands-on analysis. MCP is useful for scoped lookups and summarized exports; the Metabase CLI's upload command loads CSV data into Metabase and creates a ready-to-query table and model.
Example workflow
- Ask the MCP server for the last 30 days of sync runs by source and destination, with statuses.
- Export the result as CSV, keeping stable IDs, channels, campaigns, and dates.
- Run
mb upload csvto load it into Metabase as a table and model, then build questions and dashboards on top.
Be honest about the limits
- MCP lookups are excellent for exploration, not scheduled reporting.
- A CSV upload is a snapshot; refresh it with
mb upload replaceor move to the pipeline for real history. - Per-run sync outcomes and daily event counts are required for reliability and volume trends.
mb upload csvneeds an uploads database configured under Admin → Settings → Uploads.
How do you set up Hightouch MCP and the Metabase CLI?
Hightouch MCP serverofficial
- Transport
- Hosted — enabled per workspace by Hightouch
- Auth
- Workspace login, respecting workspace RBAC
- Access
- Beta, workspace-gated — not available everywhere; contact Hightouch to enable it (no extra cost)
- Best for
- Live scoped lookup and export
Metabase CLIofficial
- Install
npm install -g @metabase/cli- Auth
mb auth login- Load data
mb upload csv --file data.csv- Requires
- An uploads database (Admin → Settings → Uploads)
The server covers audience building, journey and schema exploration, and performance analysis — but access is enabled per workspace, so there's no public endpoint to paste into a client config. For sync observability you don't need it anyway: the audit tables below land in your own warehouse.
# Install the Metabase CLI
npm install -g @metabase/cli
# Log in (opens your browser; requires Metabase v62+)
mb auth login --url https://your-metabase.example.com
# Load a sync-runs export — creates a table AND a model
mb upload csv --file hightouch-sync-runs.csv --collection root
# Refresh that same table later from a new export
mb upload replace <table-id> --file hightouch-sync-runs.csvCan you generate a Hightouch dashboard with AI?
Yes. Use the prompt below with any assistant that can run the Hightouch MCP server and the Metabase CLI. It works end to end: if Hightouch tables already exist in Metabase it analyzes those; otherwise it pulls scoped, summarized data over MCP, loads it with mb upload csv, then builds the dashboard and caveats any metric that needs missing history.
Create a polished Metabase dashboard for Hightouch customer data analytics.
Work end to end: get the data into Metabase if it isn't there yet, then build.
Goal: Help marketing and growth leaders understand event volume, sync reliability, identity resolution, and whether downstream tools receive fresh data from Hightouch data.
Step 1 — Find or load the data:
- First, check what already exists in Metabase (search for hightouch tables and
models). If durable Hightouch data is already present — synced from a warehouse
or uploaded earlier — use it and skip to Step 2.
- If nothing is there, pull a scoped, summarized export with the Hightouch MCP server:
sync runs, plus syncs, models, audiences.
Prefer daily aggregates over raw events. Write each result to a CSV,
then load it with the Metabase CLI — run "mb upload csv --file <export>.csv" so
each upload creates a table and a ready-to-query model. Use "mb upload replace
<table-id> --file <export>.csv" to refresh an existing table instead of creating
duplicates.
Step 2 — Inspect before querying:
Do not assume exact table or column names. Inspect available fields, channels,
campaigns, dates, and whether daily history exists before creating trend or
pacing cards.
Important:
- Build on whatever data is present; don't claim Metabase connects natively to
Hightouch — it reads a database or CLI-uploaded tables.
- Never try to load raw event or click streams into Metabase; use daily
aggregates, campaign-grain stats, and entity tables.
- Only compute rates (CTR, conversion rate, ROAS, CAC) when both numerator and
denominator exist — and state the attribution model when reporting conversions.
- Exclude test campaigns and internal traffic from headline cards, and keep
currency consistent when spend spans accounts.
- A single CSV is a point-in-time snapshot: only build trend cards if there is a
usable date column or multiple periods have been uploaded.
Dashboard title: Hightouch Customer Data Overview
Sections:
1. Executive summary: Events last 7 days; Sync success rate; Stale
destinations; Identified profile share.
2. Pipeline: Sync success rate and failed runs by destination; latency trend.
3. Volume: Events by source by day; anomalies vs. trailing average.
4. Quality: Schema violations, blocked events, and new event names.
5. Audiences: Sizes over time; sync freshness; rows delivered to activation tools.
Filters: Date range, Channel, Campaign, Country, Device, Segment.
Output: Build the dashboard if you have permission; otherwise provide the exact
questions, SQL, model definitions, and layout. Include caveats for any metric
that cannot be calculated from the available data.How do you sync Hightouch data into a database or warehouse?
For dashboards that need history and reliability, land Hightouch daily stats and entities in a database first, then connect Metabase to that database.
Connector options
- Managed ETL — use a connector when one covers the objects you need.
- Custom pipeline — use the Hightouch REST API for control over grain, fields, and refresh cadence.
- MCP + CSV — use this for quick exploration and one-off slices.
Enable warehouse sync logs and Hightouch writes its own observability data back to you: a hightouch_audit schema with sync_runs, sync_snapshot, and sync_changelog tables (Lightning sync engine required). That plus the REST API's sync metadata is everything the dashboards on this page need.
Notes
- Decide the rollup grain first (daily per campaign/channel is the workhorse) — it drives warehouse cost and every trend card.
- Land raw entity tables first, then build clean Metabase models on top.
- Normalize source, destination, event name, date, event counts, sync status, rows moved, and error counts fields.
How should you model Hightouch data in Metabase?
Core tables
| Table | Grain | Key columns |
|---|---|---|
hightouch_audit.sync_runs | one row per sync run | sync_run_id, sync_id, started_at, finished_at, status, planned_add, planned_change, planned_remove, successful_rows, failed_rows |
hightouch_audit.sync_changelog | one row per changed row per sync run | sync_run_id, row_id, operation, changed_at |
sync_health_daily | one row per destination per day (modeled) | destination, stat_date, runs, successful_runs, rows_synced, failed_rows, avg_duration_seconds |
Modeling advice
- Build a clean
event_volume_dailymodel with common columns across tools, so multi-channel dashboards don't fork definitions. - Separate entity tables (campaigns, audiences, pages) from daily time-series rollups.
- Exclude test campaigns and internal traffic from headline metrics; keep channel and campaign as explicit columns.
- Use stable IDs for campaign, channel, and user joins; display names change.
Which Hightouch metrics should you track in Metabase?
| Metric | Definition | Notes |
|---|---|---|
| Sync success rate | Successful sync runs divided by all runs, per destination. | Weight by rows moved — one big failed run outweighs ten tiny successes. |
| Data freshness | Time since the last successful sync landed, per destination. | Alert on the destinations dashboards actually read from. |
| Activation rate | New users reaching the value moment, sliced by CDP-defined audiences. | Needs identity stitching to be trustworthy. |
| Conversion rate | Conversions measured downstream of synced audiences and journeys. | Attribute to the audience, not just the last channel. |
What SQL powers Hightouch dashboards in Metabase?
These assume a cleaned analytical model in a warehouse (PostgreSQL dialect). Adjust table and column names to match your pipeline.
The pipeline-reliability headline from sync run logs.
SELECT
destination,
date_trunc('week', run_started_at) AS week,
COUNT(*) AS runs,
COUNT(*) FILTER (WHERE status = 'success') AS successful_runs,
ROUND(
100.0 * COUNT(*) FILTER (WHERE status = 'success')
/ NULLIF(COUNT(*), 0), 2
) AS success_rate_pct,
SUM(rows_synced) AS rows_synced
FROM cdp_sync_runs
GROUP BY 1, 2
ORDER BY 1, 2;Catches silent tracking breakages and double-firing.
WITH daily AS (
SELECT source, event_date, SUM(event_count) AS events
FROM event_volume_daily
GROUP BY 1, 2
)
SELECT
source,
event_date,
events,
ROUND(AVG(events) OVER (
PARTITION BY source
ORDER BY event_date
ROWS BETWEEN 28 PRECEDING AND 1 PRECEDING
)) AS trailing_28d_avg,
ROUND(100.0 * events / NULLIF(AVG(events) OVER (
PARTITION BY source
ORDER BY event_date
ROWS BETWEEN 28 PRECEDING AND 1 PRECEDING
), 0) - 100, 1) AS pct_vs_trailing
FROM daily
ORDER BY source, event_date DESC;Freshness check for every downstream tool.
SELECT
destination,
MAX(run_finished_at) FILTER (WHERE status = 'success' AND COALESCE(rows_synced, 0) > 0)
AS last_successful_sync,
ROUND(EXTRACT(EPOCH FROM (
NOW() - MAX(run_finished_at) FILTER (WHERE status = 'success' AND COALESCE(rows_synced, 0) > 0)
)) / 3600, 1) AS hours_since_success
FROM cdp_sync_runs
GROUP BY destination
HAVING MAX(run_finished_at) FILTER (WHERE status = 'success' AND COALESCE(rows_synced, 0) > 0)
< NOW() - INTERVAL '24 hours'
ORDER BY hours_since_success DESC;