From cb4c91b63dbae0bc3dd053c7b2c6f1ec50093b46 Mon Sep 17 00:00:00 2001 From: lwandzura <51929958+lwandzura@users.noreply.github.com> Date: Mon, 31 Jan 2022 11:47:18 -0600 Subject: [PATCH] added season 2 videos to docs (#3731) * added season 2 videos to docs * Update content/flux/v0.x/get-started/_index.md Co-authored-by: Scott Anderson * Update content/influxdb/v2.1/process-data/get-started.md Co-authored-by: Scott Anderson * Update content/telegraf/v1.21/introduction/getting-started.md Co-authored-by: Scott Anderson * Update content/flux/v0.x/get-started/query-basics.md Co-authored-by: Scott Anderson Co-authored-by: Scott Anderson --- content/flux/v0.x/get-started/_index.md | 6 +++++- content/flux/v0.x/get-started/query-basics.md | 4 ++++ content/influxdb/cloud/write-data/_index.md | 4 ++++ content/influxdb/v2.1/process-data/get-started.md | 5 +++++ content/influxdb/v2.1/reference/internals/storage-engine.md | 4 ++++ .../influxdb/v2.1/reference/key-concepts/data-elements.md | 4 ++++ content/influxdb/v2.1/write-data/_index.md | 4 ++++ .../v2.1/write-data/best-practices/schema-design.md | 4 ++++ content/telegraf/v1.21/introduction/getting-started.md | 4 ++++ 9 files changed, 38 insertions(+), 1 deletion(-) diff --git a/content/flux/v0.x/get-started/_index.md b/content/flux/v0.x/get-started/_index.md index c2be1e13f..a74165c95 100644 --- a/content/flux/v0.x/get-started/_index.md +++ b/content/flux/v0.x/get-started/_index.md @@ -86,4 +86,8 @@ Each example includes the following functions (in the order listed): _For detailed information about basic Flux queries, see [Flux query basics](/flux/v0.x/get-started/query-basics/)._ -{{< page-nav next="/flux/v0.x/get-started/data-model/" >}} +For an introduction to Flux and how it works with time series data, watch the following video: + +{{< youtube QwOJttyg858 >}} + +{{< page-nav next="/flux/v0.x/get-started/data-model/" >}} \ No newline at end of file diff --git a/content/flux/v0.x/get-started/query-basics.md b/content/flux/v0.x/get-started/query-basics.md index 9b3e55dbf..2cd1aabb1 100644 --- a/content/flux/v0.x/get-started/query-basics.md +++ b/content/flux/v0.x/get-started/query-basics.md @@ -196,4 +196,8 @@ Results from this basic query should be similar to the following: | co | airSensors | TLM0202 | 0.3336370208486757 | | co | airSensors | TLM0203 | 0.4948166816959906 | +To learn more about Flux concepts and basic functions and see an example of how to write a basic Flux query, watch the following video: + +{{< youtube osSJueQW-EE >}} + {{< page-nav prev="/flux/v0.x/get-started/syntax-basics/" >}} diff --git a/content/influxdb/cloud/write-data/_index.md b/content/influxdb/cloud/write-data/_index.md index daafc001d..0e9060534 100644 --- a/content/influxdb/cloud/write-data/_index.md +++ b/content/influxdb/cloud/write-data/_index.md @@ -33,3 +33,7 @@ To explore InfluxDB using existing data (*without writing your own data*), see h - [Process data](/influxdb/cloud/process-data/) - [Visualize data](/influxdb/cloud/visualize-data/) - [Monitor and alert](/influxdb/cloud/monitor-alert/) + +The following video discusses different ways to write data to InfluxDB: + +{{< youtube xYnFVvRTlkQ >}} \ No newline at end of file diff --git a/content/influxdb/v2.1/process-data/get-started.md b/content/influxdb/v2.1/process-data/get-started.md index affdfeae1..eedbafde6 100644 --- a/content/influxdb/v2.1/process-data/get-started.md +++ b/content/influxdb/v2.1/process-data/get-started.md @@ -162,3 +162,8 @@ data |> to(bucket: "example-downsampled") ``` + +To learn more about InfluxDB tasks and how they work, watch the following video: + +{{< youtube zgCmdtZaH9M >}} + diff --git a/content/influxdb/v2.1/reference/internals/storage-engine.md b/content/influxdb/v2.1/reference/internals/storage-engine.md index d28dd8cf9..69ac8cbb3 100644 --- a/content/influxdb/v2.1/reference/internals/storage-engine.md +++ b/content/influxdb/v2.1/reference/internals/storage-engine.md @@ -94,6 +94,10 @@ The TSM compaction code is quite complex. However, the high-level goal is quite simple: organize values for a series together into long runs to best optimize compression and scanning queries. +For more information on the TSM engine, watch the video below: + +{{< youtube C5sv0CtuMCw >}} + ## Time Series Index (TSI) As data cardinality (the number of series) grows, queries read more series keys and become slower. diff --git a/content/influxdb/v2.1/reference/key-concepts/data-elements.md b/content/influxdb/v2.1/reference/key-concepts/data-elements.md index 48777a184..dd75ef882 100644 --- a/content/influxdb/v2.1/reference/key-concepts/data-elements.md +++ b/content/influxdb/v2.1/reference/key-concepts/data-elements.md @@ -201,3 +201,7 @@ If you're just starting out, we recommend taking a look at the following guides: - [Get started](/influxdb/v2.1/get-started) - [Write data](/influxdb/v2.1/write-data) - [Query data](/influxdb/v2.1/query-data) + +For an overview of how these elements interconnect within InfluxDB's data model, watch the follwoing video: + +{{< youtube 3qTTqsL27lI >}} \ No newline at end of file diff --git a/content/influxdb/v2.1/write-data/_index.md b/content/influxdb/v2.1/write-data/_index.md index c842a3711..7a5f6be9f 100644 --- a/content/influxdb/v2.1/write-data/_index.md +++ b/content/influxdb/v2.1/write-data/_index.md @@ -29,3 +29,7 @@ related: - [Process data](/influxdb/v2.1/process-data/) - [Visualize data](/influxdb/v2.1/visualize-data/) - [Monitor and alert](/influxdb/v2.1/monitor-alert/) + +The following video discusses different ways to write data to InfluxDB: + +{{< youtube xYnFVvRTlkQ >}} \ No newline at end of file diff --git a/content/influxdb/v2.1/write-data/best-practices/schema-design.md b/content/influxdb/v2.1/write-data/best-practices/schema-design.md index a003bf7d0..8ed79c535 100644 --- a/content/influxdb/v2.1/write-data/best-practices/schema-design.md +++ b/content/influxdb/v2.1/write-data/best-practices/schema-design.md @@ -246,3 +246,7 @@ from(bucket:"example-bucket") |> filter(fn: (r) => r._measurement == "weather_sensor" and r.location =~ /\.north$/ and r._field == "temp") |> mean() ``` + +For an overview of the InfluxDB data model, watch the following video: + +{{< youtube 3qTTqsL27lI >}} \ No newline at end of file diff --git a/content/telegraf/v1.21/introduction/getting-started.md b/content/telegraf/v1.21/introduction/getting-started.md index dae30e47f..e2d942b0b 100644 --- a/content/telegraf/v1.21/introduction/getting-started.md +++ b/content/telegraf/v1.21/introduction/getting-started.md @@ -148,3 +148,7 @@ time usage_idle Notice that the timestamps occur at rounded ten second intervals (that is, `:00`, `:10`, `:20`, and so on) - this is a configurable setting. That's it! You ready to use Telegraf to collect metrics and write them to your output of choice. + +For an introduction to Telegraf and an overview of how it works, watch the following video: + +{{< youtube vGJeo3FaMds >}} \ No newline at end of file