From ad3bc0be528914b4a14ddf50a1fe1a4734d659b4 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 13 Mar 2019 14:59:46 -0500 Subject: [PATCH 01/14] added cloud shortcodes and styles, adjusted enterprise shortcode, updated contributing --- CONTRIBUTING.md | 51 ++++++++++++ assets/styles/layouts/_layout-article.scss | 95 ++++++++++++++-------- assets/styles/themes/_theme-dark.scss | 5 ++ assets/styles/themes/_theme-light.scss | 5 ++ content/v2.0/example.md | 5 +- data/products.yml | 7 ++ layouts/partials/article.html | 1 + layouts/partials/article/cloud.html | 20 +++++ layouts/partials/article/enterprise.html | 13 ++- layouts/shortcodes/cloud-name.html | 1 + layouts/shortcodes/cloud.html | 4 + layouts/shortcodes/enterprise-name.html | 1 + 12 files changed, 165 insertions(+), 43 deletions(-) create mode 100644 data/products.yml create mode 100644 layouts/partials/article/cloud.html create mode 100644 layouts/shortcodes/cloud-name.html create mode 100644 layouts/shortcodes/cloud.html create mode 100644 layouts/shortcodes/enterprise-name.html diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f7250f790..41464531f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -62,6 +62,8 @@ weight: # Determines sort order in both the nav tree and in article lists. draft: # If true, will not render page on build enterprise_all: # If true, specifies the doc as a whole is specific to InfluxDB Enterprise enterprise_some: # If true, specifies the doc includes some content specific to InfluxDB Enterprise +cloud_all: # If true, specifies the doc as a whole is specific to InfluxCloud +cloud_some: # If true, specifies the doc includes some content specific to InfluxCloud v2.x/tags: # Tags specific to each version (replace .x" with the appropriate minor version ) ``` @@ -135,6 +137,55 @@ Insert enterprise-specific markdown content here. {{% /enterprise %}} ``` +#### Enterprise name +The name used to refer to InfluxData's enterprise offering is subject to change. +To facilitate easy updates in the future, use the `enterprise-name` shortcode when referencing the enterprise product. + +``` +This is content that references {{< enterprise-name >}}. +``` + +The product name is stored in `data/products.yml` + +### InfluxCloud Content +Many articles are unique to InfluxCloud or at least contain some information specific to InfluxCloud. +There are frontmatter options and an cloud shortcode that help to properly identify this content. + +#### All content is cloud-specific +If all content in an article is cloud-specific, set the `cloud_all` frontmatter to `true`. + +```yaml +cloud_all: true +``` + +This will display a message at the top of page indicating that the things discussed are unique to InfluxCloud. + +#### Only some content is cloud-specific +If only some content in the article is cloud-specific, set the `cloud_some` frontmatter to `true`. + +```yaml +cloud_some: true +``` + +This will display a message at the top of page indicating some things are unique to InfluxCloud. +To format cloud-specific content, wrap it in the `{{% cloud %}}` shortcode: + +```md +{{% cloud %}} +Insert enterprise-specific markdown content here. +{{% /cloud %}} +``` + +#### InfluxCloud name +The name used to refer to InfluxData's cloud offering is subject to change. +To facilitate easy updates in the future, use the `cloud-name` short-code when referencing the cloud product. + +``` +This is content that references {{< cloud-name >}}. +``` + +The product name is stored in `data/products.yml` + ### Tabbed Content Shortcodes are available for creating "tabbed" content (content that is changed by a users' selection). Ther following three must be used: diff --git a/assets/styles/layouts/_layout-article.scss b/assets/styles/layouts/_layout-article.scss index 0c3e97f77..5c05bb237 100644 --- a/assets/styles/layouts/_layout-article.scss +++ b/assets/styles/layouts/_layout-article.scss @@ -272,7 +272,8 @@ .feedback, .note, .warn, - .enterprise-msg { + .enterprise-msg, + .cloud-msg { padding: 1.65rem 2rem .1rem 2rem; margin: 1rem 0 2rem; border-width: 0 0 0 4px; @@ -391,44 +392,67 @@ ///////////////////////////////// Enterprise ///////////////////////////////// - .enterprise-msg { - border-color: $article-enterprise-base; - background: rgba($article-enterprise-base, .15); - font-style: italic; - display: flex; - p { - color: $article-enterprise-text; - } - a { - color: $article-enterprise-link; - &:hover { - color: $article-enterprise-link-hover; - } - } - div:first-child { margin-right: 1.25rem; } - } + .enterprise, .cloud { + position: relative; + padding: 0 0 .01rem 2rem; + margin-left: -2rem; - .enterprise-flag { - padding: .2rem .4rem; - background: $article-enterprise-base; - font-size: .75rem; - font-style: normal; - font-weight: bold; - color: $g20-white; - border-radius: $border-radius; - vertical-align: text-bottom; - &:before { - content: "E"; + &-msg { + font-style: italic; + display: flex; + div:first-child { margin-right: 1.25rem; } + } + &-flag { + padding: .2rem .4rem; + font-size: .75rem; + font-style: normal; + font-weight: bold; + color: $g20-white; + border-radius: $border-radius; + vertical-align: text-bottom; } } .enterprise { - position: relative; - padding: 0 0 .01rem 2rem; - margin-left: -2rem; border-left: 2px solid $article-enterprise-base; + &-msg { + border-color: $article-enterprise-base; + background: rgba($article-enterprise-base, .15); + p { color: $article-enterprise-text; } + a { + color: $article-enterprise-link; + &:hover { color: $article-enterprise-link-hover; } + } + } + &-flag { + background: $article-enterprise-base; + &:before { + content: "E"; + } + } + } - .enterprise-flag { + .cloud { + border-left: 2px solid $article-cloud-base; + &-msg { + border-color: $article-cloud-base; + background: rgba($article-cloud-base, .15); + p { color: $article-cloud-text; } + a { + color: $article-cloud-link; + &:hover { color: $article-cloud-link-hover; } + } + } + &-flag { + background: $article-cloud-base; + &:before { + content: "C"; + } + } + } + + .enterprise, .cloud { + .enterprise-flag, .cloud-flag { position: absolute; top: -.15rem; left: -.68rem; @@ -695,16 +719,17 @@ blockquote, .note, .warn, - #enterprise-msg { + .enterprise-msg, + .cloud-msg { padding: 1.35rem 1.25rem .1rem 1.25rem; margin: .5rem 0 1rem; } - .enterprise { + .enterprise, .cloud { padding: 0 0 .01rem .85rem; margin-left: -.85rem; - .enterprise-flag { + .enterprise-flag, .cloud-flag { left: -.25rem; } } diff --git a/assets/styles/themes/_theme-dark.scss b/assets/styles/themes/_theme-dark.scss index a178f1da7..85bde7aaf 100644 --- a/assets/styles/themes/_theme-dark.scss +++ b/assets/styles/themes/_theme-dark.scss @@ -105,6 +105,11 @@ $article-enterprise-text: $p-potassium !default; $article-enterprise-link: $p-moonstone !default; $article-enterprise-link-hover: $g20-white !default; +$article-cloud-base: $b-pool !default; +$article-cloud-text: $b-neutrino !default; +$article-cloud-link: $b-snow !default; +$article-cloud-link-hover: $g20-white !default; + // Article Tabs for tabbed content $article-tab-text: $g12-forge !default; $article-tab-bg: $g4-onyx !default; diff --git a/assets/styles/themes/_theme-light.scss b/assets/styles/themes/_theme-light.scss index 700a05b9e..a31a5bc65 100644 --- a/assets/styles/themes/_theme-light.scss +++ b/assets/styles/themes/_theme-light.scss @@ -104,6 +104,11 @@ $article-enterprise-text: $p-star; $article-enterprise-link: $p-star; $article-enterprise-link-hover: $b-ocean; +$article-cloud-base: $b-laser; +$article-cloud-text: $b-ocean; +$article-cloud-link: $b-ocean; +$article-cloud-link-hover: $gr-canopy; + // Article Tabs for tabbed content $article-tab-text: $g8-storm; $article-tab-bg: $g18-cloud; diff --git a/content/v2.0/example.md b/content/v2.0/example.md index ebf232832..041ffde2a 100644 --- a/content/v2.0/example.md +++ b/content/v2.0/example.md @@ -7,6 +7,8 @@ menu: weight: 1 #enterprise_all: true enterprise_some: true +cloud_all: true +#cloud_some: true draft: true "v2.0/tags": [influxdb] --- @@ -77,6 +79,7 @@ There is a horizontal rule above and below this line. --- +{{% cloud %}} #### Inline Styles This is an [inline link](#). This is `inline code`. This is an [`inline code link`](#). @@ -160,7 +163,7 @@ avg_cpu |> yield() // ``` - +{{% /cloud %}} {{% enterprise %}} ###### This is a table diff --git a/data/products.yml b/data/products.yml new file mode 100644 index 000000000..14c393cc8 --- /dev/null +++ b/data/products.yml @@ -0,0 +1,7 @@ +enterprise: + name: "InfluxDB 2.0 Enterprise" + link: "#" + +cloud: + name: "InfluxCloud 2.0 Beta" + link: "https://www.influxdata.com/influxcloud2beta/" diff --git a/layouts/partials/article.html b/layouts/partials/article.html index aee7f74e5..f9c767087 100644 --- a/layouts/partials/article.html +++ b/layouts/partials/article.html @@ -3,6 +3,7 @@

{{ .Title }}

{{ partial "article/latest-version.html" . }} {{ partial "article/enterprise.html" . }} + {{ partial "article/cloud.html" . }} {{ .Content }} {{ partial "article/tags.html" . }} {{ partial "article/_alpha-feedback.html"}} diff --git a/layouts/partials/article/cloud.html b/layouts/partials/article/cloud.html new file mode 100644 index 000000000..c9c4c58d9 --- /dev/null +++ b/layouts/partials/article/cloud.html @@ -0,0 +1,20 @@ +{{ $cloudName := .Site.Data.products.cloud.name }} +{{ $cloudLink := .Site.Data.products.cloud.link }} +{{ if ( $.Params.cloud_all ) }} +
+

+ The features and functionality discussed on this page are unique to {{ $cloudName }}. +

+
+{{ else if ( $.Params.cloud_some ) }} +
+
+ +
+
+

+ This page includes features and functionality unique to {{ $cloudName }}. +

+
+
+{{ end }} diff --git a/layouts/partials/article/enterprise.html b/layouts/partials/article/enterprise.html index bb6bcaa05..84a1cf576 100644 --- a/layouts/partials/article/enterprise.html +++ b/layouts/partials/article/enterprise.html @@ -1,20 +1,19 @@ -{{ $enterpriseLink := "#"}} +{{ $enterpriseName := .Site.Data.products.enterprise.name }} +{{ $enterpriseLink := .Site.Data.products.enterprise.link }} {{ if ( $.Params.enterprise_all ) }} -
+

- The features and functionality discussed on this page are unique to the Enterprise edition of InfluxDB. - Learn more about InfluxDB Enterprise. + The features and functionality discussed on this page are unique to {{ $enterpriseName }}.

{{ else if ( $.Params.enterprise_some ) }} -
+

- This page includes features and functionality unique to the Enterprise edition of InfluxDB. - Learn more about InfluxDB Enterprise. + This page includes features and functionality unique to {{ $enterpriseName }}.

diff --git a/layouts/shortcodes/cloud-name.html b/layouts/shortcodes/cloud-name.html new file mode 100644 index 000000000..74cfd22e2 --- /dev/null +++ b/layouts/shortcodes/cloud-name.html @@ -0,0 +1 @@ +{{ .Site.Data.products.cloud.name }} diff --git a/layouts/shortcodes/cloud.html b/layouts/shortcodes/cloud.html new file mode 100644 index 000000000..8f270da23 --- /dev/null +++ b/layouts/shortcodes/cloud.html @@ -0,0 +1,4 @@ +
+ + {{ .Inner }} +
diff --git a/layouts/shortcodes/enterprise-name.html b/layouts/shortcodes/enterprise-name.html new file mode 100644 index 000000000..b40de8520 --- /dev/null +++ b/layouts/shortcodes/enterprise-name.html @@ -0,0 +1 @@ +{{ .Site.Data.products.enterprise.name }} From e83cdb4afd266c5cf0971a87308751d8edeae429 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 13 Mar 2019 15:04:59 -0500 Subject: [PATCH 02/14] wording change in contribution guidelines --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 41464531f..f9348c8ca 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -148,7 +148,7 @@ This is content that references {{< enterprise-name >}}. The product name is stored in `data/products.yml` ### InfluxCloud Content -Many articles are unique to InfluxCloud or at least contain some information specific to InfluxCloud. +Some articles are unique to InfluxCloud or at least contain some information specific to InfluxCloud. There are frontmatter options and an cloud shortcode that help to properly identify this content. #### All content is cloud-specific From 9ba4dbb8dc4dabc6c62615e2a5a22fc2a1aefcd4 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 13 Mar 2019 17:09:53 -0500 Subject: [PATCH 03/14] added influxcloud menu to left nav, added conditional cloud page title --- content/v2.0/cloud/get-started.md | 12 +++++ data/products.yml | 1 + layouts/partials/header.html | 6 ++- layouts/partials/sidebar.html | 77 ++++++++++++++++++++++++++++++ layouts/shortcodes/cloud-name.html | 8 +++- 5 files changed, 102 insertions(+), 2 deletions(-) create mode 100644 content/v2.0/cloud/get-started.md diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md new file mode 100644 index 000000000..80fa24989 --- /dev/null +++ b/content/v2.0/cloud/get-started.md @@ -0,0 +1,12 @@ +--- +title: Get started with InfluxCloud 2.0 Beta +description: > + Setup an InfluxDB instance on InfluxCloud and use Telegraf to write data from + a remote endpoint into a bucket. +weight: 1 +menu: + v2_0_cloud: + name: Get started with InfluxCloud +--- + +_This is just placeholder content_ diff --git a/data/products.yml b/data/products.yml index 14c393cc8..2f5a164dd 100644 --- a/data/products.yml +++ b/data/products.yml @@ -4,4 +4,5 @@ enterprise: cloud: name: "InfluxCloud 2.0 Beta" + shortname: "InfluxCloud" link: "https://www.influxdata.com/influxcloud2beta/" diff --git a/layouts/partials/header.html b/layouts/partials/header.html index db0403110..7f065be91 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -5,10 +5,14 @@ {{ partial "header/google-analytics.html" }} + {{ if in .RelPermalink "/cloud/"}} + {{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }}{{ end }}{{ .Site.Data.products.cloud.name }} Documentation + {{ else }} + {{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}InfluxDB {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation + {{ end }} - {{ if .Params.seotitle }} {{ print .Params.seotitle " | " }} {{ else if .Title }} {{ print .Title " | " }} {{ end }}InfluxDB {{ if $currentVersion }}{{print $currentVersion " " }}{{ end }}Documentation {{ partial "header/canonical.html" . }} {{ partial "header/stylesheets.html" }} diff --git a/layouts/partials/sidebar.html b/layouts/partials/sidebar.html index 6b5aa1025..6698219db 100644 --- a/layouts/partials/sidebar.html +++ b/layouts/partials/sidebar.html @@ -99,6 +99,83 @@ {{end}} + + {{ $refMenuID := print (replaceRE "[.]" "_" $currentVersion) "_cloud" }} +

{{ .Site.Data.products.cloud.shortname }}

+ + {{ range (index .Site.Menus $refMenuID) }} + + + {{end}} + {{ $refMenuID := print (replaceRE "[.]" "_" $currentVersion) "_ref" }}

Reference

