Skip to content

Commit 15c1c77

Browse files
chore:influxdb3 explorer install info
1 parent f100650 commit 15c1c77

File tree

3 files changed

+63
-0
lines changed

3 files changed

+63
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@
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+
### Core
10+
#### General Updates
11+
- Performance and reliability improvements.
12+
13+
### Enterprise
14+
#### Token Support
15+
- Authorization is now turned on by default.
16+
- Token support for database level permissions are now available.
17+
- Token support for system level queries are now available.
18+
19+
#### General Updates
20+
- You can now use Commercial, Trial, and At-Home licenses.
21+
22+
823
## v3.0.0-0.beta.3 {date="2025-04-01"}
924
**Core**: revision f881c5844bec93a85242f26357a1ef3ebf419dd3
1025
**Enterprise**: revision 6bef9e700a59c0973b0cefdc6baf11583933e262

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

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

105+
##### InfluxDB 3 Explorer -- Query Interface
106+
107+
You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image:
108+
109+
```bash
110+
docker pull quay.io/influxdb/influxdb3-explorer:latest
111+
```
112+
105113
<!--------------- END DOCKER -------------->
106114
{{% /tab-content %}}
107115
{{% /tabs-wrapper %}}
@@ -645,6 +653,22 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')]))
645653

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

656+
657+
### Query using InfluxDB 3 Explorer
658+
You can use the InfluxDB 3 Explorer query interface by downloading the Docker image.
659+
660+
```bash
661+
docker pull quay.io/influxdb/influxdb3-explorer:latest
662+
```
663+
664+
Run the interface using:
665+
666+
```bash
667+
docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest
668+
```
669+
670+
With the default settings above, you can access the UI at http://localhost:8086. Set your expected database connection details on the Settings page. From there, you can query UI, browser your database schema, and do basic visualization of your time series data.
671+
648672
### Last values cache
649673

650674
{{% 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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ Pull the image:
101101
docker pull quay.io/influxdb/influxdb3-enterprise:latest
102102
```
103103

104+
##### InfluxDB 3 Explorer -- Query Interface
105+
106+
You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image:
107+
```bash
108+
docker pull quay.io/influxdb/influxdb3-explorer:latest
109+
```
110+
104111
<!--------------- END DOCKER -------------->
105112
{{% /tab-content %}}
106113
{{% /tabs-wrapper %}}
@@ -645,6 +652,23 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')]))
645652

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

655+
656+
### Query using InfluxDB 3 Explorer
657+
You can use the InfluxDB 3 Explorer query interface by downloading the Docker image.
658+
659+
```bash
660+
docker pull quay.io/influxdb/influxdb3-explorer:latest
661+
```
662+
663+
Run the interface using:
664+
665+
```bash
666+
docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest
667+
```
668+
669+
With the default settings above, you can access the UI at http://localhost:8086. Set your expected database connection details on the Settings page. From there, you can query UI, browser your database schema, and do basic visualization of your time series data.
670+
671+
648672
### Last values cache
649673

650674
{{% 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)