diff --git a/docs/content/getting-started/data-in.md b/docs/content/getting-started/data-in.md index 19e3f32fe4df..c9e161323c72 100644 --- a/docs/content/getting-started/data-in.md +++ b/docs/content/getting-started/data-in.md @@ -1,11 +1,11 @@ --- -title: Get data into Rerun +title: Send data to Rerun order: 400 --- -This section shows you how to get data into Rerun from either your running applications or existing files. +This section shows you how to send data to Rerun from either your running applications or existing files. -- Streaming data from your code +- Sending data from your code - [C++](./data-in/cpp.md) - [Python](./data-in/python.md) - [Rust](./data-in/rust.md) diff --git a/docs/content/getting-started/data-in/cpp.md b/docs/content/getting-started/data-in/cpp.md index 5c110fd0113f..a69d0ea5417f 100644 --- a/docs/content/getting-started/data-in/cpp.md +++ b/docs/content/getting-started/data-in/cpp.md @@ -1,5 +1,5 @@ --- -title: Stream from C++ +title: Send from C++ order: 1 --- diff --git a/docs/content/getting-started/data-in/python.md b/docs/content/getting-started/data-in/python.md index 07bc1d00265f..05cc20f83e54 100644 --- a/docs/content/getting-started/data-in/python.md +++ b/docs/content/getting-started/data-in/python.md @@ -1,5 +1,5 @@ --- -title: Stream from Python +title: Send from Python order: 2 --- diff --git a/docs/content/getting-started/data-in/rust.md b/docs/content/getting-started/data-in/rust.md index 4490d5c20ca2..74b49f353ca7 100644 --- a/docs/content/getting-started/data-in/rust.md +++ b/docs/content/getting-started/data-in/rust.md @@ -1,5 +1,5 @@ --- -title: Stream from Rust +title: Send from Rust order: 3 --- diff --git a/docs/content/getting-started/data-out.md b/docs/content/getting-started/data-out.md index bbd15edef226..f79a7519240f 100644 --- a/docs/content/getting-started/data-out.md +++ b/docs/content/getting-started/data-out.md @@ -1,5 +1,5 @@ --- -title: Get data out of Rerun +title: Query data out of Rerun order: 450 --- diff --git a/docs/content/howto/get-data-out.md b/docs/content/howto/get-data-out.md index 2a3e1cd37821..973141252c64 100644 --- a/docs/content/howto/get-data-out.md +++ b/docs/content/howto/get-data-out.md @@ -1,6 +1,6 @@ --- -title: Get data out of Rerun -order: 0 +title: Query data out of Rerun +order: 100 --- Rerun comes with a Dataframe API, which enables getting data out of Rerun from code. This page provides an overview of the API, as well as recipes to load the data in popular packages such as [Pandas](https://pandas.pydata.org), [Polars](https://pola.rs), and [DuckDB](https://duckdb.org). diff --git a/docs/content/howto/logging.md b/docs/content/howto/logging.md index 910e3d5eec2d..b996e1ea83db 100644 --- a/docs/content/howto/logging.md +++ b/docs/content/howto/logging.md @@ -1,5 +1,5 @@ --- -title: Logging -order: 100 +title: Send data to Rerun +order: 0 redirect: howto/logging/send-columns --- diff --git a/docs/content/howto/logging/custom-data.md b/docs/content/howto/logging/custom-data.md index 5fc43bae3b35..ee51ce1092db 100644 --- a/docs/content/howto/logging/custom-data.md +++ b/docs/content/howto/logging/custom-data.md @@ -1,5 +1,5 @@ --- -title: Log arbitrary data +title: Send user-defined data order: 200 description: How to use Rerun with custom data --- diff --git a/docs/content/howto/logging/send-columns.md b/docs/content/howto/logging/send-columns.md index 2e687a9121ed..cef7745b253a 100644 --- a/docs/content/howto/logging/send-columns.md +++ b/docs/content/howto/logging/send-columns.md @@ -1,5 +1,5 @@ --- -title: Log entire timeseries at once +title: Send entire timeseries at once order: 0 description: How to use the Rerun SDK to log big chunks of data in one call --- diff --git a/docs/content/howto/visualization/reuse-blueprints.md b/docs/content/howto/visualization/reuse-blueprints.md index ee4c6f8fcb67..c74823d5d87f 100644 --- a/docs/content/howto/visualization/reuse-blueprints.md +++ b/docs/content/howto/visualization/reuse-blueprints.md @@ -3,7 +3,7 @@ title: Re-use blueprints across sessions and SDKs order: 150 --- -While the [blueprint APIs](configure-viewer-through-code) are currently only available through [🐍 Python](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/), blueprints can be saved to file and then re-logged as needed from any language our SDKs support. +While the [blueprint APIs](configure-viewer-through-code.md) are currently only available through [🐍 Python](https://ref.rerun.io/docs/python/stable/common/blueprint_apis/), blueprints can be saved to file and then re-logged as needed from any language our SDKs support. This enables you to re-use your saved blueprints both from any language we support as well as across different recordings that share a similar-enough structure, and makes it possible to share those blueprints with other users. diff --git a/docs/content/reference/dataframes.md b/docs/content/reference/dataframes.md index ede4aaf5a2b0..a7cb2dd076de 100644 --- a/docs/content/reference/dataframes.md +++ b/docs/content/reference/dataframes.md @@ -64,7 +64,7 @@ Check out the blueprint API and `log_file_from_path` references to learn more: * [🦀 Rust `log_file_from_path`](https://docs.rs/rerun/latest/rerun/struct.RecordingStream.html#method.log_file_from_path) * [🌊 C++ `log_file_from_path`](https://ref.rerun.io/docs/cpp/stable/classrerun_1_1RecordingStream.html#a20798d7ea74cce5c8174e5cacd0a2c47) -You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints). +You can learn more in our [dedicated page about blueprint re-use](../howto/visualization/reuse-blueprints.md). ### Setting up dataframe view manually in the UI