Skip to content

Commit 8eb1b35

Browse files
authored
Merge branch 'master' into fix-cleanup-bad-anchor-links
2 parents 2169935 + d126c56 commit 8eb1b35

File tree

41 files changed

+575
-432
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+575
-432
lines changed

content/influxdb/cloud/query-data/execute-queries/query-demo-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ types of demo data that let you explore and familiarize yourself with InfluxDB C
2525
{{% note %}}
2626
#### Free to use and read-only
2727
- InfluxDB Cloud demo data buckets are **free to use** and are **_not_ subject to
28-
[Free Plan rate limits](influxdb/cloud/account-management/limits/#free-plan-rate-limits) rate limits**.
28+
[Free Plan rate limits](/influxdb/cloud/account-management/limits/#free-plan-rate-limits) rate limits**.
2929
- Demo data buckets are **read-only**. You cannot write data into demo data buckets.
3030
{{% /note %}}
3131

content/influxdb3/core/admin/distinct-value-cache/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,5 @@ source: /shared/influxdb3-admin/distinct-value-cache/_index.md
1616
---
1717

1818
<!-- The content for this page is located at
19-
// SOURCE content/shared/influxdb3-admin/distinct-value-cache/_index.md -->
19+
// SOURCE content/shared/influxdb3-admin/distinct-value-cache/_index.md
20+
-->

content/influxdb3/core/admin/last-value-cache/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ source: /shared/influxdb3-admin/last-value-cache/_index.md
1717
---
1818

1919
<!-- The content for this page is located at
20-
// SOURCE content/shared/influxdb3-admin/last-value-cache/_index.md -->
20+
// SOURCE content/shared/influxdb3-admin/last-value-cache/_index.md
21+
-->
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage tokens
33
description: >
4-
Manage tokens to authenticate and authorize access to resources and data in an {{< product-name >}} instance.
4+
Manage tokens to authenticate and authorize access to server actions, resources, and data in an {{< product-name >}} instance.
55
menu:
66
influxdb3_core:
77
parent: Administer InfluxDB
@@ -11,4 +11,4 @@ source: /shared/influxdb3-admin/tokens/_index.md
1111

1212
<!-- The content for this page is at
1313
// SOURCE content/shared/influxdb3-admin/tokens/_index.md
14-
-->>
14+
-->

content/influxdb3/core/admin/tokens/admin/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ menu:
1111
name: Admin tokens
1212
weight: 101
1313
influxdb3/core/tags: [tokens]
14-
source: /shared/influxdb3-admin/tokens/_index.md
14+
source: /shared/influxdb3-admin/tokens/admin/_index.md
1515
---
1616

1717
<!-- The content for this page is at
18-
// SOURCE content/shared/influxdb3-admin/tokens/_index.md
18+
// SOURCE content/shared/influxdb3-admin/tokens/admin/_index.md
1919
-->

content/influxdb3/core/admin/tokens/admin/create.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Create an admin token
33
description: >
44
Use the [`influxdb3 create token --admin` command](/influxdb3/core/reference/cli/influxdb3/create/token/)
5-
or the [HTTP API](/influxdb3/core/api/v3/)
5+
or the HTTP API [`/api/v3/configure/token/admin`](/influxdb3/core/api/v3/#operation/PostCreateAdminToken) endpoint
66
to create an [admin token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
77
An admin token grants access to all actions on the server.
88
menu:

content/influxdb3/core/admin/tokens/admin/regenerate.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
title: Regenerate an admin token
33
description: >
44
Use the [`influxdb3 create token --admin` command](/influxdb3/core/reference/cli/influxdb3/create/token/)
5-
or the [HTTP API](/influxdb3/core/api/v3/)
6-
to regenerate an [admin token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
7-
An admin token grants access to all actions on the server.
8-
Regenerating an admin token deactivates the previous token.
5+
or the HTTP API [`/api/v3/configure/token/admin/regenerate`](/influxdb3/core/api/v3/#operation/PostRegenerateAdminToken) endpoint
6+
to regenerate an [operator token](/influxdb3/core/admin/tokens/admin/) for your {{< product-name omit="Clustered" >}} instance.
7+
Regenerating an operator token deactivates the previous token.
98
menu:
109
influxdb3_core:
1110
parent: Admin tokens
@@ -14,8 +13,15 @@ list_code_example: |
1413
##### CLI
1514
```bash
1615
influxdb3 create token --admin \
17-
--token ADMIN_TOKEN \
1816
--regenerate
17+
OPERATOR_TOKEN
18+
```
19+
#### HTTP API
20+
```bash
21+
curl -X POST "http://{{< influxdb/host >}}/api/v3/configure/token/admin/regenerate" \
22+
--header 'Authorization Bearer OPERATOR_TOKEN' \
23+
--header 'Accept: application/json'
24+
--header 'Content-Type: application/json'
1925
```
2026
source: /shared/influxdb3-admin/tokens/admin/regenerate.md
2127
---

content/influxdb3/core/install.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ alt_links:
1212

1313
- [System Requirements](#system-requirements)
1414
- [Quick install](#quick-install)
15-
- [Download {{< product-name >}} binaries](#download-influxdb-3-{{< product-key >}}-binaries)
15+
- [Download {{% product-name %}} binaries](#download-influxdb-3-{{< product-key >}}-binaries)
1616
- [Docker image](#docker-image)
1717

1818
## System Requirements
@@ -79,7 +79,7 @@ source ~/.zshrc
7979
{{% /code-tab-content %}}
8080
{{< /code-tabs-wrapper >}}
8181
82-
## Download {{< product-name >}} binaries
82+
## Download {{% product-name %}} binaries
8383
8484
{{< tabs-wrapper >}}
8585
{{% tabs %}}

content/influxdb3/core/reference/cli/influxdb3/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ influxdb3 -h
103103
influxdb3 --help
104104
```
105105

106-
### Run the {{< product-name >}} server with extra verbose logging
106+
### Run the {{% product-name %}} server with extra verbose logging
107107

108108
<!--pytest.mark.skip-->
109109

@@ -114,7 +114,7 @@ influxdb3 serve -v \
114114
--node-id my-host-01
115115
```
116116

117-
### Run {{< product-name >}} with debug logging using LOG_FILTER
117+
### Run {{% product-name %}} with debug logging using LOG_FILTER
118118

119119
<!--pytest.mark.skip-->
120120

content/influxdb3/core/reference/cli/influxdb3/create/token.md renamed to content/influxdb3/core/reference/cli/influxdb3/create/token/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ description: >
55
menu:
66
influxdb3_core:
77
parent: influxdb3 create
8-
name: influxdb3 create token
8+
name: influxdb3 create token
99
weight: 400
10-
source: /shared/influxdb3-cli/create/token.md
10+
source: /shared/influxdb3-cli/create/token/_index.md
1111
---
1212

1313
<!-- The content for this page is at
14-
// SOURCE content/shared/influxdb3-cli/create/token.md
14+
// SOURCE content/shared/influxdb3-cli/create/token/_index.md
1515
-->

0 commit comments

Comments
 (0)