Merge pull request #1838 from influxdata/query-updates
update page descriptions for execute queriespull/1841/head
commit
9bfcc93582
|
@ -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:
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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:
|
||||
|
|
|
@ -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));
|
||||
|
||||
|
|
Loading…
Reference in New Issue