diff --git a/layouts/shortcodes/cloud-name.html b/layouts/shortcodes/cloud-name.html index 74cfd22e2..b653614c0 100644 --- a/layouts/shortcodes/cloud-name.html +++ b/layouts/shortcodes/cloud-name.html @@ -1 +1,7 @@ -{{ .Site.Data.products.cloud.name }} +{{ $length := .Get 0 | default "long" }} + +{{ if eq $length "long" }} + {{ .Site.Data.products.cloud.name }} +{{ else if eq $length "short" }} + {{ .Site.Data.products.cloud.shortname }} +{{ end }} From 4de8f019c9ca6d88aa3fb06405285a52dfd665ef Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Wed, 13 Mar 2019 17:12:46 -0500 Subject: [PATCH 04/14] updated contribution guidelines with cloud info --- CONTRIBUTING.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index f9348c8ca..e670541ac 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -152,13 +152,17 @@ Some articles are unique to InfluxCloud or at least contain some information spe There are frontmatter options and an cloud shortcode that help to properly identify this content. #### All content is cloud-specific -If all content in an article is cloud-specific, set the `cloud_all` frontmatter to `true`. +If all content in an article is cloud-specific, set the menu in the frontmatter to `v2_0_cloud` +(change the version number for the specific version of InfluxCloud). ```yaml -cloud_all: true +menu: + v2_0_cloud: + name: Menu item name + # ... ``` -This will display a message at the top of page indicating that the things discussed are unique to InfluxCloud. +The pages `parent` depends on where it fits in the hierarchy of the cloud documentation. #### Only some content is cloud-specific If only some content in the article is cloud-specific, set the `cloud_some` frontmatter to `true`. From d2af7c5e8c12575f8e564bd1739f82c22c131cae Mon Sep 17 00:00:00 2001 From: Nora Date: Mon, 18 Mar 2019 11:28:35 -0700 Subject: [PATCH 05/14] Getting started content (WIP) --- content/v2.0/cloud/get-started.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index 80fa24989..04777f34c 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -9,4 +9,29 @@ menu: name: Get started with InfluxCloud --- -_This is just placeholder content_ +## Sign up + +## Log in + +## Collect + +## Query + +## Visualize + + + + +### Overview tab + +* Usage This Week graphs: shows Reads, Writes, and Storage. Gives you a concise visibility into the workload and how that relates to billing. Shows a warning when you hit particular rate limits. +* Can drill down further in the graph below. + + +### Billing tab + +* Shows your tier and included capacity (writes, reads, storage). +* Everyone starts on the free tier. +* Options to upgrade to Pay As You Go or Subscription model below. + * Pay as You Go: Presented with billing summary. You can select a credit block. When your account balance drops below a certain level, the credit block is automatically added. + * Subscription: Presented with Subscription calculator, calculates subscription cost based on Write Units, Read Units, and Storage Units, as well as monthly/yearly. From edfa67665f9867134573edafb98f15939602218d Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 19 Mar 2019 10:38:28 -0600 Subject: [PATCH 06/14] added run command to influxd cli, updated influxd flags --- .../cli/{influxd.md => influxd/_index.md} | 27 ++++++----- content/v2.0/reference/cli/influxd/run.md | 45 +++++++++++++++++++ 2 files changed, 62 insertions(+), 10 deletions(-) rename content/v2.0/reference/cli/{influxd.md => influxd/_index.md} (60%) create mode 100644 content/v2.0/reference/cli/influxd/run.md diff --git a/content/v2.0/reference/cli/influxd.md b/content/v2.0/reference/cli/influxd/_index.md similarity index 60% rename from content/v2.0/reference/cli/influxd.md rename to content/v2.0/reference/cli/influxd/_index.md index 357d393b4..d1ed94de3 100644 --- a/content/v2.0/reference/cli/influxd.md +++ b/content/v2.0/reference/cli/influxd/_index.md @@ -16,21 +16,28 @@ The `influxd` daemon starts and runs all the processes necessary for InfluxDB to ``` influxd [flags] +influxd [command] ``` +## Commands + +| Command | Description | +|:------- |:----------- | +| [run](/v2.0/reference/cli/influxd/run) | Start the influxd server (default) | + ## Flags | Flag | Description | Input type | | :--------------------- | :------------------------------------------------------------------------------------- | :--------: | -| `--assets-path` | Override default assets by serving from a specific directory (default `memory`) | string | -| `--bolt-path` | Path to boltdb database (default `~/.influxdbv2/influxd.bolt`) | string | -| `--developer-mode` | Serve assets from the local filesystem in developer mode | | -| `--e2e-testing` | Add /debug/flush endpoint to clear stores; used for end-to-end tests (default `false`) | boolean | -| `--engine-path` | Path to persistent engine files (default `~/.influxdbv2/engine`) | string | +| `--assets-path` | Override default assets by serving from a specific directory (developer mode) | string | +| `--bolt-path` | Path to boltdb database (default `~/.influxdbv2/influxd.bolt`) | string | +| `--e2e-testing` | Add /debug/flush endpoint to clear stores; used for end-to-end tests (default `false`) | boolean | +| `--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 | +| `--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 | +| `--protos-path` | Path to protos on the filesystem (default `~/.influxdbv2/protos`) | 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 | -| `--store` | Data store for REST resources (bolt or memory) (default `bolt`) | string | +| `--secret-store` | Data store for secrets (bolt or vault) (default `bolt`) | string | +| `--store` | Data store for REST resources (bolt or memory) (default `bolt`) | string | +| `--tracing-type` | Supported tracing types (log or jaeger) | string | diff --git a/content/v2.0/reference/cli/influxd/run.md b/content/v2.0/reference/cli/influxd/run.md new file mode 100644 index 000000000..bdb88b1d5 --- /dev/null +++ b/content/v2.0/reference/cli/influxd/run.md @@ -0,0 +1,45 @@ +--- +title: influxd run +description: The `influxd run` command is the default `influxd` command and starts the influxd server. +v2.0/tags: [influxd, cli] +menu: + v2_0_ref: + name: run + parent: influxd +weight: 201 +--- + +The `influxd run` command is the default command for `influxd`. +It starts and runs all the processes necessary for InfluxDB to function. + +## Usage + +``` +influxd run [flags] +``` + +{{% note %}} +Because `run` is the default command for `influxd`, the following commands are the same: + +```bash +influxd +influxd run +``` +{{% /note %}} + +## Flags + +| Flag | Description | Input type | +| :--------------------- | :------------------------------------------------------------------------------------- | :--------: | +| `--assets-path` | Override default assets by serving from a specific directory (developer mode) | string | +| `--bolt-path` | Path to boltdb database (default `~/.influxdbv2/influxd.bolt`) | string | +| `--e2e-testing` | Add /debug/flush endpoint to clear stores; used for end-to-end tests (default `false`) | boolean | +| `--engine-path` | Path to persistent engine files (default `~/.influxdbv2/engine`) | string | +| `-h`, `--help` | Help for `run` | | +| `--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 | +| `--protos-path` | Path to protos on the filesystem (default `~/.influxdbv2/protos`) | string | +| `--reporting-disabled` | Disable sending telemetry data to https://telemetry.influxdata.com | | +| `--secret-store` | Data store for secrets (bolt or vault) (default `bolt`) | string | +| `--store` | Data store for REST resources (bolt or memory) (default `bolt`) | string | +| `--tracing-type` | Supported tracing types (log or jaeger) | string | From e467e177263edb35e38bc1a17ea1409601e643f6 Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 10:05:53 -0700 Subject: [PATCH 07/14] More updates to GS (WIP) --- content/v2.0/cloud/get-started.md | 33 ++++++++++++++++--------------- 1 file changed, 17 insertions(+), 16 deletions(-) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index 04777f34c..ff7e3fa97 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -9,29 +9,30 @@ menu: name: Get started with InfluxCloud --- -## Sign up +## Sign up and log in -## Log in +It is very easy to get started with InfluxCloud 2.0 Beta by simply signing up using the link provided in the InfluxCloud v2.0 Beta Invite email. -## Collect +Signup for InfluxCloud 2.0 +Look for an email invite from support@influxdata.com with the subject line You've been invited to beta InfluxCloud 2.0. -## Query +Click on button to begin the sign up process. -## Visualize +Provide an email id, password and follow the prompts to sign up for a Free Tier. + +Select the Region and click Next, to create your default organization and bucket in the selected region. + [Note: InfluxCloud 2.0 Beta will be restricted to 1 region only: us-west-2] + +Once the user’s organization and bucket are created, you will be taken to the usage page. + [Note: Currently this is just a mock page with no true usage information shown. This capability will be available soon.]. +Browse to https://us-west-2-1.aws.cloud2.influxdata.com and use the credentials you set up upon sign up to login to InfluxCloud UI. + +## Collect, query, visualize -### Overview tab - -* Usage This Week graphs: shows Reads, Writes, and Storage. Gives you a concise visibility into the workload and how that relates to billing. Shows a warning when you hit particular rate limits. -* Can drill down further in the graph below. +## Known Issues -### Billing tab - -* Shows your tier and included capacity (writes, reads, storage). -* Everyone starts on the free tier. -* Options to upgrade to Pay As You Go or Subscription model below. - * Pay as You Go: Presented with billing summary. You can select a credit block. When your account balance drops below a certain level, the credit block is automatically added. - * Subscription: Presented with Subscription calculator, calculates subscription cost based on Write Units, Read Units, and Storage Units, as well as monthly/yearly. +## Provide feedback From ebbbc564c24ffdacab8a36562a566ded03acabac Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 14:43:10 -0700 Subject: [PATCH 08/14] Updates to GS and shortcode --- CONTRIBUTING.md | 2 +- content/v2.0/cloud/get-started.md | 55 ++++++++++++++----- .../v2.0/collect-data/scrape-data/_index.md | 5 ++ content/v2.0/organizations/create-org.md | 4 ++ 4 files changed, 50 insertions(+), 16 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e670541ac..4a37a90a0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -176,7 +176,7 @@ To format cloud-specific content, wrap it in the `{{% cloud %}}` shortcode: ```md {{% cloud %}} -Insert enterprise-specific markdown content here. +Insert Cloud-specific markdown content here. {{% /cloud %}} ``` diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index ff7e3fa97..3dd997642 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -1,38 +1,63 @@ --- title: Get started with InfluxCloud 2.0 Beta description: > - Setup an InfluxDB instance on InfluxCloud and use Telegraf to write data from - a remote endpoint into a bucket. + Sign up for and get started with InfluxCloud 2.0 Beta. weight: 1 menu: v2_0_cloud: name: Get started with InfluxCloud + --- +InfluxCloud 2.0 is a fully managed and hosted version of the InfluxDB 2.x API. To get started with {{< cloud-name >}}, complete the tasks below. -## Sign up and log in +{{% note %}} +The InfluxDB v2.0 alpha documentation linked to in this article also applies to {{< cloud-name >}} unless otherwise specified. +{{% /note %}} -It is very easy to get started with InfluxCloud 2.0 Beta by simply signing up using the link provided in the InfluxCloud v2.0 Beta Invite email. +## Sign up -Signup for InfluxCloud 2.0 -Look for an email invite from support@influxdata.com with the subject line You've been invited to beta InfluxCloud 2.0. +{{% note %}} +Early access to InfluxCloud 2.0 Beta is limited. You can apply for access [here](https://www.influxdata.com/influxcloud2beta/). +{{% /note %}} -Click on button to begin the sign up process. +Sign up for the InfluxCloud 2.0 Beta with the link provided in the InfluxCloud v2.0 Beta Invite email. -Provide an email id, password and follow the prompts to sign up for a Free Tier. +1. Look for an email invite from support@influxdata.com with the subject line **You've been invited to beta InfluxCloud 2.0.** +2. Click **Accept Invite** to begin the sign up process. +3. Provide an email id, password and follow the prompts to sign up for a Free Tier. +4. Select the Region and click Next to create your default organization and bucket. -Select the Region and click Next, to create your default organization and bucket in the selected region. - [Note: InfluxCloud 2.0 Beta will be restricted to 1 region only: us-west-2] + {{% note %}} + InfluxCloud 2.0 Beta will be restricted to one region only: us-west-2. + {{% /note %}} -Once the user’s organization and bucket are created, you will be taken to the usage page. - [Note: Currently this is just a mock page with no true usage information shown. This capability will be available soon.]. +5. Once your organization and bucket are created, the usage page opens. + {{% note %}} + Currently, this page is just a mockup with no real data. This capability will be available soon. + {{% /note %}} -Browse to https://us-west-2-1.aws.cloud2.influxdata.com and use the credentials you set up upon sign up to login to InfluxCloud UI. +## Log in -## Collect, query, visualize +Browse to [https://us-west-2-1.aws.cloud2.influxdata.com](https://us-west-2-1.aws.cloud2.influxdata.com) and use the credentials created above to log in. +## Collect data -## Known Issues +Use Telegraf to collect and write data to InfluxCloud 2.0. Create Telegraf configurations automatically in the UI or manually configure Telegraf. + {{% note %}} + Scrapers are not available in InfluxCloud 2.0 Beta. + {{% /note %}} + +For details, see [Automatically configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/auto-config/#create-a-telegraf-configuration) and [Manually configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/manual-config/). + +## Query and visualize data + +Once you've set up InfluxCloud to collect data with Telegraf, you can do the following: + +* Query data using Flux, the UI, and the `influx` command line interface. See [Query data](https://v2.docs.influxdata.com/v2.0/query-data/) +* Build custom dashboards to visualize your data. See [Visualize data](https://v2.docs.influxdata.com/v2.0/visualize-data/). ## Provide feedback + +To provide feedback or file a bug, send an email to cloudbeta@influxdata.com. diff --git a/content/v2.0/collect-data/scrape-data/_index.md b/content/v2.0/collect-data/scrape-data/_index.md index d15eac15e..0cb9e752e 100644 --- a/content/v2.0/collect-data/scrape-data/_index.md +++ b/content/v2.0/collect-data/scrape-data/_index.md @@ -19,6 +19,11 @@ then write the scraped data to an InfluxDB bucket. Scrapers can collect data from any HTTP(S)-accessible endpoint that provides data in the [Prometheus data format](https://prometheus.io/docs/instrumenting/exposition_formats/). +{{% cloud %}} +Scrapers are not available in {{< cloud-name >}}. +{{% /cloud %}} + + The following articles provide information about creating and managing InfluxDB data scrapers: {{< children >}} diff --git a/content/v2.0/organizations/create-org.md b/content/v2.0/organizations/create-org.md index 7e7819493..d479f1782 100644 --- a/content/v2.0/organizations/create-org.md +++ b/content/v2.0/organizations/create-org.md @@ -12,6 +12,10 @@ weight: 101 Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI) to create an organization. +{{% cloud %}} +You can only currently create one organization in {{< cloud-name >}}. +{{% /cloud %}} + ## Create an organization in the InfluxDB UI 1. Click the **Organizations** tab in the navigation bar. From d8596c392aafc6cb76af4471aa21ecadb002fade Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 19 Mar 2019 16:39:04 -0600 Subject: [PATCH 09/14] added cloud-specific feedback message --- layouts/partials/article.html | 7 ++++++- layouts/partials/article/_cloud-feedback.html | 7 +++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100644 layouts/partials/article/_cloud-feedback.html diff --git a/layouts/partials/article.html b/layouts/partials/article.html index f9c767087..5f5d5c823 100644 --- a/layouts/partials/article.html +++ b/layouts/partials/article.html @@ -6,6 +6,11 @@ {{ partial "article/cloud.html" . }} {{ .Content }} {{ partial "article/tags.html" . }} - {{ partial "article/_alpha-feedback.html"}} + + {{ if in .RelPermalink "/cloud/"}} + {{ partial "article/_cloud-feedback.html"}} + {{ else }} + {{ partial "article/_alpha-feedback.html"}} + {{ end }}
diff --git a/layouts/partials/article/_cloud-feedback.html b/layouts/partials/article/_cloud-feedback.html new file mode 100644 index 000000000..ca8cd65d1 --- /dev/null +++ b/layouts/partials/article/_cloud-feedback.html @@ -0,0 +1,7 @@ +
+ From 400ce061b2a790107e723bff63b40404f880ebfd Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 16:02:43 -0700 Subject: [PATCH 10/14] More updates to GS and shortcode --- content/v2.0/cloud/get-started.md | 41 ++++++++++++------- .../v2.0/collect-data/scrape-data/_index.md | 6 +-- content/v2.0/get-started.md | 6 ++- content/v2.0/organizations/create-org.md | 6 +-- layouts/shortcodes/cloud-msg.html | 3 ++ layouts/shortcodes/cloud-name.html | 5 +-- 6 files changed, 42 insertions(+), 25 deletions(-) create mode 100644 layouts/shortcodes/cloud-msg.html diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index 3dd997642..18ca91dcb 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -2,34 +2,35 @@ title: Get started with InfluxCloud 2.0 Beta description: > Sign up for and get started with InfluxCloud 2.0 Beta. +cloud_all: true weight: 1 menu: v2_0_cloud: name: Get started with InfluxCloud --- -InfluxCloud 2.0 is a fully managed and hosted version of the InfluxDB 2.x API. To get started with {{< cloud-name >}}, complete the tasks below. +{{< cloud-name >}} is a fully managed and hosted version of the InfluxDB 2.x API. To get started, complete the tasks below. -{{% note %}} -The InfluxDB v2.0 alpha documentation linked to in this article also applies to {{< cloud-name >}} unless otherwise specified. -{{% /note %}} +{{% cloud-msg %}} +The InfluxDB v2.0 alpha documentation linked to in this article also applies to {{< cloud-name "short" >}} unless otherwise specified. +{{% /cloud-msg %}} ## Sign up {{% note %}} -Early access to InfluxCloud 2.0 Beta is limited. You can apply for access [here](https://www.influxdata.com/influxcloud2beta/). +Early access to {{< cloud-name >}} is limited. You can apply for access [here](https://www.influxdata.com/influxcloud2beta/). {{% /note %}} -Sign up for the InfluxCloud 2.0 Beta with the link provided in the InfluxCloud v2.0 Beta Invite email. +Sign up for the InfluxCloud 2.0 Beta with the link provided in the invite email. 1. Look for an email invite from support@influxdata.com with the subject line **You've been invited to beta InfluxCloud 2.0.** 2. Click **Accept Invite** to begin the sign up process. 3. Provide an email id, password and follow the prompts to sign up for a Free Tier. 4. Select the Region and click Next to create your default organization and bucket. - {{% note %}} + {{% cloud-msg %}} InfluxCloud 2.0 Beta will be restricted to one region only: us-west-2. - {{% /note %}} + {{% /cloud-msg %}} 5. Once your organization and bucket are created, the usage page opens. @@ -43,11 +44,11 @@ Browse to [https://us-west-2-1.aws.cloud2.influxdata.com](https://us-west-2-1.aw ## Collect data -Use Telegraf to collect and write data to InfluxCloud 2.0. Create Telegraf configurations automatically in the UI or manually configure Telegraf. +Use Telegraf to collect and write data to {{< cloud-name >}}. Create Telegraf configurations automatically in the UI or manually configure Telegraf. - {{% note %}} - Scrapers are not available in InfluxCloud 2.0 Beta. - {{% /note %}} + {{% cloud-msg %}} + Scrapers are not available in {{< cloud-name >}}. + {{% /cloud-msg %}} For details, see [Automatically configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/auto-config/#create-a-telegraf-configuration) and [Manually configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/manual-config/). @@ -55,9 +56,19 @@ For details, see [Automatically configure Telegraf](https://v2.docs.influxdata.c Once you've set up InfluxCloud to collect data with Telegraf, you can do the following: -* Query data using Flux, the UI, and the `influx` command line interface. See [Query data](https://v2.docs.influxdata.com/v2.0/query-data/) +* Query data using Flux, the UI, and the `influx` command line interface. See [Query data](https://v2.docs.influxdata.com/v2.0/query-data/). * Build custom dashboards to visualize your data. See [Visualize data](https://v2.docs.influxdata.com/v2.0/visualize-data/). -## Provide feedback -To provide feedback or file a bug, send an email to cloudbeta@influxdata.com. +## Known issues and disabled features + +The following issues currently exist in {{< cloud-name >}}: + + * IDPE-2860: Additional user shows up as owner under Cloud 2 organization. + * IDPE 2868: User must not be able to delete token with an active Telegraf configuration pointed to it. + * IDPE-2869: As a Cloud 2.0 user, I cannot use any CLI tools to interact with my Cloud 2 tenant. + * [TELEGRAF-5600](https://github.com/influxdata/telegraf/issues/5600): Improve error message in Telegraf when bucket it's reporting to is not found + * [INFLUXDB-12686](https://github.com/influxdata/influxdb/issues/12686): Unable to copy error message from UI. + * [INFLUXDB-12690](https://github.com/influxdata/influxdb/issues/12690): Impossible to change a task from `every` to `cron`. + * [INFLUXDB-12688](https://github.com/influxdata/influxdb/issues/12688): Create bucket switching between periodically and never fails to create bucket. + * [INFLUXDB-12687](https://github.com/influxdata/influxdb/issues/12687): Create org should display only for the create org permission. diff --git a/content/v2.0/collect-data/scrape-data/_index.md b/content/v2.0/collect-data/scrape-data/_index.md index 0cb9e752e..a50673c1f 100644 --- a/content/v2.0/collect-data/scrape-data/_index.md +++ b/content/v2.0/collect-data/scrape-data/_index.md @@ -19,9 +19,9 @@ then write the scraped data to an InfluxDB bucket. Scrapers can collect data from any HTTP(S)-accessible endpoint that provides data in the [Prometheus data format](https://prometheus.io/docs/instrumenting/exposition_formats/). -{{% cloud %}} -Scrapers are not available in {{< cloud-name >}}. -{{% /cloud %}} +{{% cloud-msg %}} +Scrapers are not available in {{< cloud-name "short" >}}. +{{% /cloud-msg %}} The following articles provide information about creating and managing InfluxDB data scrapers: diff --git a/content/v2.0/get-started.md b/content/v2.0/get-started.md index 61e5bbbea..8e2148937 100644 --- a/content/v2.0/get-started.md +++ b/content/v2.0/get-started.md @@ -8,6 +8,10 @@ weight: 1 v2.0/tags: [get-started, install] --- +{{% cloud-msg %}} +This article describes how to get started with InfluxDB OSS. To get started with {{< cloud-name "short" >}}, see [Get Started with InfluxCloud 2.0 Beta](/v2.0/cloud/get-started/). +{{% /cloud-msg %}} + Get started with InfluxDB v2.0 by downloading InfluxDB, installing the necessary executables, and running the initial setup process. @@ -169,7 +173,7 @@ docker exec -it influxdb /bin/bash {{< /tabs-wrapper >}} -## Setup InfluxDB +## Set up InfluxDB 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 diff --git a/content/v2.0/organizations/create-org.md b/content/v2.0/organizations/create-org.md index d479f1782..2ffee31b1 100644 --- a/content/v2.0/organizations/create-org.md +++ b/content/v2.0/organizations/create-org.md @@ -12,9 +12,9 @@ weight: 101 Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI) to create an organization. -{{% cloud %}} -You can only currently create one organization in {{< cloud-name >}}. -{{% /cloud %}} +{{% cloud-msg %}} +You cannot currently create additional organizations in {{< cloud-name >}}. Only the default organization is available. +{{% /cloud-msg %}} ## Create an organization in the InfluxDB UI diff --git a/layouts/shortcodes/cloud-msg.html b/layouts/shortcodes/cloud-msg.html new file mode 100644 index 000000000..cf83f3a53 --- /dev/null +++ b/layouts/shortcodes/cloud-msg.html @@ -0,0 +1,3 @@ +
+ {{ .Inner }} +
diff --git a/layouts/shortcodes/cloud-name.html b/layouts/shortcodes/cloud-name.html index b653614c0..f2224684b 100644 --- a/layouts/shortcodes/cloud-name.html +++ b/layouts/shortcodes/cloud-name.html @@ -1,7 +1,6 @@ {{ $length := .Get 0 | default "long" }} - {{ if eq $length "long" }} - {{ .Site.Data.products.cloud.name }} + {{- .Site.Data.products.cloud.name -}} {{ else if eq $length "short" }} - {{ .Site.Data.products.cloud.shortname }} + {{- .Site.Data.products.cloud.shortname -}} {{ end }} From 1b67137d45f4900fd0d994aee7d11dd749545ce1 Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 16:28:32 -0700 Subject: [PATCH 11/14] Address review feedback --- content/v2.0/cloud/get-started.md | 10 +++------- content/v2.0/get-started.md | 6 +++--- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index 18ca91dcb..c0571ea35 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -18,7 +18,7 @@ The InfluxDB v2.0 alpha documentation linked to in this article also applies to ## Sign up {{% note %}} -Early access to {{< cloud-name >}} is limited. You can apply for access [here](https://www.influxdata.com/influxcloud2beta/). +Early access to {{< cloud-name >}} is limited. Apply for access [here](https://www.influxdata.com/influxcloud2beta/). {{% /note %}} Sign up for the InfluxCloud 2.0 Beta with the link provided in the invite email. @@ -29,7 +29,7 @@ Sign up for the InfluxCloud 2.0 Beta with the link provided in the invite email. 4. Select the Region and click Next to create your default organization and bucket. {{% cloud-msg %}} - InfluxCloud 2.0 Beta will be restricted to one region only: us-west-2. + InfluxCloud 2.0 Beta is restricted to the us-west-2 region. {{% /cloud-msg %}} 5. Once your organization and bucket are created, the usage page opens. @@ -40,16 +40,12 @@ Sign up for the InfluxCloud 2.0 Beta with the link provided in the invite email. ## Log in -Browse to [https://us-west-2-1.aws.cloud2.influxdata.com](https://us-west-2-1.aws.cloud2.influxdata.com) and use the credentials created above to log in. +Log in at [https://us-west-2-1.aws.cloud2.influxdata.com](https://us-west-2-1.aws.cloud2.influxdata.com) using the credentials created above. ## Collect data Use Telegraf to collect and write data to {{< cloud-name >}}. Create Telegraf configurations automatically in the UI or manually configure Telegraf. - {{% cloud-msg %}} - Scrapers are not available in {{< cloud-name >}}. - {{% /cloud-msg %}} - For details, see [Automatically configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/auto-config/#create-a-telegraf-configuration) and [Manually configure Telegraf](https://v2.docs.influxdata.com/v2.0/collect-data/use-telegraf/manual-config/). ## Query and visualize data diff --git a/content/v2.0/get-started.md b/content/v2.0/get-started.md index 8e2148937..c64e8772c 100644 --- a/content/v2.0/get-started.md +++ b/content/v2.0/get-started.md @@ -8,13 +8,13 @@ weight: 1 v2.0/tags: [get-started, install] --- +Get started with InfluxDB v2.0 by downloading InfluxDB, installing the necessary +executables, and running the initial setup process. + {{% cloud-msg %}} This article describes how to get started with InfluxDB OSS. To get started with {{< cloud-name "short" >}}, see [Get Started with InfluxCloud 2.0 Beta](/v2.0/cloud/get-started/). {{% /cloud-msg %}} -Get started with InfluxDB v2.0 by downloading InfluxDB, installing the necessary -executables, and running the initial setup process. - {{< tabs-wrapper >}} {{% tabs %}} [macOS](#) From f03b1b18e16d51619a7d09276f3e9d45dfdd4e3d Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 16:31:15 -0700 Subject: [PATCH 12/14] Additional review feedback --- content/v2.0/cloud/get-started.md | 1 - 1 file changed, 1 deletion(-) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index c0571ea35..d83a1a776 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -2,7 +2,6 @@ title: Get started with InfluxCloud 2.0 Beta description: > Sign up for and get started with InfluxCloud 2.0 Beta. -cloud_all: true weight: 1 menu: v2_0_cloud: From 4adaf89684c582cfab28af75d65cffa426dd0f8e Mon Sep 17 00:00:00 2001 From: Nora Date: Tue, 19 Mar 2019 16:37:23 -0700 Subject: [PATCH 13/14] Fixed typo --- content/v2.0/cloud/get-started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index d83a1a776..fa184d972 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -62,7 +62,7 @@ The following issues currently exist in {{< cloud-name >}}: * IDPE-2860: Additional user shows up as owner under Cloud 2 organization. * IDPE 2868: User must not be able to delete token with an active Telegraf configuration pointed to it. * IDPE-2869: As a Cloud 2.0 user, I cannot use any CLI tools to interact with my Cloud 2 tenant. - * [TELEGRAF-5600](https://github.com/influxdata/telegraf/issues/5600): Improve error message in Telegraf when bucket it's reporting to is not found + * [TELEGRAF-5600](https://github.com/influxdata/telegraf/issues/5600): Improve error message in Telegraf when bucket it's reporting to is not found. * [INFLUXDB-12686](https://github.com/influxdata/influxdb/issues/12686): Unable to copy error message from UI. * [INFLUXDB-12690](https://github.com/influxdata/influxdb/issues/12690): Impossible to change a task from `every` to `cron`. * [INFLUXDB-12688](https://github.com/influxdata/influxdb/issues/12688): Create bucket switching between periodically and never fails to create bucket. From 5c1179270024b1c2274b312eb24336df51662f8d Mon Sep 17 00:00:00 2001 From: Nora Date: Wed, 20 Mar 2019 14:03:16 -0700 Subject: [PATCH 14/14] Updated known issues --- content/v2.0/cloud/get-started.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/content/v2.0/cloud/get-started.md b/content/v2.0/cloud/get-started.md index fa184d972..7c8a10e30 100644 --- a/content/v2.0/cloud/get-started.md +++ b/content/v2.0/cloud/get-started.md @@ -62,6 +62,9 @@ The following issues currently exist in {{< cloud-name >}}: * IDPE-2860: Additional user shows up as owner under Cloud 2 organization. * IDPE 2868: User must not be able to delete token with an active Telegraf configuration pointed to it. * IDPE-2869: As a Cloud 2.0 user, I cannot use any CLI tools to interact with my Cloud 2 tenant. + * IDPE-2896: Logout does not work in Cloud 2.0 UI. + * IDPE-2897: Single sign on does not work between `https://cloud2.influxdata.com` and `https://us-west-2- + 1.aws.cloud2.influxdata.com`. * [TELEGRAF-5600](https://github.com/influxdata/telegraf/issues/5600): Improve error message in Telegraf when bucket it's reporting to is not found. * [INFLUXDB-12686](https://github.com/influxdata/influxdb/issues/12686): Unable to copy error message from UI. * [INFLUXDB-12690](https://github.com/influxdata/influxdb/issues/12690): Impossible to change a task from `every` to `cron`.