Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add import and export overview to 'Start here' #10045

Merged
merged 6 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions contents/docs/getting-started/data-import-export.mdx
daniloc marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: Data import and export
---

There are many ways to get data in and out of PostHog. In addition to the automated convenience of data pipeline sources and destinations, we’ve also got some manual options for bringing data in from other platforms.
daniloc marked this conversation as resolved.
Show resolved Hide resolved

## Data pipeline

Data pipeline streamlines the [ingest and export](/docs/cdp) of data to dozens of sources and destinations.
daniloc marked this conversation as resolved.
Show resolved Hide resolved

### Sources

[Combine data](docs/data-warehouse/setup) from your database, Stripe, or even a bucket full of CSVs. Join it to your existing person and event data with data warehouse.
daniloc marked this conversation as resolved.
Show resolved Hide resolved

### Destinations

[Export data as it arrives](/docs/cdp/destinations). Easily set up filters to get just the events you’re looking for. Choose from dozens of destinations, customize our webhook destination, or even build your own with a bit of code.

### Batch exports

Schedule [bulk data exports](/docs/cdp/batch-exports) to select destinations.

## Historical migration

PostHog offers [migration guides](/docs/migrate) to help you move your data from other providers.
4 changes: 4 additions & 0 deletions src/navs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1207,6 +1207,10 @@ export const docsMenu = {
name: 'Enabling beta features',
url: '/docs/getting-started/enable-betas',
},
{
name: 'Data import and export',
url: '/docs/getting-started/data-import-export',
},
],
},
{
Expand Down
Loading