Merge branch 'master' into DAR-450-add-user-groups-for-dedicated

staging/commandbar-clustered-install^2
Jason Stirnaman 2024-10-16 17:44:50 -05:00 committed by GitHub
commit fed3277d21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 156 additions and 45 deletions

View File

@ -5,3 +5,9 @@ level: error
nonword: true
tokens:
- \d+(?:st|nd|rd|th)
- tenth
exceptions:
- 0th
- 50th
- 90th

View File

@ -12,7 +12,7 @@ Monitoring is the act of observing changes in data over time.
There are multiple ways to monitor your InfluxDB Enterprise cluster.
See the guides below to monitor a cluster using another InfluxDB instance.
Alternatively, to view your output data occasionally (_e.g._, for auditing or diagnostics),
Alternatively, to view your output data occasionally (for example, for auditing or diagnostics),
do one of the following:
- [Log and trace InfluxDB Enterprise operations](/enterprise_influxdb/v1/administration/monitor/logs/)
@ -22,7 +22,7 @@ do one of the following:
### Monitor with InfluxDB Insights
For InfluxDB Enterprise customers, Insights is a free service that monitors your cluster and sends metrics to a private Cloud account. This allows InfluxDB Support to monitor your cluster health and access usage statistics when assisting with support tickets that you raise.
To apply for this service, please contact the [support team](https://support.influxdata.com/s/login/).
To apply for this service, please [contact InfluxData support](https://support.influxdata.com).
{{% /note %}}
{{< children >}}

View File

@ -182,4 +182,4 @@ Send a notification to PagerDuty or HTTP endpoints (other webhooks) by [upgradin
For InfluxDB Enterprise customers, Insights is a free service that monitors your cluster and sends metrics to a private Cloud account. This allows InfluxDB Support to monitor your cluster health and access usage statistics when assisting with support tickets that you raise.
To apply for this service, please contact the [InfluxData Support team](mailto:support@influxdata.com).
To apply for this service, please [contact InfluxData support](https://support.influxdata.com).

View File

@ -10,9 +10,9 @@ menu:
weight: 104
---
InfluxData provides a Grafana operational dashboard that provide observability
into the your {{< product-name >}} cluster. Use the operational dashboard to
monitor your cluster.
InfluxData provides a Grafana operational dashboard that provides observability
into your {{< product-name >}} cluster.
Use the operational dashboard to monitor your cluster.
{{% note %}}
#### Not available for all clusters
@ -40,7 +40,7 @@ If you do not have login credentials, [contact InfluxData support](https://suppo
## Dashboard sections and cells
The dashboard is divided into the following sections that visualize metrics
The dashboard contains the following sections that visualize metrics
related to the health of components in your {{< product-name >}} cluster:
- [Query Tier Cpu/Mem](#query-tier-cpumem)
@ -156,7 +156,7 @@ to the [Object store](/influxdb/cloud-dedicated/reference/internals/storage-engi
#### CPU Utilization Ingesters (k8s)
CPU Utilization of Ingester pods as reported by the Kubernetes container usage.
CPU utilization of Ingester pods as reported by the Kubernetes container usage.
Usage is reported by the number of CPU cores used by pods, including
fractional cores.
The CPU limit is represented by the top line in the visualization.
@ -284,7 +284,7 @@ _These do not represent the most recent logs._
The **Compaction Tier Cpu/Mem** section displays the CPU and memory usage of
Compactor pods as reported by Kubernetes.
[Compactors](/influxdb/cloud-dedicated/reference/internals/storage-engine/#compactor)
process and compress parquet files in the
process and compress Parquet files in the
[Object store](/influxdb/cloud-dedicated/reference/internals/storage-engine/#object-store)
to continually optimize storage.
@ -330,10 +330,10 @@ following levels:
Parquet files store data partitioned by time and optionally tags
_(see [Manage data partition](https://docs.influxdata.com/influxdb/cloud-dedicated/admin/custom-partitions/))_.
After four L0 files accumulate for a partition, they are are eligible for compaction.
After four L0 files accumulate for a partition, they're eligible for compaction.
If the compactor is keeping up with the incoming write load, all compaction
events will have exactly four files. If the number of L0 files compacted begins to
to increase, it indicates the compactor is not keeping up.
events have exactly four files.
An increase in the number of L0 files compacted indicates the compactor isn't keeping up.
This histogram helps to determine if the Compactor is starting compactions as
soon as it can.
@ -367,7 +367,7 @@ that the Catalog may be overloaded or unresponsive.
#### Catalog Op Latency (P90)
The 90th percentile (P90) of query latency against the catalog service per operation.
The 90th percentile (P90) query latency for each operation against the catalog service.
A high P90 value indicates that the Catalog may be overloaded.
---

View File

@ -14,6 +14,7 @@ weight: 101
metadata: [1 / 3]
related:
- /influxdb/cloud-dedicated/admin/databases/
- /influxdb/cloud-dedicated/admin/tokens/
- /influxdb/cloud-dedicated/reference/cli/influxctl/
- /influxdb/cloud-dedicated/reference/api/
---

View File

@ -17,7 +17,7 @@ administrative tasks in an {{< product-name omit=" Clustered" >}} cluster.
- [Usage](#usage)
- [Commands](#commands)
- [Flags](#command-flags)
- [Global flags](#global-flags)
- [Download and install influxctl](#download-and-install-influxctl)
- [Configure connection profiles](#configure-connection-profiles)
- [Authentication](#authentication)
@ -25,14 +25,14 @@ administrative tasks in an {{< product-name omit=" Clustered" >}} cluster.
## Usage
```sh
influxctl [flags] [command]
influxctl [global-flags] [command]
```
## Commands
| Command | Description |
| :-------------------------------------------------------------------------- | :------------------------------------- |
| [auth](/influxdb/cloud-dedicated/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
| [auth](/influxdb/cloud-dedicated/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
| [cluster](/influxdb/cloud-dedicated/reference/cli/influxctl/cluster/) | List InfluxDB v3 cluster information |
| [database](/influxdb/cloud-dedicated/reference/cli/influxctl/database/) | Manage InfluxDB v3 databases |
| [help](/influxdb/cloud-dedicated/reference/cli/influxctl/help/) | Output `influxctl` help information |
@ -45,15 +45,16 @@ influxctl [flags] [command]
## Global flags
| Flag | | Description |
| :--- | :---------- | :--------------------------------------------------------- |
| | `--debug` | Enable debug logging |
| | `--account` | Override account ID value in configuration file |
| | `--cluster` | Override cluster ID value in configuration file |
| | `--config` | Path to configuration file to use |
| | `--profile` | Specify a connection profile to use (default is `default`) |
| | `--trace` | Enable more verbose debug logging |
| `-h` | `--help` | Show help |
| Flag | | Description |
| :--- | :---------- | :----------------------------------------------------------- |
| | `--debug` | Enable debug logging |
| | `--account` | Override account ID value in configuration file |
| | `--cluster` | Override cluster ID value in configuration file |
| | `--config` | Path to configuration file to use |
| | `--profile` | Specify a connection profile to use (default is `default`) |
| | `--timeout` | Specify a timeout duration for API calls (default is `1m0s`) |
| | `--trace` | Enable more verbose debug logging |
| `-h` | `--help` | Show help |
---
@ -344,7 +345,6 @@ If stored at a non-default location, include the `--config` flag with each
## OAuth2 client authorization settings
# [profile.auth.oauth2]
# client_id = ""
# client_secret = ""
# scopes = [""]
# parameters = { audience = "" }
# token_url = "https://indentityprovider/oauth2/v2/token"

View File

@ -11,12 +11,54 @@ menu:
weight: 202
---
## v2.9.8 {date="2024-10-15"}
### Bug Fixes
- Continue revoking tokens on error.
- Reject unsupported input to `--template-timeformat`.
- Remove unused `client_secret` option from
[connection configuration profiles](/influxdb/cloud-dedicated/reference/cli/influxctl/#configure-connection-profiles).
### Dependency Updates
- Update Go to v1.23.2.
- Update `github.com/jedib0t/go-pretty/v6` from 6.5.9 to 6.6.0.
- Update `github.com/urfave/cli/v2` from 2.27.4 to 2.27.5.
- Update `google.golang.org/grpc` from 1.66.0 to 1.67.1.
- Update `google.golang.org/protobuf` from 1.34.2 to 1.35.1.
---
## v2.9.7 {date="2024-09-11"}
### Features
- Add [global `--timeout` flag](/influxdb/cloud-dedicated/reference/cli/influxctl/#global-flags).
- Improve timezone support.
### Bug Fixes
- Use passthrough resolver for gRPC.
### Dependency Updates
- Update Go to 1.23.1.
- Update `github.com/pelletier/go-toml/v2` from 2.2.2 to 2.2.3.
- Update `golang.org/x/mod` from 0.20.0 to 0.21.0.
- Update `golang.org/x/oauth2` from 0.22.0 to 0.23.0.
- Update `google.golang.org/grpc` from 1.65.0 to 1.66.0.
---
## v2.9.6 {date="2024-08-15"}
### Bug Fixes
- Update query to wait for EOF on stdin instead of the first newline.
---
## v2.9.5 {date="2024-08-13"}
### Bug Fixes
@ -29,6 +71,8 @@ weight: 202
- Update `golang.org/x/mod` from 0.19.0 to 0.20.0
- Update `golang.org/x/oauth2` from 0.21.0 to 0.22.0
---
## v2.9.4 {date="2024-07-25"}
### Bug Fixes
@ -40,12 +84,16 @@ weight: 202
- Update `golang.org/x/mod` from 0.18.0 to 0.19.0
- Update `google.golang.org/grpc` from 1.64.0 to 1.65.0
---
## v2.9.3 {date="2024-06-26"}
### Bug Fixes
- Update query subcommand to safely handle null timestamp in response.
---
## v2.9.2 {date="2024-06-17"}
### Bug Fixes
@ -56,6 +104,8 @@ weight: 202
- Update `google.golang.org/protobuf` from 1.34.1 to 1.34.2.
---
## v2.9.1 {date="2024-06-06"}
### Dependency Updates
@ -69,6 +119,8 @@ weight: 202
- Update `google.golang.org/protobuf` from 1.34.0 to 1.34.1
- Update build dependencies.
---
## v2.9.0 {date="2024-05-06"}
### Features
@ -80,7 +132,7 @@ weight: 202
- Update unimplemented error message with additional information.
### Dependecy Updates
### Dependency Updates
- Update `github.com/apache/arrow/go/v16` from 16.0.0-20240401180149-68241d8a86e9 to 16.0.0.
- Update `github.com/jedib0t/go-pretty/v6` from 6.5.8 to 6.5.9.
@ -188,7 +240,7 @@ associated with another InfluxDB cluster.
### Bug Fixes
- Update arrow to allow non-TLS connections.
- Update Arrow to allow non-TLS connections.
- Do not attempt to load cached tokens when an admin token file is provided.
- Print retention period up to days rather than very large hours.
- Fix indentation of help output.

View File

@ -17,7 +17,7 @@ administrative tasks in an {{< product-name omit=" Clustered" >}} cluster.
- [Usage](#usage)
- [Commands](#commands)
- [Flags](#command-flags)
- [Global flags](#global-flags)
- [Download and install influxctl](#download-and-install-influxctl)
- [Configure connection profiles](#configure-connection-profiles)
- [Authentication](#authentication)
@ -25,14 +25,14 @@ administrative tasks in an {{< product-name omit=" Clustered" >}} cluster.
## Usage
```sh
influxctl [flags] [command]
influxctl [global-flags] [command]
```
## Commands
| Command | Description |
| :-------------------------------------------------------------------- | :------------------------------------- |
| [auth](/influxdb/clustered/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
| [auth](/influxdb/clustered/reference/cli/influxctl/auth/) | Log in to or log out of InfluxDB v3 |
| [cluster](/influxdb/clustered/reference/cli/influxctl/cluster/) | List InfluxDB v3 cluster information |
| [database](/influxdb/clustered/reference/cli/influxctl/database/) | Manage InfluxDB v3 databases |
| [help](/influxdb/clustered/reference/cli/influxctl/help/) | Output `influxctl` help information |
@ -45,15 +45,16 @@ influxctl [flags] [command]
## Global flags
| Flag | | Description |
| :--- | :---------- | :--------------------------------------------------------- |
| | `--debug` | Enable debug logging |
| | `--account` | Override account ID value in configuration file |
| | `--cluster` | Override cluster ID value in configuration file |
| | `--config` | Path to configuration file to use |
| | `--profile` | Specify a connection profile to use (default is `default`) |
| | `--trace` | Enable more verbose debug logging |
| `-h` | `--help` | Show help |
| Flag | | Description |
| :--- | :---------- | :----------------------------------------------------------- |
| | `--debug` | Enable debug logging |
| | `--account` | Override account ID value in configuration file |
| | `--cluster` | Override cluster ID value in configuration file |
| | `--config` | Path to configuration file to use |
| | `--profile` | Specify a connection profile to use (default is `default`) |
| | `--timeout` | Specify a timeout duration for API calls (default is `1m0s`) |
| | `--trace` | Enable more verbose debug logging |
| `-h` | `--help` | Show help |
---
@ -354,7 +355,6 @@ If stored at a non-default location, include the `--config` flag with each
## OAuth2 client authorization settings
[profile.auth.oauth2]
client_id = "OAUTH_CLIENT_ID"
client_secret = ""
scopes = [""]
parameters = { audience = "" }
token_url = "OAUTH_TOKEN_URL"

View File

@ -12,11 +12,53 @@ weight: 202
canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
---
## v2.9.8 {date="2024-10-15"}
### Bug Fixes
- Continue revoking tokens on error.
- Reject unsupported input to `--template-timeformat`.
- Remove unused `client_secret` option from
[connection configuration profiles](/influxdb/clustered/reference/cli/influxctl/#configure-connection-profiles).
### Dependency Updates
- Update Go to v1.23.2.
- Update `github.com/jedib0t/go-pretty/v6` from 6.5.9 to 6.6.0.
- Update `github.com/urfave/cli/v2` from 2.27.4 to 2.27.5.
- Update `google.golang.org/grpc` from 1.66.0 to 1.67.1.
- Update `google.golang.org/protobuf` from 1.34.2 to 1.35.1.
---
## v2.9.7 {date="2024-09-11"}
### Features
- Add [global `--timeout` flag](/influxdb/clustered/reference/cli/influxctl/#global-flags).
- Improve timezone support.
### Bug Fixes
- Use passthrough resolver for gRPC.
### Dependency Updates
- Update Go to 1.23.1.
- Update `github.com/pelletier/go-toml/v2` from 2.2.2 to 2.2.3.
- Update `golang.org/x/mod` from 0.20.0 to 0.21.0.
- Update `golang.org/x/oauth2` from 0.22.0 to 0.23.0.
- Update `google.golang.org/grpc` from 1.65.0 to 1.66.0.
---
## v2.9.6 {date="2024-08-15"}
### Bug Fixes
- Update query subcommand to wait for EOF on stdin instead of the first newline.
- Update query to wait for EOF on stdin instead of the first newline.
---
## v2.9.5 {date="2024-08-13"}
@ -31,6 +73,8 @@ canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
- Update `golang.org/x/mod` from 0.19.0 to 0.20.0
- Update `golang.org/x/oauth2` from 0.21.0 to 0.22.0
---
## v2.9.4 {date="2024-07-25"}
### Bug Fixes
@ -42,12 +86,16 @@ canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
- Update `golang.org/x/mod` from 0.18.0 to 0.19.0
- Update `google.golang.org/grpc` from 1.64.0 to 1.65.0
---
## v2.9.3 {date="2024-06-26"}
### Bug Fixes
- Update query subcommand to safely handle null timestamp in response.
---
## v2.9.2 {date="2024-06-17"}
### Bug Fixes
@ -58,6 +106,8 @@ canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
- Update `google.golang.org/protobuf` from 1.34.1 to 1.34.2.
---
## v2.9.1 {date="2024-06-06"}
### Dependency Updates
@ -71,6 +121,8 @@ canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
- Update `google.golang.org/protobuf` from 1.34.0 to 1.34.1
- Update build dependencies.
---
## v2.9.0 {date="2024-05-06"}
### Features
@ -82,7 +134,7 @@ canonical: /influxdb/cloud-dedicated/reference/release-notes/influxctl/
- Update unimplemented error message with additional information.
### Dependecy Updates
### Dependency Updates
- Update `github.com/apache/arrow/go/v16` from 16.0.0-20240401180149-68241d8a86e9 to 16.0.0.
- Update `github.com/jedib0t/go-pretty/v6` from 6.5.8 to 6.5.9.
@ -197,7 +249,7 @@ associated with another InfluxDB cluster.
### Bug Fixes
- Update arrow to allow non-TLS connections.
- Update Arrow to allow non-TLS connections.
- Do not attempt to load cached tokens when an admin token file is provided.
- Print retention period up to days rather than very large hours.
- Fix indentation of help output.

View File

@ -55,7 +55,7 @@ influxdb_cloud_dedicated:
list_order: 3
latest: cloud-dedicated
link: "https://www.influxdata.com/contact-sales-form/"
latest_cli: 2.9.7
latest_cli: 2.9.8
placeholder_host: cluster-id.a.influxdb.io
influxdb_clustered: