
Company News
Meet the Socket Team at RSAC and BSidesSF 2026
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.
@openpanel/umami-exporter
Advanced tools
Barebones Postgres CSV exporter for Umami events (no Prisma).
Export your Umami data to a CSV which you can use for migrating to OpenPanel.dev.
Use npx with a Postgres URL:
npx @openpanel/umami-exporter "postgres://user:pass@host:5432/db" --output export.csv --job-id 00000000-0000-0000-0000-000000000000
Or via env vars:
export DATABASE_URL="postgres://user:pass@host:5432/db"
export OUTPUT=export.csv
export JOB_ID=00000000-0000-0000-0000-000000000000
npx @openpanel/umami-exporter
Write to stdout:
npx @openpanel/umami-exporter "postgres://..." --output - > export.csv
Header and column order exactly:
"website_id","session_id","visit_id","event_id","hostname","browser","os","device","screen","language","country","region","city","url_path","url_query","utm_source","utm_medium","utm_campaign","utm_content","utm_term","referrer_path","referrer_query","referrer_domain","page_title","gclid","fbclid","msclkid","ttclid","li_fat_id","twclid","event_type","event_name","tag","distinct_id","created_at","job_id"
event_type which is unquoted integer to match the sample.created_at is formatted as YYYY-MM-DD HH24:MI:SS from website_event.created_at.job_id is a constant per run (env/flag), appended to each row.--output, -o Output path; use - for stdout (default: export.csv)--job-id Job id to append to each row (default: all-zero UUID)--batch-size Cursor batch size (default: 50000)This package need access to your postgres database, by default, the port 5432 is not exposed in umami. You can expose it by adding (see below) to your docker-compose.yml and then restart it (docker compose restart)
ports:
- "5432:5432"
Ensure you have correct user and password for your database. Umami's default database url is postgresql://umami:umami@localhost:5432/umami
FAQs
Barebones Postgres CSV exporter for Umami events (no Prisma).
We found that @openpanel/umami-exporter demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Join Socket for live demos, rooftop happy hours, and one-on-one meetings during BSidesSF and RSA 2026 in San Francisco.

Research
/Security News
Malicious Packagist packages disguised as Laravel utilities install an encrypted PHP RAT via Composer dependencies, enabling remote access and C2 callbacks.

Research
/Security News
OpenVSX releases of Aqua Trivy 1.8.12 and 1.8.13 contained injected natural-language prompts that abuse local AI coding agents for system inspection and potential data exfiltration.