From 15c1c77f02c5e4499450752d6dff36793811686e Mon Sep 17 00:00:00 2001 From: Peter Barnett Date: Mon, 14 Apr 2025 23:05:58 -0400 Subject: [PATCH 1/3] chore:influxdb3 explorer install info --- .../_index.md | 15 ++++++++++++ content/shared/v3-core-get-started/_index.md | 24 +++++++++++++++++++ .../v3-enterprise-get-started/_index.md | 24 +++++++++++++++++++ 3 files changed, 63 insertions(+) diff --git a/content/shared/v3-core-enterprise-release-notes/_index.md b/content/shared/v3-core-enterprise-release-notes/_index.md index f5073a3d7..7650aa640 100644 --- a/content/shared/v3-core-enterprise-release-notes/_index.md +++ b/content/shared/v3-core-enterprise-release-notes/_index.md @@ -5,6 +5,21 @@ > All updates to Core are automatically included in Enterprise. > The Enterprise sections below only list features exclusive to Enterprise. +## v3.0.0-0 {date="2025-04-14"} +### Core +#### General Updates +- Performance and reliability improvements. + +### Enterprise +#### Token Support +- Authorization is now turned on by default. +- Token support for database level permissions are now available. +- Token support for system level queries are now available. + +#### General Updates +- You can now use Commercial, Trial, and At-Home licenses. + + ## v3.0.0-0.beta.3 {date="2025-04-01"} **Core**: revision f881c5844bec93a85242f26357a1ef3ebf419dd3 **Enterprise**: revision 6bef9e700a59c0973b0cefdc6baf11583933e262 diff --git a/content/shared/v3-core-get-started/_index.md b/content/shared/v3-core-get-started/_index.md index ac88b1404..25cd02bcf 100644 --- a/content/shared/v3-core-get-started/_index.md +++ b/content/shared/v3-core-get-started/_index.md @@ -102,6 +102,14 @@ Pull the image: docker pull quay.io/influxdb/influxdb3-core:latest ``` +##### InfluxDB 3 Explorer -- Query Interface + +You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image: + +```bash +docker pull quay.io/influxdb/influxdb3-explorer:latest +``` + {{% /tab-content %}} {{% /tabs-wrapper %}} @@ -645,6 +653,22 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')])) For more information about the Python client library, see the [`influxdb3-python` repository](https://github.com/InfluxCommunity/influxdb3-python) in GitHub. + +### Query using InfluxDB 3 Explorer +You can use the InfluxDB 3 Explorer query interface by downloading the Docker image. + +```bash +docker pull quay.io/influxdb/influxdb3-explorer:latest +``` + +Run the interface using: + +```bash +docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest +``` + +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. + ### Last values cache {{% 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. diff --git a/content/shared/v3-enterprise-get-started/_index.md b/content/shared/v3-enterprise-get-started/_index.md index 26a1f3296..9f667657b 100644 --- a/content/shared/v3-enterprise-get-started/_index.md +++ b/content/shared/v3-enterprise-get-started/_index.md @@ -101,6 +101,13 @@ Pull the image: docker pull quay.io/influxdb/influxdb3-enterprise:latest ``` +##### InfluxDB 3 Explorer -- Query Interface + +You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image: +```bash +docker pull quay.io/influxdb/influxdb3-explorer:latest +``` + {{% /tab-content %}} {{% /tabs-wrapper %}} @@ -645,6 +652,23 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')])) For more information about the Python client library, see the [`influxdb3-python` repository](https://github.com/InfluxCommunity/influxdb3-python) in GitHub. + +### Query using InfluxDB 3 Explorer +You can use the InfluxDB 3 Explorer query interface by downloading the Docker image. + +```bash +docker pull quay.io/influxdb/influxdb3-explorer:latest +``` + +Run the interface using: + +```bash +docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest +``` + +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. + + ### Last values cache {{% 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. From bee37a56c2f730b209fc18bda18a8bd45a8c7f93 Mon Sep 17 00:00:00 2001 From: Peter Barnett Date: Tue, 15 Apr 2025 07:27:51 -0400 Subject: [PATCH 2/3] chore: update to beta for explorer --- content/shared/v3-core-get-started/_index.md | 6 +++--- content/shared/v3-enterprise-get-started/_index.md | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/content/shared/v3-core-get-started/_index.md b/content/shared/v3-core-get-started/_index.md index 25cd02bcf..b4fafc9ab 100644 --- a/content/shared/v3-core-get-started/_index.md +++ b/content/shared/v3-core-get-started/_index.md @@ -102,9 +102,9 @@ Pull the image: docker pull quay.io/influxdb/influxdb3-core:latest ``` -##### InfluxDB 3 Explorer -- Query Interface +##### InfluxDB 3 Explorer -- Query Interface (Beta) -You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image: +You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Explorer is currently in beta. Pull the image: ```bash docker pull quay.io/influxdb/influxdb3-explorer:latest @@ -654,7 +654,7 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')])) For more information about the Python client library, see the [`influxdb3-python` repository](https://github.com/InfluxCommunity/influxdb3-python) in GitHub. -### Query using InfluxDB 3 Explorer +### Query using InfluxDB 3 Explorer (Beta) You can use the InfluxDB 3 Explorer query interface by downloading the Docker image. ```bash diff --git a/content/shared/v3-enterprise-get-started/_index.md b/content/shared/v3-enterprise-get-started/_index.md index 9f667657b..2c93c7dbc 100644 --- a/content/shared/v3-enterprise-get-started/_index.md +++ b/content/shared/v3-enterprise-get-started/_index.md @@ -103,7 +103,7 @@ docker pull quay.io/influxdb/influxdb3-enterprise:latest ##### InfluxDB 3 Explorer -- Query Interface -You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Pull the image: +You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Explorer is currently in beta. Pull the image: ```bash docker pull quay.io/influxdb/influxdb3-explorer:latest ``` @@ -653,7 +653,7 @@ print(table.group_by('cpu').aggregate([('time_system', 'mean')])) For more information about the Python client library, see the [`influxdb3-python` repository](https://github.com/InfluxCommunity/influxdb3-python) in GitHub. -### Query using InfluxDB 3 Explorer +### Query using InfluxDB 3 Explorer (Beta) You can use the InfluxDB 3 Explorer query interface by downloading the Docker image. ```bash From 95eb62e234c23c411502236414986b16ade89149 Mon Sep 17 00:00:00 2001 From: Scott Anderson Date: Tue, 15 Apr 2025 07:16:29 -0600 Subject: [PATCH 3/3] Apply suggestions from code review --- .../v3-core-enterprise-release-notes/_index.md | 6 ++++++ content/shared/v3-core-get-started/_index.md | 8 ++++++-- content/shared/v3-enterprise-get-started/_index.md | 12 +++++++++--- 3 files changed, 21 insertions(+), 5 deletions(-) diff --git a/content/shared/v3-core-enterprise-release-notes/_index.md b/content/shared/v3-core-enterprise-release-notes/_index.md index 7650aa640..f30bf1b48 100644 --- a/content/shared/v3-core-enterprise-release-notes/_index.md +++ b/content/shared/v3-core-enterprise-release-notes/_index.md @@ -6,17 +6,23 @@ > The Enterprise sections below only list features exclusive to Enterprise. ## v3.0.0-0 {date="2025-04-14"} + ### Core + #### General Updates + - Performance and reliability improvements. ### Enterprise + #### Token Support + - Authorization is now turned on by default. - Token support for database level permissions are now available. - Token support for system level queries are now available. #### General Updates + - You can now use Commercial, Trial, and At-Home licenses. diff --git a/content/shared/v3-core-get-started/_index.md b/content/shared/v3-core-get-started/_index.md index b4fafc9ab..f0c20cec7 100644 --- a/content/shared/v3-core-get-started/_index.md +++ b/content/shared/v3-core-get-started/_index.md @@ -104,7 +104,8 @@ docker pull quay.io/influxdb/influxdb3-core:latest ##### InfluxDB 3 Explorer -- Query Interface (Beta) -You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Explorer is currently in beta. Pull the image: +You can download the new InfluxDB 3 Explorer query interface using Docker. +Explorer is currently in beta. Pull the image: ```bash docker pull quay.io/influxdb/influxdb3-explorer:latest @@ -667,7 +668,10 @@ Run the interface using: docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest ``` -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. +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 data, browser your database schema, and do basic +visualization of your time series data. ### Last values cache diff --git a/content/shared/v3-enterprise-get-started/_index.md b/content/shared/v3-enterprise-get-started/_index.md index 2c93c7dbc..68f0f8375 100644 --- a/content/shared/v3-enterprise-get-started/_index.md +++ b/content/shared/v3-enterprise-get-started/_index.md @@ -101,9 +101,11 @@ Pull the image: docker pull quay.io/influxdb/influxdb3-enterprise:latest ``` -##### InfluxDB 3 Explorer -- Query Interface +##### InfluxDB 3 Explorer -- Query Interface (beta) + +You can download the new InfluxDB 3 Explorer query interface using Docker. +Explorer is currently in beta. Pull the image: -You can additionally download the new InfluxDB 3 Explorer query interface using Docker. Explorer is currently in beta. Pull the image: ```bash docker pull quay.io/influxdb/influxdb3-explorer:latest ``` @@ -654,6 +656,7 @@ For more information about the Python client library, see the [`influxdb3-python ### Query using InfluxDB 3 Explorer (Beta) + You can use the InfluxDB 3 Explorer query interface by downloading the Docker image. ```bash @@ -666,7 +669,10 @@ Run the interface using: docker run --name influxdb3-explorer -p 8086:8888 quay.io/influxdb/influxdb3-explorer:latest ``` -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. +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 data, browser your database schema, and do basic +visualization of your time series data. ### Last values cache