Merge branch 'master' into visualize-data

pull/26/head
Scott Anderson 2019-01-22 17:25:44 -07:00
commit 4511804101
22 changed files with 183 additions and 30 deletions

View File

@ -567,6 +567,30 @@
}
}
/////////////////////////////////// Buttons //////////////////////////////////
a.btn {
display: inline-block;
margin: .5rem 0 1rem;
padding: .5rem 1rem;
background: $article-btn;
color: $article-btn-text;
border-radius: $border-radius;
font-size: .95rem;
&:hover {
background: $article-btn-hover;
color: $article-btn-text-hover;
}
&.download:before {
content: "\e91c";
font-family: "icomoon";
margin-right: .5rem;
}
}
//////////////////////////////// Scroll Bars /////////////////////////////////
pre { @include scrollbar($article-code-bg, $article-code-scrollbar); }
@ -591,17 +615,11 @@
.btn {
display: flex;
max-width: 49%;
color: $article-btn-text;
background: $article-btn;
border-radius: $border-radius;
text-align: center;
align-items: center;
&:hover {
background: $article-btn-hover;
}
&.prev{
margin-right: auto;
margin: 0 auto 0 0;
padding: .75rem 1.25rem .75rem .75rem;
&:before {
content: "\e90a";
@ -611,7 +629,7 @@
}
}
&.next {
margin-left: auto;
margin: 0 0 0 auto;
padding: .75rem .75rem .75rem 1.25rem;
&:after {
content: "\e90c";

View File

@ -1,10 +1,10 @@
@font-face {
font-family: 'icomoon';
src: url('fonts/icomoon.eot?o2njz5');
src: url('fonts/icomoon.eot?o2njz5#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?o2njz5') format('truetype'),
url('fonts/icomoon.woff?o2njz5') format('woff'),
url('fonts/icomoon.svg?o2njz5#icomoon') format('svg');
src: url('fonts/icomoon.eot?cn4x5l');
src: url('fonts/icomoon.eot?cn4x5l#iefix') format('embedded-opentype'),
url('fonts/icomoon.ttf?cn4x5l') format('truetype'),
url('fonts/icomoon.woff?cn4x5l') format('woff'),
url('fonts/icomoon.svg?cn4x5l#icomoon') format('svg');
font-weight: normal;
font-style: normal;
}
@ -78,6 +78,9 @@
.icon-chevron-up:before {
content: "\e91a";
}
.icon-download:before {
content: "\e91c";
}
.icon-heart1:before {
content: "\e913";
}
@ -114,12 +117,6 @@
.icon-map2:before {
content: "\e94c";
}
.icon-download:before {
content: "\e960";
}
.icon-upload:before {
content: "\e961";
}
.icon-cog:before {
content: "\e994";
}

View File

@ -5,6 +5,7 @@ menu:
v2_0:
name: Getting started
weight: 1
parent: Placeholder parent
---
## Buckets

View File

@ -5,6 +5,7 @@ menu:
v2_0:
name: Managing organizations
weight: 1
parent: Placeholder parent
---
Everything is scoped by/contained within organization--dashboards, tasks, buckets, users, !!collectors and scrapers!!.

View File

@ -6,9 +6,6 @@ layout: version-landing
menu:
versions:
name: v2.0
v2_0:
name: Introduction
weight: 1
---
_This placeholder content for the landing page for v2.0._

View File

@ -0,0 +1,12 @@
---
title: Get started with InfluxDB
description: Simple steps for downloading, installing, and setting up InfluxDB.
menu:
v2_0:
name: Get started
weight: 1
---
The following guide you through downloading, installing, and setting up InfluxDB.
{{< children >}}

View File

@ -0,0 +1,28 @@
---
title: Install InfluxDB v2.0
seotitle: Download and install InfluxDB v2.0
description: >
Visit the InfluxData downloads page to download InfluxDB v2.0.
Add the influx and influxd binaries to your system $PATH.
menu:
v2_0:
name: Install InfluxDB
parent: Get started
weight: 1
---
### Download InfluxDB v2.0
Visit [InfluxData Downloads page](https://portal.influxdata.com/downloads/) and
download the InfluxDB v2.0 package appropriate for your operating system.
<a class="btn download" href="https://portal.influxdata.com/downloads/" target="\_blank">Download InfluxDB</a>
### Place the executables in your $PATH
Place the `influx` and `influxd` executables in your system `$PATH`.
### Networking ports
By default, InfluxDB uses TCP port `9999` for client-server communication over InfluxDBs HTTP API.
<div class="page-nav-btns">
<a class="btn next" href="/v2.0/get-started/setup/">Setup InfluxDB</a>
</div>

View File

@ -0,0 +1,62 @@
---
title: Set up InfluxDB
seotitle: Run the initial InfluxDB setup process
description: The initial setup process for walks through creating a default organization, user, and bucket.
menu:
v2_0:
name: Set up InfluxDB
parent: Get started
weight: 2
---
The initial setup process for InfluxDB walks through creating a default organization,
user, and bucket.
The setup process is available in both the InfluxDB user interface (UI) and in
the `influx` command line interface (CLI).
## Start the influxd daemon
In order to setup InfluxDB via the UI or the CLI, first start the `influxd` daemon by running:
```bash
influxd
```
_See the [`influxd` documentation](/v2.0/reference/cli/influxd) for information about
available flags and options._
## Set up InfluxDB through the UI
1. With `influxd` running, visit [localhost:9999](http://localhost:9999).
2. Click **Get Started**
### Set up your initial user
1. Enter a **Username** for your initial user.
2. Enter a **Password** and **Confirm Password** for your user.
3. Enter your initial **Organization Name**.
4. Enter your initial **Bucket Name**.
5. Click **Continue**.
InfluxDB is now initialized with a primary user, organization, and bucket.
You are ready to [collect data](#).
## Set up InfluxDB through the influx CLI
Begin the InfluxDB setup process via the `influx` CLI by running:
```bash
influx setup
```
1. Enter a **primary username**.
2. Enter a **password** for your user.
3. **Confirm your password** by entering it again.
4. Enter a name for your **primary organization**.
5. Enter a name for your **primary bucket**.
6. Enter a **retention period** (in hours) for your primary bucket.
Enter nothing for an infinite retention period.
7. Confirm the details for your primary user, organization, and bucket.
InfluxDB is now initialized with a primary user, organization, and bucket.
You are ready to [collect data](#).

View File

@ -1,6 +1,6 @@
---
title: influx CLI
seotitle: "'influx' command line client"
title: influx - InfluxDB command line interface
seotitle: influx - InfluxDB command line interface
description: >
The influx CLI includes commands to manage many aspects of InfluxDB,
including buckets, organizations, users, tasks, etc.
@ -8,10 +8,10 @@ menu:
v2_0_ref:
name: influx
parent: Command line tools
wieght: 1
weight: 1
---
The `influx` CLI includes commands to manage many aspects of InfluxDB,
The `influx` command line interface (CLI) includes commands to manage many aspects of InfluxDB,
including buckets, organizations, users, tasks, etc.
## Usage

View File

@ -0,0 +1,31 @@
---
title: influxd - InfluxDB daemon
seotitle: influxd - InfluxDB daemon
description: The influxd daemon starts and runs all the processes necessary for InfluxDB to function.
menu:
v2_0_ref:
name: influxd
parent: Command line tools
weight: 2
---
The `influxd` daemon starts and runs all the processes necessary for InfluxDB to function.
## Usage
```
influxd [flags]
```
## Flags
| Flag | Description | Input type |
|:---- |:----------- |:----------:|
| `--bolt-path` | Path to boltdb database (default `~/.influxdbv2/influxd.bolt`) | string |
| `--developer-mode` | Serve assets from the local filesystem in developer mode | |
| `--engine-path` | Path to persistent engine files (default `~/.influxdbv2/engine`) | string |
| `-h`, `--help` | Help for `influxd` | |
| `--http-bind-address` | Bind address for the REST HTTP API (default `:9999`) | string |
| `--log-level` | Supported log levels are debug, info, and error (default `info`) | string |
| `--nats-path` | Path to NATS queue for scraping tasks (default `~/.influxdbv2/nats`) | string |
| `--reporting-disabled` | Disable sending telemetry data to https://telemetry.influxdata.com | |
| `--protos-path` | Path to protos on the filesystem (default `~/.influxdbv2/protos`) | string |
| `--secret-store` | Data store for secrets (bolt or vault) (default `bolt`) | string |

View File

@ -41,7 +41,7 @@ When `true`, assigns the value set in the previous non-null row.
Cannot be used with `value`.
{{% /note %}}
_**Data type:** Boolean | Integer | UInteger | Float | String | Time | Duration_
_**Data type:** Boolean_
## Examples

View File

@ -5,8 +5,9 @@ menu:
v2_0:
name: Managing account settings
weight: 1
parent: Placeholder parent
---
1. Click the ?? icon in the navigation bar.
2. Review your settings on the **Settings** tab.
3. To edit your settings, click **Edit About Me**
3. To edit your settings, click **Edit About Me**

View File

@ -5,6 +5,7 @@ menu:
v2_0:
name: Managing tokens
weight: 1
parent: Placeholder parent
---
**To view tokens**:

View File

@ -6,6 +6,7 @@ menu:
name: Manage dashboards
parent: Visualize data
weight: 1
parent: Placeholder parent
---
Create, edit, and manage dashboards from the **Dashboards** tab in the left navigation.

View File

@ -6,6 +6,7 @@ menu:
name: Explore metrics
parent: Visualize data
weight: 1
parent: Placeholder parent
---
Explore and visualize your data in the **Data Explorer**. The user interface allows you to move seamlessly between using the builder or templates and manually editing the query; when possible, the interface automatically populates the builder with the information from your raw query. Choose between [visualization types](/chronograf/latest/guides/visualization-types/) for your query.

View File

@ -6,6 +6,7 @@ menu:
name: Manage labels
parent: Visualize data
weight: 1
parent: Placeholder parent
---
Labels are !!!.

View File

@ -6,6 +6,7 @@ menu:
name: Manage sources
parent: Visualize data
weight: 1
parent: Placeholder parent
---

View File

@ -6,6 +6,7 @@ menu:
name: Visualization types
parent: Visualize data
weight: 1
parent: Placeholder parent
---
Chronograf's dashboard views support the following visualization types, which can be selected in the **Visualization Type** selection view of the <<link to data explorer article>>.

Binary file not shown.

View File

@ -35,10 +35,9 @@
<glyph unicode="&#xe919;" glyph-name="chevron-right" d="M669.867 456.534l-256 256c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l226.133-226.133-226.133-226.133c-17.067-17.067-17.067-42.667 0-59.733 8.533-8.533 17.067-12.8 29.867-12.8s21.333 4.267 29.867 12.8l256 256c17.067 17.067 17.067 42.667 0 59.733z" />
<glyph unicode="&#xe91a;" glyph-name="chevron-up" d="M797.867 328.534l-256 256c-17.067 17.067-42.667 17.067-59.733 0l-256-256c-17.067-17.067-17.067-42.667 0-59.733s42.667-17.067 59.733 0l226.133 226.133 226.133-226.133c8.533-8.533 21.333-12.8 29.867-12.8s21.333 4.267 29.867 12.8c17.067 17.067 17.067 42.667 0 59.733z" />
<glyph unicode="&#xe91b;" glyph-name="menu" d="M896 469.334h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667zM128 640h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667zM896 213.334h-768c-25.6 0-42.667-17.067-42.667-42.667s17.067-42.667 42.667-42.667h768c25.6 0 42.667 17.067 42.667 42.667s-17.067 42.667-42.667 42.667z" />
<glyph unicode="&#xe91c;" glyph-name="download" d="M896 341.334c-25.6 0-42.667-17.067-42.667-42.667v-170.667c0-25.6-17.067-42.667-42.667-42.667h-597.333c-25.6 0-42.667 17.067-42.667 42.667v170.667c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-170.667c0-72.533 55.467-128 128-128h597.333c72.533 0 128 55.467 128 128v170.667c0 25.6-17.067 42.667-42.667 42.667zM482.133 268.8c4.267-4.267 8.533-8.533 12.8-8.533 4.267-4.267 12.8-4.267 17.067-4.267s12.8 0 17.067 4.267c4.267 4.267 8.533 4.267 12.8 8.533l213.333 213.333c17.067 17.067 17.067 42.667 0 59.733s-42.667 17.067-59.733 0l-140.8-140.8v409.6c0 25.6-17.067 42.667-42.667 42.667s-42.667-17.067-42.667-42.667v-409.6l-140.8 140.8c-17.067 17.067-42.667 17.067-59.733 0s-17.067-42.667 0-59.733l213.333-213.333z" />
<glyph unicode="&#xe934;" glyph-name="folder-upload" d="M576 704l-128 128h-448v-832h1024v704h-448zM512 480l224-224h-160v-256h-128v256h-160l224 224z" />
<glyph unicode="&#xe94c;" glyph-name="map2" d="M672 768l-320 128-352-128v-768l352 128 320-128 352 128v768l-352-128zM384 814.27l256-102.4v-630.138l-256 102.398v630.14zM64 723.172l256 93.090v-631.8l-256-93.088v631.798zM960 172.828l-256-93.092v631.8l256 93.090v-631.798z" />
<glyph unicode="&#xe960;" glyph-name="download" d="M512 384l256 256h-192v256h-128v-256h-192zM744.726 488.728l-71.74-71.742 260.080-96.986-421.066-157.018-421.066 157.018 260.080 96.986-71.742 71.742-279.272-104.728v-256l512-192 512 192v256z" />
<glyph unicode="&#xe961;" glyph-name="upload" d="M448 384h128v256h192l-256 256-256-256h192zM640 528v-98.712l293.066-109.288-421.066-157.018-421.066 157.018 293.066 109.288v98.712l-384-144v-256l512-192 512 192v256z" />
<glyph unicode="&#xe994;" glyph-name="cog" d="M933.79 349.75c-53.726 93.054-21.416 212.304 72.152 266.488l-100.626 174.292c-28.75-16.854-62.176-26.518-97.846-26.518-107.536 0-194.708 87.746-194.708 195.99h-201.258c0.266-33.41-8.074-67.282-25.958-98.252-53.724-93.056-173.156-124.702-266.862-70.758l-100.624-174.292c28.97-16.472 54.050-40.588 71.886-71.478 53.638-92.908 21.512-211.92-71.708-266.224l100.626-174.292c28.65 16.696 61.916 26.254 97.4 26.254 107.196 0 194.144-87.192 194.7-194.958h201.254c-0.086 33.074 8.272 66.57 25.966 97.218 53.636 92.906 172.776 124.594 266.414 71.012l100.626 174.29c-28.78 16.466-53.692 40.498-71.434 71.228zM512 240.668c-114.508 0-207.336 92.824-207.336 207.334 0 114.508 92.826 207.334 207.336 207.334 114.508 0 207.332-92.826 207.332-207.334-0.002-114.51-92.824-207.334-207.332-207.334z" />
<glyph unicode="&#xe9da;" glyph-name="heart" d="M755.188 896c-107.63 0-200.258-87.554-243.164-179-42.938 91.444-135.578 179-243.216 179-148.382 0-268.808-120.44-268.808-268.832 0-301.846 304.5-380.994 512.022-679.418 196.154 296.576 511.978 387.206 511.978 679.418 0 148.392-120.43 268.832-268.812 268.832z" />
<glyph unicode="&#xeabd;" glyph-name="tux" d="M567.656 223.084c-81.944-38.118-158.158-37.716-209.34-34.020-61.052 4.41-110.158 21.124-131.742 35.732-13.3 9.006-31.384 5.522-40.39-7.782-9.004-13.302-5.52-31.386 7.782-40.39 34.698-23.486 96.068-40.954 160.162-45.58 10.866-0.784 22.798-1.278 35.646-1.278 55.782 0 126.626 5.316 202.42 40.57 14.564 6.778 20.878 24.074 14.104 38.64-6.776 14.566-24.076 20.872-38.642 14.108zM890.948 266.184c2.786 252.688 28.762 730.206-454.97 691.612-477.6-38.442-350.964-542.968-358.082-711.95-6.308-89.386-35.978-198.648-77.896-309.846h129.1c13.266 47.122 23.024 93.72 27.232 138.15 7.782-5.428 16.108-10.674 24.994-15.7 14.458-8.518 26.884-19.844 40.040-31.834 30.744-28.018 65.59-59.774 133.712-63.752 4.572-0.262 9.174-0.394 13.676-0.394 68.896 0 116.014 30.154 153.878 54.382 18.14 11.612 33.818 21.64 48.564 26.452 41.91 13.12 78.532 34.296 105.904 61.252 4.276 4.208 8.242 8.538 11.962 12.948 15.246-55.878 36.118-118.758 59.288-181.504h275.65c-66.174 102.224-134.436 202.374-133.052 330.184zM124.11 403.648c0 0.016 0 0.030-0.002 0.046-4.746 82.462 34.71 151.832 88.126 154.936 53.412 3.106 100.56-61.228 105.304-143.692 0-0.014 0.004-0.030 0.004-0.044 0.256-4.446 0.368-8.846 0.37-13.206-16.924-4.256-32.192-10.436-45.872-17.63-0.052 0.612-0.092 1.216-0.152 1.83 0 0.008 0 0.018 0 0.026-4.57 46.81-29.572 82.16-55.852 78.958-26.28-3.204-43.88-43.75-39.312-90.558 0-0.010 0.004-0.018 0.004-0.026 1.992-20.408 7.868-38.636 16.042-52.444-2.034-1.604-7.784-5.812-14.406-10.656-4.97-3.634-11.020-8.058-18.314-13.43-19.882 26.094-33.506 63.58-35.94 105.89zM665.26 199.822c-1.9-43.586-58.908-84.592-111.582-101.044l-0.296-0.096c-21.9-7.102-41.428-19.6-62.104-32.83-34.732-22.224-70.646-45.208-122.522-45.208-3.404 0-6.894 0.104-10.326 0.296-47.516 2.778-69.742 23.032-97.88 48.676-14.842 13.526-30.19 27.514-49.976 39.124l-0.424 0.244c-42.706 24.104-69.212 54.082-70.908 80.194-0.842 12.98 4.938 24.218 17.182 33.4 26.636 19.972 44.478 33.022 56.284 41.658 13.11 9.588 17.068 12.48 20 15.264 2.096 1.986 4.364 4.188 6.804 6.562 24.446 23.774 65.36 63.562 128.15 63.562 38.404 0 80.898-14.8 126.17-43.902 21.324-13.878 39.882-20.286 63.38-28.4 16.156-5.578 34.468-11.902 58.992-22.404l0.396-0.164c22.88-9.404 49.896-26.564 48.66-54.932zM652.646 302.194c-4.4 2.214-8.974 4.32-13.744 6.286-22.106 9.456-39.832 15.874-54.534 20.998 8.116 15.894 13.16 35.72 13.624 57.242 0 0.010 0 0.022 0 0.030 1.126 52.374-25.288 94.896-58.996 94.976-33.71 0.078-61.95-42.314-63.076-94.686 0-0.010 0-0.018 0-0.028-0.038-1.714-0.042-3.416-0.020-5.11-20.762 9.552-41.18 16.49-61.166 20.76-0.092 1.968-0.204 3.932-0.244 5.92 0 0.016 0 0.036 0 0.050-1.938 95.412 56.602 174.39 130.754 176.402 74.15 2.014 135.828-73.7 137.772-169.11 0-0.018 0-0.038 0-0.052 0.874-43.146-10.66-82.866-30.37-113.678z" />

Before

Width:  |  Height:  |  Size: 31 KiB

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Binary file not shown.