diff --git a/docs/.gitbook/assets/getting-started-connection.png b/docs/.gitbook/assets/getting-started-connection.png new file mode 100644 index 000000000000..a968a42cc17d Binary files /dev/null and b/docs/.gitbook/assets/getting-started-connection.png differ diff --git a/docs/.gitbook/assets/getting-started-destination.png b/docs/.gitbook/assets/getting-started-destination.png new file mode 100644 index 000000000000..7971c3d66e14 Binary files /dev/null and b/docs/.gitbook/assets/getting-started-destination.png differ diff --git a/docs/.gitbook/assets/getting-started-logs.png b/docs/.gitbook/assets/getting-started-logs.png new file mode 100644 index 000000000000..8b83d64efc45 Binary files /dev/null and b/docs/.gitbook/assets/getting-started-logs.png differ diff --git a/docs/.gitbook/assets/getting-started-source.png b/docs/.gitbook/assets/getting-started-source.png new file mode 100644 index 000000000000..ea13f5e44a89 Binary files /dev/null and b/docs/.gitbook/assets/getting-started-source.png differ diff --git a/docs/quickstart/add-a-destination.md b/docs/quickstart/add-a-destination.md index 3a47d28e0cf6..5802e1c6786d 100644 --- a/docs/quickstart/add-a-destination.md +++ b/docs/quickstart/add-a-destination.md @@ -10,5 +10,5 @@ To set it up, just follow the instructions on the screenshot below. You might have to wait ~30 seconds before the fields show up because it is the first time you're using Airbyte. {% endhint %} -![](../.gitbook/assets/demo_destination.png) +![](../.gitbook/assets/getting-started-destination.png) diff --git a/docs/quickstart/add-a-source.md b/docs/quickstart/add-a-source.md index 72599f0376c7..d41cfa137b67 100644 --- a/docs/quickstart/add-a-source.md +++ b/docs/quickstart/add-a-source.md @@ -1,6 +1,8 @@ # Add a Source -Our demo source will pull data from an external API. It will replicate the closing price of currencies compared to USD since the specified start date. +You can either follow this tutorial from the onboarding or through the UI, where you can first navigate to the `Sources` tab on the right bar. + +Our demo source will pull data from an external API, which will pull down the information on one specified Pokémon. To set it up, just follow the instructions on the screenshot below. @@ -8,5 +10,5 @@ To set it up, just follow the instructions on the screenshot below. You might have to wait ~30 seconds before the fields show up because it is the first time you're using Airbyte. {% endhint %} -![](../.gitbook/assets/demo_source.png) +![](../.gitbook/assets/getting-started-source.png) diff --git a/docs/quickstart/set-up-a-connection.md b/docs/quickstart/set-up-a-connection.md index 78cfad30ed59..8e892c025c6e 100644 --- a/docs/quickstart/set-up-a-connection.md +++ b/docs/quickstart/set-up-a-connection.md @@ -1,10 +1,10 @@ # Set up a Connection -When we create the connection, we can select which data stream we want to replicate. We can also select if we want an incremental replication. The replication will run at the specified sync frequency. +When we create the connection, we can select which data stream we want to replicate. We can also select if we want an incremental replication, although it isn't currently offered for this source. The replication will run at the specified sync frequency. To set it up, just follow the instructions on the screenshot below. -![](../.gitbook/assets/demo_connection.png) +![](../.gitbook/assets/getting-started-connection.png) ## Check the logs of your first sync @@ -12,28 +12,28 @@ After you've completed the onboarding, you will be redirected to the source list From there, you can look at the logs, download them, force a sync and adjust the configuration of your connection. -![](../.gitbook/assets/demo_history.png) +![](../.gitbook/assets/getting-started-logs.png) ## Check the data of your first sync Now let's verify that this worked: ```bash -cat /tmp/airbyte_local/json_data/_airbyte_raw_exchange_rate.jsonl +cat /tmp/airbyte_local/json_data/_airbyte_raw_pokemon.jsonl ``` You should see one line for each day that was replicated. -If you have [`jq`](https://stedolan.github.io/jq/) installed, let's look at the evolution of `EUR`. +If you have [`jq`](https://stedolan.github.io/jq/) installed, let's look at some of the data that we have replicated about `charizard`. We'll pull its abilities and weight: ```bash -cat /tmp/airbyte_local/test_json/_airbyte_raw_exchange_rate.jsonl | -jq -c '.data | {date: .date, EUR: .EUR }' +cat _airbyte_raw_pokemon.jsonl | +jq '._airbyte_data | {abilities: .abilities, weight: .weight}' ``` -And there you have it. You've pulled data from an API directly into a file and all of the actual configuration for this replication only took place in the UI. +And there you have it. You've pulled data from an API directly into a file, with all of the actual configuration for this replication only taking place in the UI. -Note: If you are using Airbyte on Windows with WSL2 and Docker, refer to [this tutorial](../tutorials/locating-files-local-destination.md) or [this section](../integrations/destinations/local-json.md#access-replicated-data-files) in the local-json destination guide to locate the replicated folder and file. +Note: If you are using Airbyte on Windows with WSL2 and Docker, refer to [this tutorial](../operator-guides/locating-files-local-destination.md) or [this section](../integrations/destinations/local-json.md#access-replicated-data-files) in the local-json destination guide to locate the replicated folder and file. ## That's it!