Skip to content

Commit 97c7bf3

Browse files
Merge pull request #5980 from influxdata/pbarnett/add-influxdb3-explorer-info
chore:influxdb3 explorer install info
2 parents dd4100d + f61eaf1 commit 97c7bf3

File tree

3 files changed

+79
-0
lines changed

3 files changed

+79
-0
lines changed

content/shared/v3-core-enterprise-release-notes/_index.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,27 @@
55
> All updates to Core are automatically included in Enterprise.
66
> The Enterprise sections below only list features exclusive to Enterprise.
77
8+
## v3.0.0-0 {date="2025-04-14"}
9+
10+
### Core
11+
12+
#### General Updates
13+
14+
- Performance and reliability improvements.
15+
16+
### Enterprise
17+
18+
#### Token Support
19+
20+
- Authorization is now turned on by default.
21+
- Token support for database level permissions are now available.
22+
- Token support for system level queries are now available.
23+
24+
#### General Updates
25+
26+
- You can now use Commercial, Trial, and At-Home licenses.
27+
28+
829
## v3.0.0-0.beta.3 {date="2025-04-01"}
930
**Core**: revision f881c5844bec93a85242f26357a1ef3ebf419dd3
1031
**Enterprise**: revision 6bef9e700a59c0973b0cefdc6baf11583933e262

content/shared/v3-core-get-started/_index.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,15 @@ Pull the image:
103103
docker pull quay.io/influxdb/influxdb3-core:latest
104104
```
105105

106+
##### InfluxDB 3 Explorer -- Query Interface (Beta)
107+
108+
You can download the new InfluxDB 3 Explorer query interface using Docker.
109+
Explorer is currently in beta. Pull the image:
110+
111+
```bash
112+
docker pull quay.io/influxdb/influxdb3-explorer:latest
113+
```
114+
106115
<!--------------- END DOCKER -------------->
107116
{{% /tab-content %}}
108117
{{% /tabs-wrapper %}}
@@ -680,6 +689,25 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')]))
680689

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

692+
693+
### Query using InfluxDB 3 Explorer (Beta)
694+
You can use the InfluxDB 3 Explorer query interface by downloading the Docker image.
695+
696+
```bash
697+
docker pull quay.io/influxdb/influxdb3-explorer:latest
698+
```
699+
700+
Run the interface using:
701+
702+
```bash
703+
docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest
704+
```
705+
706+
With the default settings above, you can access the UI at http://localhost:8086.
707+
Set your expected database connection details on the Settings page.
708+
From there, you can query data, browser your database schema, and do basic
709+
visualization of your time series data.
710+
683711
### Last values cache
684712

685713
{{% product-name %}} supports a **last-n values cache** which stores the last N values in a series or column hierarchy in memory. This gives the database the ability to answer these kinds of queries in under 10 milliseconds.

content/shared/v3-enterprise-get-started/_index.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,15 @@ Pull the image:
102102
docker pull quay.io/influxdb/influxdb3-enterprise:latest
103103
```
104104

105+
##### InfluxDB 3 Explorer -- Query Interface (beta)
106+
107+
You can download the new InfluxDB 3 Explorer query interface using Docker.
108+
Explorer is currently in beta. Pull the image:
109+
110+
```bash
111+
docker pull quay.io/influxdb/influxdb3-explorer:latest
112+
```
113+
105114
<!--------------- END DOCKER -------------->
106115
{{% /tab-content %}}
107116
{{% /tabs-wrapper %}}
@@ -778,6 +787,27 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')]))
778787

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

790+
791+
### Query using InfluxDB 3 Explorer (Beta)
792+
793+
You can use the InfluxDB 3 Explorer query interface by downloading the Docker image.
794+
795+
```bash
796+
docker pull quay.io/influxdb/influxdb3-explorer:latest
797+
```
798+
799+
Run the interface using:
800+
801+
```bash
802+
docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest
803+
```
804+
805+
With the default settings above, you can access the UI at http://localhost:8086.
806+
Set your expected database connection details on the Settings page.
807+
From there, you can query data, browser your database schema, and do basic
808+
visualization of your time series data.
809+
810+
781811
### Last values cache
782812

783813
{{% product-name %}} supports a **last-n values cache** which stores the last N values in a series or column hierarchy in memory. This gives the database the ability to answer these kinds of queries in under 10 milliseconds.

0 commit comments

Comments
 (0)