diff --git a/content/chronograf/v1.8/administration/chrono-on-clusters.md b/content/chronograf/v1.8/administration/chrono-on-clusters.md index ad8535ebe..7c7d74240 100644 --- a/content/chronograf/v1.8/administration/chrono-on-clusters.md +++ b/content/chronograf/v1.8/administration/chrono-on-clusters.md @@ -19,4 +19,4 @@ Enter the HTTP bind address of one of your cluster's meta nodes into that input Note that the example above assumes that you do not have authentication enabled. If you have authentication enabled, the form requires username and password information. -For details about monitoring InfluxEnterprise clusters, see [Monitoring InfluxDB Enterprise clusters](/{{< latest "chronograf" >}}/guides/monitoring-influxenterprise-clusters). +For details about monitoring InfluxEnterprise clusters, see [Monitoring InfluxDB Enterprise clusters](/{{chronograf/v1.8/guides/monitoring-influxenterprise-clusters). diff --git a/content/chronograf/v1.8/administration/upgrading.md b/content/chronograf/v1.8/administration/upgrading.md index edca5626f..a086bfd2a 100644 --- a/content/chronograf/v1.8/administration/upgrading.md +++ b/content/chronograf/v1.8/administration/upgrading.md @@ -14,4 +14,4 @@ If you're upgrading from Chronograf 1.4 or later, [download and install](https:/ > ***Note:*** Installing a new version of Chronograf automatically clears the localStorage settings. -After upgrading, see [Get started](/chronograf/latest/introduction/getting-started/) to get up and running. +After upgrading, see [Getting Started](/chronograf/v1.8/introduction/getting-started/) to get up and running. diff --git a/content/chronograf/v1.8/guides/visualization-types.md b/content/chronograf/v1.8/guides/visualization-types.md index 44f06b38f..d85d5bcae 100644 --- a/content/chronograf/v1.8/guides/visualization-types.md +++ b/content/chronograf/v1.8/guides/visualization-types.md @@ -1,7 +1,7 @@ --- title: Visualization types in Chronograf descriptions: > - Chronograf provides multiple visualization types to visualize your data in a format that makes to the most sense for your use case. + Chronograf provides multiple visualization types to visualize your data in a format that makes to the most sense for your use case. menu: chronograf_1_8: name: Visualization types @@ -9,7 +9,7 @@ menu: parent: Guides --- -Chronograf's dashboard views support the following visualization types, which can be selected in the **Visualization Type** selection view of the [Data Explorer](/chronograf/latest/querying-data) . +Chronograf's dashboard views support the following visualization types, which can be selected in the **Visualization Type** selection view of the [Data Explorer](/chronograf/v1.8/guides/querying-data). [Visualization Type selector](/img/chronograf/1-6-viz-types-selector.png) diff --git a/content/influxdb/v2.0/account-management/data-usage.md b/content/influxdb/v2.0/account-management/data-usage.md index fbbe1946f..e7b3fbe0a 100644 --- a/content/influxdb/v2.0/account-management/data-usage.md +++ b/content/influxdb/v2.0/account-management/data-usage.md @@ -29,7 +29,7 @@ Find data usage information for the time frame specified in the drop-down at the - **Rate Limits over the specified time period:** A list of rate limit events over the specified time period. -{{< img-hd src="/img/2-0-cloud-usage.png" />}} +{{< img-hd src="/img/influxdb/2-0-cloud-usage.png" />}} ## Exceeded rate limits diff --git a/content/influxdb/v2.0/query-data/execute-queries.md b/content/influxdb/v2.0/query-data/execute-queries.md index 002459dd7..9cf4b64f9 100644 --- a/content/influxdb/v2.0/query-data/execute-queries.md +++ b/content/influxdb/v2.0/query-data/execute-queries.md @@ -23,7 +23,7 @@ This guide covers the different options: ## Data Explorer Queries can be built, executed, and visualized in InfluxDB UI's Data Explorer. -![Data Explorer with Flux](/img/data-explorer-beta-8.png) +![Data Explorer with Flux](/img/influxdb/2-0-data-explorer.png) ## Influx REPL The [Flux REPL](/influxdb/v2.0/tools/repl/) starts an interactive diff --git a/content/influxdb/v2.0/query-data/flux/group-data.md b/content/influxdb/v2.0/query-data/flux/group-data.md index f7da61dfa..710cd2d44 100644 --- a/content/influxdb/v2.0/query-data/flux/group-data.md +++ b/content/influxdb/v2.0/query-data/flux/group-data.md @@ -164,7 +164,7 @@ Table: keys: [_start, _stop, _field, _measurement, cpu] **Note that the group key is output with each table: `Table: keys: `.** -![Group example data set](/img/grouping-data-set.png) +![Group example data set](/img/flux/grouping-data-set.png) ### Group by CPU Group the `dataSet` stream by the `cpu` column. @@ -253,7 +253,7 @@ Table: keys: [cpu] The visualization remains the same. -![Group by CPU](/img/grouping-data-set.png) +![Group by CPU](/img/flux/grouping-data-set.png) ### Group by time Grouping data by the `_time` column is a good illustration of how grouping changes the structure of your data. @@ -378,7 +378,7 @@ Table: keys: [_time] Because each timestamp is structured as a separate table, when visualized, all points that share the same timestamp appear connected. -![Group by time](/img/grouping-by-time.png) +![Group by time](/img/flux/grouping-by-time.png) {{% note %}} With some further processing, you could calculate the average CPU usage across all CPUs per point @@ -670,7 +670,7 @@ Table: keys: [_time, cpu] When visualized, tables appear as individual, unconnected points. -![Group by CPU and time](/img/grouping-by-cpu-time.png) +![Group by CPU and time](/img/flux/grouping-by-cpu-time.png) Grouping by `cpu` and `_time` is a good illustration of how grouping works. diff --git a/content/influxdb/v2.0/query-data/flux/histograms.md b/content/influxdb/v2.0/query-data/flux/histograms.md index e98465502..9e0861197 100644 --- a/content/influxdb/v2.0/query-data/flux/histograms.md +++ b/content/influxdb/v2.0/query-data/flux/histograms.md @@ -76,7 +76,7 @@ logarithmicBins(start: 1.0, factor: 2.0, count: 10, infinity: true) The [Histogram visualization type](/influxdb/v2.0/visualize-data/visualization-types/histogram/) automatically converts query results into a binned and segmented histogram. -{{< img-hd src="/img/2-0-visualizations-histogram-example.png" alt="Histogram visualization" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-histogram-example.png" alt="Histogram visualization" />}} Use the [Histogram visualization controls](/influxdb/v2.0/visualize-data/visualization-types/histogram/#histogram-controls) to specify the number of bins and define groups in bins. @@ -190,4 +190,4 @@ from(bucket: "example-bucket") In the Histogram visualization options, select `_time` as the **X Column** and `severity` as the **Group By** option: -{{< img-hd src="/img/2-0-visualizations-histogram-errors.png" alt="Logs by severity histogram" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-histogram-errors.png" alt="Logs by severity histogram" />}} diff --git a/content/influxdb/v2.0/query-data/flux/sql.md b/content/influxdb/v2.0/query-data/flux/sql.md index b679739fc..7f7432cae 100644 --- a/content/influxdb/v2.0/query-data/flux/sql.md +++ b/content/influxdb/v2.0/query-data/flux/sql.md @@ -184,7 +184,7 @@ sql.from( Use the variable to manipulate queries in your dashboards. -{{< img-hd src="/img/2-0-sql-dashboard-variable.png" alt="Dashboard variable from SQL query results" />}} +{{< img-hd src="/img/influxdb/2-0-sql-dashboard-variable.png" alt="Dashboard variable from SQL query results" />}} --- diff --git a/content/influxdb/v2.0/query-data/flux/window-aggregate.md b/content/influxdb/v2.0/query-data/flux/window-aggregate.md index 540465eef..f06ad0e9a 100644 --- a/content/influxdb/v2.0/query-data/flux/window-aggregate.md +++ b/content/influxdb/v2.0/query-data/flux/window-aggregate.md @@ -187,7 +187,7 @@ Table: keys: [_start, _stop, _field, _measurement] When visualized in the InfluxDB UI, each window table is displayed in a different color. -![Windowed data](/img/simple-windowed-data.png) +![Windowed data](/img/flux/simple-windowed-data.png) ## Aggregate data [Aggregate functions](/influxdb/v2.0/reference/flux/stdlib/built-in/transformations/aggregates) take the values @@ -249,7 +249,7 @@ Table: keys: [_start, _stop, _field, _measurement] Because each data point is contained in its own table, when visualized, they appear as single, unconnected points. -![Aggregated windowed data](/img/simple-windowed-aggregate-data.png) +![Aggregated windowed data](/img/flux/simple-windowed-aggregate-data.png) ### Recreate the time column **Notice the `_time` column is not in the [aggregated output tables](#mean-output-tables).** @@ -343,7 +343,7 @@ Table: keys: [_start, _stop, _field, _measurement] With the aggregate values in a single table, data points in the visualization are connected. -![Unwindowed aggregate data](/img/simple-unwindowed-data.png) +![Unwindowed aggregate data](/img/flux/simple-unwindowed-data.png) ## Summing up You have now created a Flux query that windows and aggregates data. diff --git a/content/influxdb/v2.0/query-data/get-started/transform-data.md b/content/influxdb/v2.0/query-data/get-started/transform-data.md index 798b7a611..50eb9e2a3 100644 --- a/content/influxdb/v2.0/query-data/get-started/transform-data.md +++ b/content/influxdb/v2.0/query-data/get-started/transform-data.md @@ -83,7 +83,7 @@ from(bucket:"example-bucket") As data is gathered into windows of time, each window is output as its own table. When visualized, each table is assigned a unique color. -![Windowed data tables](/img/flux-windowed-data.png) +![Windowed data tables](/img/flux/windowed-data.png) ## Aggregate windowed data Flux aggregate functions take the `_value`s in each table and aggregate them in some way. @@ -104,7 +104,7 @@ from(bucket:"example-bucket") As rows in each window are aggregated, their output table contains only a single row with the aggregate value. Windowed tables are all still separate and, when visualized, will appear as single, unconnected points. -![Windowed aggregate data](/img/flux-windowed-aggregates.png) +![Windowed aggregate data](/img/flux/windowed-aggregates.png) ## Add times to your aggregates As values are aggregated, the resulting tables do not have a `_time` column because @@ -150,7 +150,7 @@ from(bucket:"example-bucket") Once ungrouped and combined into a single table, the aggregate data points will appear connected in your visualization. -![Unwindowed aggregate data](/img/flux-windowed-aggregates-ungrouped.png) +![Unwindowed aggregate data](/img/flux/windowed-aggregates-ungrouped.png) ## Helper functions This may seem like a lot of coding just to build a query that aggregates data, however going through the diff --git a/content/influxdb/v2.0/reference/cli/influx/_index.md b/content/influxdb/v2.0/reference/cli/influx/_index.md index 17403da2d..6a5b2635b 100644 --- a/content/influxdb/v2.0/reference/cli/influx/_index.md +++ b/content/influxdb/v2.0/reference/cli/influx/_index.md @@ -27,18 +27,27 @@ influx [command] {{% note %}} #### Set your credentials -1. To avoid having to pass your InfluxDB [authentication token](/influxdb/v2.0/users/tokens/) with each `influx` command, set up a configuration profile if you haven't already. +1. To avoid having to pass your InfluxDB [authentication token](/influxdb/v2.0/security/tokens/view-tokens/) with each `influx` command, set up a configuration profile if you haven't already. 2. To see if you have a configuration profile, run `influx config`. If nothing is displayed, you don't have a configuration profile. -3. To configure a profile, use the following command: `influx config create -n default -u $INFLUX_URL -o $INFLUX_ORG -t $INFLUX_TOKEN -a`. - This configures a new profile named `default` and makes the profile active so commands run against this instance. - For more detail, see [influx config](https://v2.docs.influxdata.com/v2.0/reference/cli/influx/config/). +3. To configure a profile, in a terminal, run the following command: + ```sh + # Set up a configuration profile + influx config create -n default \ + -u http://localhost:9999 \ + -o example-org \ + -t mySuP3rS3cr3tT0keN \ + -a + ``` + + This configures a new profile named `default` and makes the profile active so commands run against this instance. + For more detail, see [influx config](/influxdb/v2.0/reference/cli/influx/config/). {{% /note %}} ## Commands -| Command | Description | -|:------- |:----------- | +| Command | Description | +|:------- |:----------- | | [apply](/influxdb/v2.0/reference/cli/influx/apply) | Apply an InfluxDB template | | [auth](/influxdb/v2.0/reference/cli/influx/auth) | Authorization management commands | | [backup](/influxdb/v2.0/reference/cli/influx/backup) | Back up data | @@ -73,3 +82,4 @@ To override environment variables, set the flag explicitly in your command. | Flag | | Description | |:---- |:--- |:----------- | | `-h` | `--help` | Help for the `influx` command | + diff --git a/content/influxdb/v2.0/reference/cli/influx/transpile/_index.md b/content/influxdb/v2.0/reference/cli/influx/transpile/_index.md index 9f43310b5..d79576e5d 100644 --- a/content/influxdb/v2.0/reference/cli/influx/transpile/_index.md +++ b/content/influxdb/v2.0/reference/cli/influx/transpile/_index.md @@ -23,7 +23,7 @@ influx transpile [InfluxQL query] [flags] {{% note %}} The InfluxQL query must be valid and contain both a database and measurement. -See the [InfluxQL documentation](https://docs.influxdata.com/influxdb/latest/query_language/) for more information. +See the [InfluxQL documentation](/{{< latest "influxdb" "v1" >}}/query_language/) for more information. {{% /note %}} ## Flags diff --git a/content/influxdb/v2.0/reference/flux/stdlib/built-in/inputs/buckets.md b/content/influxdb/v2.0/reference/flux/stdlib/built-in/inputs/buckets.md index bd2586e77..9943b3dd2 100644 --- a/content/influxdb/v2.0/reference/flux/stdlib/built-in/inputs/buckets.md +++ b/content/influxdb/v2.0/reference/flux/stdlib/built-in/inputs/buckets.md @@ -11,7 +11,7 @@ menu: parent: built-in-inputs weight: 401 related: - - https://docs.influxdata.com/influxdb/latest/query_language/schema_exploration/#show-databases, InfluxQL - SHOW DATABASES]() + - /{{< latest "influxdb" "v1" >}}/query_language/schema_exploration/#show-databases, InfluxQL - SHOW DATABASES]() --- The `buckets()` function returns a list of buckets in the organization. diff --git a/content/influxdb/v2.0/visualize-data/dashboards/control-dashboard.md b/content/influxdb/v2.0/visualize-data/dashboards/control-dashboard.md index 745b3c9c2..8a235ac2d 100644 --- a/content/influxdb/v2.0/visualize-data/dashboards/control-dashboard.md +++ b/content/influxdb/v2.0/visualize-data/dashboards/control-dashboard.md @@ -33,13 +33,13 @@ For details on using the Data Explorer, see [Explore metrics](/influxdb/v2.0/vis Click the timezone dropdown to select a timezone to use for the dashboard. Select either the local time (default) or UTC. -{{< img-hd src="/img/2-0-controls-timezone.png" alt="Select timezone" />}} +{{< img-hd src="/img/influxdb/2-0-controls-timezone.png" alt="Select timezone" />}} ### Select auto-refresh interval Select how frequently to refresh the dashboard's data. By default, refreshing is paused. -{{< img-hd src="/img/2-0-controls-refresh-interval.png" alt="Select refresh interval" />}} +{{< img-hd src="/img/influxdb/2-0-controls-refresh-interval.png" alt="Select refresh interval" />}} ### Manually refresh dashboard @@ -49,7 +49,7 @@ Click the refresh button (**{{< icon "refresh" >}}**) to manually refresh the da 1. Select from the time range options in the dropdown menu. - {{< img-hd src="/img/2-0-controls-time-range.png" alt="Select time range" />}} + {{< img-hd src="/img/influxdb/2-0-controls-time-range.png" alt="Select time range" />}} 2. Select **Custom Time Range** to enter a custom time range with precision up to nanoseconds. The default time range is 5 minutes. @@ -67,4 +67,4 @@ Click the fullscreen icon (**{{< icon "fullscreen" >}}**) to enter presentation ### Toggle dark mode and light mode Click the moon or sun icons to toggle your dashboard between **dark mode** and **light mode.** -{{< img-hd src="/img/2-0-controls-dark-light-mode.png" alt="Dark & light mode"/>}} +{{< img-hd src="/img/influxdb/2-0-controls-dark-light-mode.png" alt="Dark & light mode"/>}} diff --git a/content/influxdb/v2.0/visualize-data/explore-metrics.md b/content/influxdb/v2.0/visualize-data/explore-metrics.md index 2fbd2ef2a..11fc1c461 100644 --- a/content/influxdb/v2.0/visualize-data/explore-metrics.md +++ b/content/influxdb/v2.0/visualize-data/explore-metrics.md @@ -51,7 +51,7 @@ See [Get started with Flux](/influxdb/v2.0/query-data/get-started) to learn more - Select an available [visualization types](/influxdb/v2.0/visualize-data/visualization-types/) from the dropdown menu in the upper-left: - {{< img-hd src="/img/2-0-visualizations-dropdown.png" title="Visualization dropdown" />}} + {{< img-hd src="/img/influxdb/2-0-visualizations-dropdown.png" title="Visualization dropdown" />}} ## Control your dashboard cell @@ -62,7 +62,7 @@ To open the cell editor overlay, click the gear icon in the upper right of a cel Toggle the **View Raw Data** {{< icon "toggle" >}} option to see your data in table format instead of a graph. Use this option when data can't be visualized using a visualization type. - {{< img-hd src="/img/beta-8-raw-data.png" alt="View raw data" />}} + {{< img-hd src="/img/influxdb/2-0-controls-view-raw-data.png" alt="View raw data" />}} ### Save as CSV @@ -72,7 +72,7 @@ Click the CSV icon to save the cells contents as a CSV file. Select how frequently to refresh the dashboard's data. By default, refreshing is paused. -{{< img-hd src="/img/beta-8-interval-dropdown.png" alt="Select refresh interval" />}} +{{< img-hd src="/img/influxdb-influxdb/2-0-controls-refresh-interval.png" alt="Select refresh interval" />}} ### Manually refresh dashboard @@ -82,7 +82,7 @@ Click the refresh button ({{< icon "refresh" >}}) to manually refresh the dashbo 1. Select from the time range options in the dropdown menu. - {{< img-hd src="/img/2-0-controls-time-range.png" alt="Select time range" />}} + {{< img-hd src="/img/influxdb/2-0-controls-time-range.png" alt="Select time range" />}} 2. Select **Custom Time Range** to enter a custom time range with precision up to nanoseconds. The default time range is 5m. diff --git a/content/influxdb/v2.0/visualize-data/other-tools/grafana.md b/content/influxdb/v2.0/visualize-data/other-tools/grafana.md index 03a987090..779417f68 100644 --- a/content/influxdb/v2.0/visualize-data/other-tools/grafana.md +++ b/content/influxdb/v2.0/visualize-data/other-tools/grafana.md @@ -61,7 +61,7 @@ configure your InfluxDB connection: - **Default Bucket**: The default [bucket](/influxdb/v2.0/organizations/buckets/) to use in Flux queries. - **Min time interval**: The [Grafana minimum time interval](https://grafana.com/docs/grafana/latest/features/datasources/influxdb/#min-time-interval). - {{< img-hd src="/img/2-0-visualize-grafana.png" />}} + {{< img-hd src="/img/influxdb/2-0-visualize-grafana.png" />}} 2. Click **Save & Test**. Grafana attempts to connect to the InfluxDB 2.0 datasource and returns the results of the test. @@ -100,7 +100,7 @@ configure your InfluxDB connection: - **HTTP Method**: Select **GET**. - **Min time interval**: The [Grafana minimum time interval](https://grafana.com/docs/grafana/latest/features/datasources/influxdb/#min-time-interval). - {{< img-hd src="/img/2-0-visualize-grafana-influxql.png" />}} + {{< img-hd src="/img/influxdb/2-0-visualize-grafana-influxql.png" />}} 5. Click **Save & Test**. Grafana attempts to connect to the InfluxDB 2.0 datasource and returns the results of the test. diff --git a/content/influxdb/v2.0/visualize-data/templates/create-template.md b/content/influxdb/v2.0/visualize-data/templates/create-template.md index 16bdeee31..de3772522 100644 --- a/content/influxdb/v2.0/visualize-data/templates/create-template.md +++ b/content/influxdb/v2.0/visualize-data/templates/create-template.md @@ -35,7 +35,7 @@ Only [user templates](/influxdb/v2.0/visualize-data/templates/#dashboard-templat 3. Select **User Templates**. - {{< img-hd src="/img/2-0-templates-type-select.png" alt="Select User Templates" />}} + {{< img-hd src="/img/influxdb/2-0-templates-type-select.png" alt="Select User Templates" />}} 4. Hover over the template you want to clone and click **{{< icon "clone" >}}**. 5. Click **Clone** to confirm. The cloned template appears in your list. diff --git a/content/influxdb/v2.0/visualize-data/templates/use-template.md b/content/influxdb/v2.0/visualize-data/templates/use-template.md index 5910f474c..53291df21 100644 --- a/content/influxdb/v2.0/visualize-data/templates/use-template.md +++ b/content/influxdb/v2.0/visualize-data/templates/use-template.md @@ -20,7 +20,7 @@ To create a new dashboard from an InfluxDB dashboard template: 3. Select the [template type](/influxdb/v2.0/visualize-data/templates/#dashboard-template-types). - {{< img-hd src="/img/2-0-templates-type-select.png" alt="Select User Templates" />}} + {{< img-hd src="/img/influxdb/2-0-templates-type-select.png" alt="Select User Templates" />}} 4. Hover over the template you want to use and click **Create**. A notification appears confirming the dashboard was created. diff --git a/content/influxdb/v2.0/visualize-data/templates/view-template.md b/content/influxdb/v2.0/visualize-data/templates/view-template.md index 72a35c851..83410aac0 100644 --- a/content/influxdb/v2.0/visualize-data/templates/view-template.md +++ b/content/influxdb/v2.0/visualize-data/templates/view-template.md @@ -20,7 +20,7 @@ To view templates in the InfluxDB userface (UI): 3. Select templates to view: - {{< img-hd src="/img/2-0-templates-type-select.png" alt="Select User Templates" />}} + {{< img-hd src="/img/influxdb/2-0-templates-type-select.png" alt="Select User Templates" />}} - **Static Templates:** templates included with InfluxDB. For more information, see [Static templates](#static-templates) below. diff --git a/content/influxdb/v2.0/visualize-data/variables/_index.md b/content/influxdb/v2.0/visualize-data/variables/_index.md index 7f37a0aae..54b52f8df 100644 --- a/content/influxdb/v2.0/visualize-data/variables/_index.md +++ b/content/influxdb/v2.0/visualize-data/variables/_index.md @@ -33,7 +33,7 @@ from(bucket: v.bucket) When building Flux queries for dashboard cells, view available dashboard variables in the **Variables** tab next to the Functions tab. -{{< img-hd src="/img/2-0-variables-data-explorer-view.png" />}} +{{< img-hd src="/img/influxdb/2-0-variables-data-explorer-view.png" />}} Click a variable name to add it to your query and select a value from the **Value** dropdown. diff --git a/content/influxdb/v2.0/visualize-data/variables/view-variables.md b/content/influxdb/v2.0/visualize-data/variables/view-variables.md index ab0c02c39..98f923304 100644 --- a/content/influxdb/v2.0/visualize-data/variables/view-variables.md +++ b/content/influxdb/v2.0/visualize-data/variables/view-variables.md @@ -30,4 +30,4 @@ View a list of dashboard variables in the InfluxDB user interface (UI) from an o 2. Switch to **Script Editor**. 3. Click the **Variables** tab to the right of the script editor. - {{< img-hd src="/img/2-0-variables-data-explorer-view.png" />}} + {{< img-hd src="/img/influxdb/2-0-variables-data-explorer-view.png" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/gauge.md b/content/influxdb/v2.0/visualize-data/visualization-types/gauge.md index 241a00093..3c70333c5 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/gauge.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/gauge.md @@ -1,7 +1,7 @@ --- title: Gauge visualization list_title: Gauge -list_image: /img/2-0-visualizations-gauge-example.png +list_image: /img/influxdb/2-0-visualizations-gauge-example.png description: > The Gauge view displays the single value most recent value for a time series in a gauge view. weight: 206 @@ -15,7 +15,7 @@ menu: The **Gauge** visualization displays the most recent value for a time series in a gauge. -{{< img-hd src="/img/2-0-visualizations-gauge-example-8.png" alt="Gauge example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-gauge-example-8.png" alt="Gauge example" />}} Select the **Gauge** option from the visualization dropdown in the upper right. @@ -66,4 +66,4 @@ from(bucket: "example-bucket") ``` ###### Visualization options for pressure gauge -{{< img-hd src="/img/2-0-visualizations-gauge-pressure-8.png" alt="Pressure guage example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-gauge-pressure-8.png" alt="Pressure guage example" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/graph-single-stat.md b/content/influxdb/v2.0/visualize-data/visualization-types/graph-single-stat.md index 8064ec2d8..7c10d31a4 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/graph-single-stat.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/graph-single-stat.md @@ -1,7 +1,7 @@ --- title: Graph + Single Stat visualization list_title: Graph + Single Stat -list_image: /img/2-0-visualizations-line-graph-single-stat-example.png +list_image: /img/influxdb/2-0-visualizations-line-graph-single-stat-example.png description: > The Graph + Single Stat view displays the specified time series in a line graph and overlays the single most recent value as a large numeric value. @@ -20,7 +20,7 @@ related: The **Graph + Single Stat** view displays the specified time series in a line graph and overlays the single most recent value as a large numeric value. -{{< img-hd src="/img/2-0-visualizations-line-graph-single-stat-example-8.png" alt="Line Graph + Single Stat example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-line-graph-single-stat-example-8.png" alt="Line Graph + Single Stat example" />}} Select the **Graph + Single Stat** option from the visualization dropdown in the upper right. @@ -95,4 +95,4 @@ from(bucket: "example-bucket") ) ``` ###### Memory allocations visualization -{{< img-hd src="/img/2-0-visualizations-graph-single-stat-mem-8.png" alt="Graph + Single Stat Memory Usage Example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-graph-single-stat-mem-8.png" alt="Graph + Single Stat Memory Usage Example" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/graph.md b/content/influxdb/v2.0/visualize-data/visualization-types/graph.md index e77730c4b..6c76dc5d6 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/graph.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/graph.md @@ -1,7 +1,7 @@ --- title: Graph visualization list_title: Graph -list_image: /img/2-0-visualizations-line-graph-example.png +list_image: /img/influxdb/2-0-visualizations-line-graph-example.png description: > The Graph view lets you select from multiple graph types such as line graphs and bar graphs *(Coming)*. weight: 201 @@ -16,7 +16,7 @@ menu: The Graph visualization provides several types of graphs, each configured through the [Graph controls](#graph-controls). -{{< img-hd src="/img/2-0-visualizations-line-graph-example-8.png" alt="Line Graph example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-line-graph-example-8.png" alt="Line Graph example" />}} Select the **Graph** option from the visualization dropdown in the upper right. @@ -61,13 +61,13 @@ the visualization dropdown. ## Graph Examples ##### Graph with linear interpolation -{{< img-hd src="/img/2-0-visualizations-line-graph-example-8.png" alt="Line Graph example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-line-graph-example-8.png" alt="Line Graph example" />}} ##### Graph with smooth interpolation -{{< img-hd src="/img/2-0-visualizations-line-graph-smooth-example-8.png" alt="Step-Plot Graph example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-line-graph-smooth-example-8.png" alt="Step-Plot Graph example" />}} ##### Graph with step interpolation -{{< img-hd src="/img/2-0-visualizations-line-graph-step-example-8.png" alt="Step-Plot Graph example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-line-graph-step-example-8.png" alt="Step-Plot Graph example" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/heatmap.md b/content/influxdb/v2.0/visualize-data/visualization-types/heatmap.md index 3f5627a5d..3b206c851 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/heatmap.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/heatmap.md @@ -1,7 +1,7 @@ --- title: Heatmap visualization list_title: Heatmap -list_image: /img/2-0-visualizations-heatmap-example.png +list_image: /img/influxdb/2-0-visualizations-heatmap-example.png description: > A Heatmap displays the distribution of data on an x and y axes where color represents different concentrations of data points. @@ -19,7 +19,7 @@ related: A **Heatmap** displays the distribution of data on an x and y axes where color represents different concentrations of data points. -{{< img-hd src="/img/2-0-visualizations-heatmap-example.png" alt="Heatmap example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-heatmap-example.png" alt="Heatmap example" />}} Select the **Heatmap** option from the visualization dropdown in the upper right. @@ -98,7 +98,7 @@ and `_value_mem` is selected as the [Y Column](#data). The domain for each axis is also customized to account for the scale difference between column values. -{{< img-hd src="/img/2-0-visualizations-heatmap-correlation.png" alt="Heatmap correlation example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-heatmap-correlation.png" alt="Heatmap correlation example" />}} ## Important notes @@ -110,7 +110,7 @@ However, in certain cases, heatmaps provide better visibility into point density For example, the dashboard cells below visualize the same query results: -{{< img-hd src="/img/2-0-visualizations-heatmap-vs-scatter.png" alt="Heatmap vs Scatter plot" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-heatmap-vs-scatter.png" alt="Heatmap vs Scatter plot" />}} The heatmap indicates isolated high point density, which isn't visible in the scatter plot. In the scatter plot visualization, points that share the same X and Y coordinates diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/histogram.md b/content/influxdb/v2.0/visualize-data/visualization-types/histogram.md index cdaf47382..98cbd3f14 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/histogram.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/histogram.md @@ -1,7 +1,7 @@ --- title: Histogram visualization list_title: Histogram -list_image: /img/2-0-visualizations-histogram-example.png +list_image: /img/influxdb/2-0-visualizations-histogram-example.png description: > A histogram is a way to view the distribution of data. The y-axis is dedicated to count, and the x-axis is divided into bins. @@ -17,7 +17,7 @@ menu: A histogram is a way to view the distribution of data. The y-axis is dedicated to count, and the X-axis is divided into bins. -{{< img-hd src="/img/2-0-visualizations-histogram-example.png" alt="Histogram example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-histogram-example.png" alt="Histogram example" />}} Select the **Histogram** option from the visualization dropdown in the upper right. @@ -79,4 +79,4 @@ from(bucket: "example-bucket") In the Histogram visualization options, select `_time` as the [X Column](#data) and `severity` as the [Group By](#data) option: -{{< img-hd src="/img/2-0-visualizations-histogram-errors.png" alt="Errors histogram" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-histogram-errors.png" alt="Errors histogram" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/scatter.md b/content/influxdb/v2.0/visualize-data/visualization-types/scatter.md index 5f2dde006..4502d4dc8 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/scatter.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/scatter.md @@ -1,7 +1,7 @@ --- title: Scatter visualization list_title: Scatter -list_image: /img/2-0-visualizations-scatter-example.png +list_image: /img/influxdb/2-0-visualizations-scatter-example.png description: > The Scatter view uses a scatter plot to display time series data. weight: 208 @@ -17,7 +17,7 @@ related: The **Scatter** view uses a scatter plot to display time series data. -{{< img-hd src="/img/2-0-visualizations-scatter-example.png" alt="Scatter plot example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-scatter-example.png" alt="Scatter plot example" />}} Select the **Scatter** option from the visualization dropdown in the upper right. @@ -93,7 +93,7 @@ union(tables: [cpu, mem]) ###### Use a scatter plot to visualize correlation In the Scatter visualization controls, points are differentiated based on their group keys. -{{< img-hd src="/img/2-0-visualizations-scatter-correlation.png" alt="Heatmap correlation example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-scatter-correlation.png" alt="Heatmap correlation example" />}} ## Important notes @@ -104,7 +104,7 @@ However, in certain cases, scatterplots can "hide" points if they share the same For example, the dashboard cells below visualize the same query results: -{{< img-hd src="/img/2-0-visualizations-heatmap-vs-scatter.png" alt="Heatmap vs Scatter plot" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-heatmap-vs-scatter.png" alt="Heatmap vs Scatter plot" />}} The heatmap indicates isolated high point density, which isn't visible in the scatter plot. In the scatter plot visualization, points that share the same X and Y coordinates diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/single-stat.md b/content/influxdb/v2.0/visualize-data/visualization-types/single-stat.md index c3f489b43..8f86e31ac 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/single-stat.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/single-stat.md @@ -1,7 +1,7 @@ --- title: Single Stat visualization list_title: Single stat -list_image: /img/2-0-visualizations-single-stat-example.png +list_image: /img/influxdb/2-0-visualizations-single-stat-example.png description: > The Single Stat view displays the most recent value of the specified time series as a numerical value. weight: 205 @@ -15,7 +15,7 @@ menu: The **Single Stat** view displays the most recent value of the specified time series as a numerical value. -{{< img-hd src="/img/2-0-visualizations-single-stat-example-8.png" alt="Single stat example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-single-stat-example-8.png" alt="Single stat example" />}} Select the **Single Stat** option from the visualization dropdown in the upper right. @@ -64,4 +64,4 @@ from(bucket: "example-bucket") ``` ###### Memory usage as a single stat -{{< img-hd src="/img/2-0-visualizations-single-stat-example-8.png" alt="Graph + Single Stat Memory Usage Example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-single-stat-example-8.png" alt="Graph + Single Stat Memory Usage Example" />}} diff --git a/content/influxdb/v2.0/visualize-data/visualization-types/table.md b/content/influxdb/v2.0/visualize-data/visualization-types/table.md index 2d0aa867a..2f096e0a5 100644 --- a/content/influxdb/v2.0/visualize-data/visualization-types/table.md +++ b/content/influxdb/v2.0/visualize-data/visualization-types/table.md @@ -1,7 +1,7 @@ --- title: Table visualization list_title: Table -list_image: /img/2-0-visualizations-table-example.png +list_image: /img/influxdb/2-0-visualizations-table-example.png description: > The Table option displays the results of queries in a tabular view, which is sometimes easier to analyze than graph views of data. @@ -17,7 +17,7 @@ menu: The **Table** option displays the results of queries in a tabular view, which is sometimes easier to analyze than graph views of data. -{{< img-hd src="/img/2-0-visualizations-table-example.png" alt="Table example" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-table-example.png" alt="Table example" />}} Select the **Table** option from the visualization dropdown in the upper right. @@ -82,4 +82,4 @@ from(bucket: "example-bucket") ``` ###### Cluster metrics in a table -{{< img-hd src="/img/2-0-visualizations-table-human-readable.png" alt="Human readable metrics in a table" />}} +{{< img-hd src="/img/influxdb/2-0-visualizations-table-human-readable.png" alt="Human readable metrics in a table" />}} diff --git a/content/influxdb/v2.0/write-data/no-code/third-party.md b/content/influxdb/v2.0/write-data/no-code/third-party.md index ef46ea784..39084e649 100644 --- a/content/influxdb/v2.0/write-data/no-code/third-party.md +++ b/content/influxdb/v2.0/write-data/no-code/third-party.md @@ -18,7 +18,7 @@ A number of third-party technologies can be configured to send line protocol dir If you're using any of the following technologies, check out the handy links below to configure these technologies to write data to InfluxDB (**no additional software to download or install**): -- (Write metrics only) [Vector 0.9 or later](#configure-vector) +- (Write metrics and log events only) [Vector 0.9 or later](#configure-vector) - [Apache NiFi 1.8 or later](#configure-apache-nifi) @@ -30,9 +30,13 @@ If you're using any of the following technologies, check out the handy links bel #### Configure Vector -1. On the Vector.dev docs site, see the [InfluxDB Metrics Sink](https://vector.dev/docs/reference/sinks/influxdb_metrics/) page. +1. View the **Vector documentation**: + - For write metrics, [InfluxDB Metrics Sink](https://vector.dev/docs/reference/sinks/influxdb_metrics/) + - For log events, [InfluxDB Logs Sink](https://vector.dev/docs/reference/sinks/influxdb_logs/) 2. Under **Configuration**, click **v2** to view configuration settings. -3. Scroll down to [How It Works](https://vector.dev/docs/reference/sinks/influxdb_metrics/#how-it-works) for more detail. +3. Scroll down to **How It Works** for more detail: + - [InfluxDB Metrics Sink – How It Works ](https://vector.dev/docs/reference/sinks/influxdb_metrics/#how-it-works) + - [InfluxDB Logs Sink – How It Works](https://vector.dev/docs/reference/sinks/influxdb_logs/#how-it-works) #### Configure Apache NiFi diff --git a/layouts/_default/landing-influxdb.html b/layouts/_default/landing-influxdb.html index 7e3a7ead9..5b632b656 100644 --- a/layouts/_default/landing-influxdb.html +++ b/layouts/_default/landing-influxdb.html @@ -5,10 +5,6 @@ {{ $product := index $productPathData 0 }} {{ $currentVersion := index $productPathData 1 }} -{{ $productPathData := findRE "[^/]+.*?" .RelPermalink }} -{{ $product := index $productPathData 0 }} -{{ $currentVersion := index $productPathData 1 }} -
{{ partial "sidebar.html" . }}