Merge pull request #956 from influxdata/demo-data

Sample and demo data
pull/1045/head
Scott Anderson 2020-05-14 20:38:47 -06:00 committed by GitHub
commit 5d31b9c6fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 121 additions and 1 deletions

View File

@ -458,6 +458,10 @@ For details, see [Scrape data](/v2.0/write-data/scrape-data/).
For information about using the InfluxDB v2 API, `influx` CLI, and client libraries to write data,
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.
### Query data
Query data using Flux, the UI, and the `influx` command line interface.

View File

@ -0,0 +1,49 @@
---
title: Sample data
description: >
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.
menu:
v2_0:
parent: Write data
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 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
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">
<span class="icon-github"></span> View air sensor sample data
</a>
_Used in [Query SQL data sources](/v2.0/query-data/flux/sql/)._
### Bird migration sample 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
</a>
_Used in [Work with geo-temporal data](/v2.0/query-data/flux/geo/)._

View File

@ -0,0 +1,63 @@
---
title: InfluxDB Cloud demo data
description: >
Use **InfluxDB Cloud** demo data buckets for quick, **free** access to different types of sample data.
menu:
v2_0:
name: Demo data
parent: Sample data
weight: 201
v2.0/tags: [sample data]
products: [cloud]
---
Use **InfluxDB Cloud** demo data buckets for quick and easy access to different
types of demo data that let you explore and familiarize yourself with InfluxDB Cloud.
- [Add a demo data bucket](#add-a-demo-data-bucket)
- [Explore demo data](#explore-demo-data)
- [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:
- **Website Monitoring**
Explore, visualize, and monitor HTTP response metrics from InfluxData websites.
## 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 then select the demo data bucket to add.
3. The Demo Data bucket appears in your list of buckets.
## Explore demo data
Use the [Data Explorer](https://v2.docs.influxdata.com/v2.0/visualize-data/explore-metrics/)
to query and visualize data in demo data buckets.
In the navigation menu on the left, click **Explore (Data Explorer)**.
{{< nav-icon "explore" >}}
## 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)**.
{{< nav-icon "dashboards" >}}
2. Click the name of the dashboard that corresponds to your demo data bucket.
{{% 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 -}}