Skip to content

Commit 197f362

Browse files
committed
fix(mono): Get started and Explorer:
- Update Explorer query section and tip - Move tip - Fix anchor link in Explorer install
1 parent 02dde9a commit 197f362

File tree

4 files changed

+19
-36
lines changed

4 files changed

+19
-36
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ node_modules
1515
!telegraf-build/templates
1616
!telegraf-build/scripts
1717
!telegraf-build/README.md
18+
/cypress/downloads
1819
/cypress/screenshots/*
1920
/cypress/videos/*
2021
test-results.xml

content/influxdb3/explorer/install.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,13 @@ Use [Docker](https://docker.com) to install and run **InfluxDB 3 Explorer**.
1414
- [Run the InfluxDB 3 Explorer Docker container](#run-the-influxdb-3-explorer-docker-container)
1515
- [Enable TLS/SSL (HTTPS)](#enable-tlsssl-https)
1616
- [Pre-configure InfluxDB connection settings](#pre-configure-influxdb-connection-settings)
17-
- [Run in admin or query mode](#run-in-admin-or-query-mode)
17+
- [Run in query or admin mode](#run-in-query-or-admin-mode)
18+
- [Run in query mode](#run-in-query-mode)
19+
- [Run in admin mode](#run-in-admin-mode)
1820
- [Environment Variables](#environment-variables)
1921
- [Volume Reference](#volume-reference)
2022
- [Exposed Ports](#exposed-ports)
23+
- [Custom port mapping](#custom-port-mapping)
2124
<!-- END TOC -->
2225

2326
## Run the InfluxDB 3 Explorer Docker container

content/shared/influxdb3-get-started/_index.md

Lines changed: 13 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -165,17 +165,6 @@ If your system doesn't locate `influxdb3`, then `source` the configuration file
165165
source ~/.zshrc
166166
```
167167

168-
> [!Tip]
169-
> #### Run the InfluxDB 3 Explorer query interface (beta)
170-
>
171-
> InfluxDB 3 Explorer (currently in beta) is the user interface component of the InfluxDB 3 platform.
172-
> It provides visual management of databases and tokens and an easy way to query your time series data.
173-
>
174-
> Use Docker to download and run InfluxDB 3 Explorer:
175-
>
176-
> ```bash
177-
> docker pull quay.io/influxdb/influxdb3-explorer:latest
178-
> ```
179168

180169
#### Start InfluxDB
181170

@@ -374,6 +363,15 @@ For more information about server options, use the CLI help or view the [InfluxD
374363
influxdb3 serve --help
375364
```
376365

366+
> [!Tip]
367+
> #### Run the InfluxDB 3 Explorer query interface (beta)
368+
>
369+
> InfluxDB 3 Explorer (currently in beta) is the web-based query and
370+
> administrative interface for InfluxDB 3.
371+
> It provides visual management of databases and tokens and an easy way to query your time series data.
372+
>
373+
> For more information, see the [InfluxDB 3 Explorer documentation](/influxdb3/explorer/).
374+
377375
{{% show-in "enterprise" %}}
378376
#### Licensing
379377

@@ -1012,32 +1010,12 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')]))
10121010

10131011
For more information about the Python client library, see the [`influxdb3-python` repository](https://github.com/InfluxCommunity/influxdb3-python) in GitHub.
10141012

1015-
10161013
### Query using InfluxDB 3 Explorer (Beta)
10171014

1018-
You can use the InfluxDB 3 Explorer query interface by downloading the Docker image.
1019-
1020-
```bash
1021-
docker pull quay.io/influxdb/influxdb3-explorer:latest
1022-
```
1023-
1024-
Run the interface using:
1025-
1026-
{{% show-in "enterprise" %}}
1027-
```bash
1028-
docker run -p 8086:80 -p 8087:8888 quay.io/influxdb/influxdb3-explorer:latest --mode=normal
1029-
```
1030-
{{% /show-in %}}
1031-
{{% show-in "core" %}}
1032-
```bash
1033-
docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest
1034-
```
1035-
{{% /show-in %}}
1036-
1037-
With the default settings above, you can access the UI at http://localhost:8086.
1038-
Set your expected database connection details on the Settings page.
1039-
From there, you can query data, browser your database schema, and do basic
1040-
visualization of your time series data.
1015+
You can use the InfluxDB 3 Explorer web-based interface to query and visualize data,
1016+
and administer your {{% product-name %}} instance.
1017+
For more information, see how to [install InfluxDB 3 Explorer (Beta)](/influxdb3/explorer/install/) using Docker
1018+
and get started querying your data.
10411019

10421020
### Last values cache
10431021

content/shared/influxdb3/_index.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<!-- Allow leading shortcode -->
12
{{% product-name %}} is a database built to collect, process, transform, and store event and time series data, and is ideal for use cases that require real-time ingest and fast query response times to build user interfaces, monitoring, and automation solutions.
23

34
Common use cases include:

0 commit comments

Comments
 (0)