updated sample and demo data docs to address PR feedback

pull/956/head
Scott Anderson 2020-05-14 14:51:33 -06:00
parent c65cf37433
commit f87bc9b322
4 changed files with 37 additions and 26 deletions

View File

@ -460,7 +460,7 @@ see [Write data to InfluxDB](/v2.0/write-data/).
#### Demo data
If using **{{< cloud-name "short" >}}**, [add a demo data bucket](/v2.0/write-data/sample-data/demo-data/)
for quick, _free_ access to time series data.
for quick, **free** access to time series data.
### Query data

View File

@ -13,13 +13,20 @@ weight: 105
Use sample data to familiarize yourself with time series data and InfluxDB.
InfluxData provides many sample time series datasets to use with **InfluxDB** and **InfluxDB Cloud**.
{{< children >}}
{{< children hlevel="h2" >}}
---
## Sample data sets
The following sample data sets are used as examples in [InfluxDB query guides](/v2.0/query-data/flux)
and can be used with **InfluxDB OSS** or **InfluxDB Cloud**.
- [Air sensor sample data](#air-sensor-sample-data)
- [Bird migration sample data](#bird-migration-sample-data)
### Air sensor sample data
The air sensor sample data is designed to represent an "Internet of Things" (IoT) use case
by simulating temperature, humidity, and carbon monoxide levels for multiple rooms in a building.
Air sensor sample data represents an "Internet of Things" (IoT) use case by simulating
temperature, humidity, and carbon monoxide levels for multiple rooms in a building.
The dataset also includes a relational SQL dataset with meta information about sensors in each room.
<a class="btn" href="https://github.com/influxdata/influxdb2-sample-data/tree/master/air-sensor-data" target="\_blank">
@ -28,15 +35,12 @@ The dataset also includes a relational SQL dataset with meta information about s
_Used in [Query SQL data sources](/v2.0/query-data/flux/sql/)._
---
### Bird migration sample data
This sample data is adapted from the [Movebank: Animal Tracking](https://www.kaggle.com/pulkit8595/movebank-animal-tracking)
dataset available on [kaggle.com](https://kaggle.com).
The dataset as a whole represents animal migratory movements throughout 2019.
The data schema meets the requirements of the
[Flux Geo package](https://v2.docs.influxdata.com/v2.0/reference/flux/stdlib/experimental/geo/#geo-schema-requirements)
which contains tools for working with geo-temporal data.
Bird migration data is adapted from the
[Movebank: Animal Tracking data set on Kaggle](https://www.kaggle.com/pulkit8595/movebank-animal-tracking)
and represents animal migratory movements throughout 2019.
Use the [Flux Geo package](https://v2.docs.influxdata.com/v2.0/reference/flux/stdlib/experimental/geo/#geo-schema-requirements)
to query and analyze the geo-temporal data in this sample data set.
<a class="btn" href="https://github.com/influxdata/influxdb2-sample-data/tree/master/air-sensor-data" target="\_blank">
<span class="icon-github"></span> View bird migration sample data

View File

@ -1,7 +1,7 @@
---
title: InfluxDB Cloud demo data
description: >
Use **InfluxDB Cloud** demo data buckets for quick access to different types of sample data.
Use **InfluxDB Cloud** demo data buckets for quick, **free** access to different types of sample data.
menu:
v2_0:
name: Demo data
@ -16,8 +16,14 @@ types of demo data that let you explore and familiarize yourself with InfluxDB C
- [Add a demo data bucket](#add-a-demo-data-bucket)
- [Explore demo data](#explore-demo-data)
- [Visualize demo data](#visualize-demo-data)
- [Demo data pricing and restrictions](#demo-data-pricing-and-restrictions)
- [View demo data dashboards](#view-demo-data-dashboards)
{{% note %}}
#### Free to use and read-only
- InfluxDB Cloud demo data buckets are **free to use** and are **_not_ subject to
[Free Plan](/v2.0/account-management/pricing-plans/#free-plan) rate limits**.
- Demo data buckets are **read-only**. You cannot write data into demo data buckets.
{{% /note %}}
## Demo data sets
Choose from the following demo data sets:
@ -25,14 +31,13 @@ Choose from the following demo data sets:
- **Website Monitoring**
Explore, visualize, and monitor HTTP response metrics from InfluxData websites.
_More demo data options coming soon._
## Add a demo data bucket
1. In the navigation menu on the left, click **Data (Load Data)** > **Buckets**.
{{< nav-icon "data" >}}
2. Click **{{< icon "plus" >}} Add Demo Data** and select the demo data bucket to add.
2. Click **{{< icon "plus" >}} Add Demo Data**, and then select the demo data bucket to add.
3. The Demo Data bucket appears in your list of buckets.
## Explore demo data
@ -43,10 +48,8 @@ In the navigation menu on the left, click **Explore (Data Explorer)**.
{{< nav-icon "explore" >}}
## Visualize demo data
When adding a demo data bucket, InfluxDB Cloud provides a pre-built dashboard for the demo data.
**To view a demo data dashboard:**
## View demo data dashboards
After adding a demo data bucket, view the pre-built dashboard specific to the demo data set:
1. In the navigation menu on the left, click **Boards (Dashboards)**.
@ -54,7 +57,7 @@ When adding a demo data bucket, InfluxDB Cloud provides a pre-built dashboard fo
2. Click the name of the dashboard that corresponds to your demo data bucket.
## Demo data pricing and restrictions
- InfluxDB Cloud demo data buckets are **free to use** and are **_not_ subject to
[Free Plan](/v2.0/account-management/pricing-plans/#free-plan) rate limits**.
- Demo data buckets are **read-only**. You cannot write data into demo data buckets.
{{% note %}}
#### Other sample data sets
See [Sample data](/v2.0/write-data/sample-data) for more sample InfluxDB data sets.
{{% /note %}}

View File

@ -1,5 +1,6 @@
{{ $type := .Get "type" | default "articles" }}
{{ $show := .Get "show" | default "all" }}
{{ $hlevel := .Get "hlevel" | default "h3"}}
{{ $readMore := .Get "readmore" | default false }}
{{ $hr := .Get "hr" | default false }}
@ -19,7 +20,10 @@
{{ $title := cond ( isset .Params "list_title" ) .Params.list_title .Title }}
{{ $url := cond ( isset .Params "external_url" ) .Params.external_url .RelPermalink }}
{{ $target := cond ( isset .Params "external_url" ) "_blank" "" }}
<h3 id="{{ anchorize $title }}"><a href="{{ $url }}" target="{{ $target }}">{{ $title }}</a></h3>
{{ if eq $hlevel "h2"}} <h2 id="{{ anchorize $title }}"><a href="{{ $url }}" target="{{ $target }}">{{ $title }}</a></h2>
{{ else if eq $hlevel "h3"}} <h3 id="{{ anchorize $title }}"><a href="{{ $url }}" target="{{ $target }}">{{ $title }}</a></h3>
{{ else if eq $hlevel "h4"}} <h4 id="{{ anchorize $title }}"><a href="{{ $url }}" target="{{ $target }}">{{ $title }}</a></h4>
{{end}}
<p>
{{- if .Description }}{{- .Description | markdownify -}}
{{ else }}{{- .Summary | markdownify -}}