Merge pull request #1838 from influxdata/query-updates

update page descriptions for execute queries
pull/1841/head
kelseiv 2020-11-16 14:57:04 -08:00 committed by GitHub
commit 9bfcc93582
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 9 additions and 6 deletions

View File

@ -47,13 +47,13 @@ If `gpg` is not available, see the [GnuPG homepage](https://gnupg.org/download/)
For example:
```
wget https://dl.influxdata.com/influxdb/releases/influxdb-2.0.1-darwin_amd64.tar.gz.asc
wget https://dl.influxdata.com/influxdb/releases/influxdb-2.0.1_darwin_amd64.tar.gz.asc
```
3. Verify the signature with `gpg --verify`:
```
gpg --verify influxdb-2.0.1-darwin_amd64.tar.gz.asc influxdb-2.0.1-darwin_amd64.tar.gz
gpg --verify influxdb-2.0.1_darwin_amd64.tar.gz.asc influxdb-2.0.1_darwin_amd64.tar.gz
```
The output from this command should include the following:

View File

@ -1,7 +1,7 @@
---
title: Query in Data Explorer
description: >
Query your data in the InfluxDB user interface (UI) Data Explorer.
Query InfluxDB using the InfluxDB user interface (UI) Data Explorer. Discover how to query data in InfluxDB 2.0 using the InfluxDB UI.
aliases:
- /influxdb/v2.0/visualize-data/explore-metrics/
weight: 201

View File

@ -1,6 +1,6 @@
---
title: Query in the Flux REPL
description: Use the Flux REPL to query InfluxDB data.
description: Query InfluxDB using the Flux REPL. Discover how to query data in InfluxDB 2.0 using the Flux REPL.
weight: 203
menu:
influxdb_2_0:

View File

@ -1,6 +1,6 @@
---
title: Query with the InfluxDB API
description: Use the InfluxDB API to query InfluxDB data.
description: Query InfluxDB with the InfluxDB API. Discover how to query data in InfluxDB 2.0 using the InfluxDB API.
weight: 202
menu:
influxdb_2_0:

View File

@ -1,6 +1,6 @@
---
title: Use the `influx query` command
description: Use the influx CLI to query InfluxDB data.
description: Query InfluxDB using the influx CLI. Discover how to query data in InfluxDB 2.0 using `influx query`.
weight: 204
menu:
influxdb_2_0:

View File

@ -77,6 +77,9 @@ exports.handler = (event, context, callback) => {
'.sha256': true,
};
// Remove multiple slashes from path
permanantRedirect(/\/{2,}/.test(request.uri), request.uri.replace(/\/{2,}/, `/`));
// Remove index.html from path
permanantRedirect(request.uri.endsWith('index.html'), request.uri.substr(0, request.uri.length - indexPath.length));