Skip to content

Commit 24bdf29

Browse files
authored
Merge pull request #6028 from influxdata/6023-admin-ui-docs-for-cloud-dedicated
6023 admin UI docs for cloud dedicated
2 parents 74ecd94 + 5675cfa commit 24bdf29

40 files changed

+709
-150
lines changed

.github/copilot-instructions.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,11 +103,13 @@ GitHub Copilot should help document InfluxData products by creating clear, accur
103103
product_version:
104104
weight: # Page order (1-99, 101-199, etc.)
105105
```
106-
- Follow the shortcode documentation in `CONTRIBUTING.md`
106+
- Follow the shortcode examples in `content/example.md` and the documentation
107+
for docs-v2 contributors in `CONTRIBUTING.md`
107108
- Use provided shortcodes correctly:
108109
- Notes/warnings: `{{% note %}}`, `{{% warn %}}`
109110
- Product-specific: `{{% enterprise %}}`, `{{% cloud %}}`
110111
- Tabbed content: `{{< tabs-wrapper >}}`, `{{% tabs %}}`, `{{% tab-content %}}`
112+
- Tabbed content for code examples (without additional text): `{{< code-tabs-wrapper >}}`, `{{% code-tabs %}}`, `{{% code-tab-content %}}`
111113
- Version links: `{{< latest >}}`, `{{< latest-patch >}}`
112114
- API endpoints: `{{< api-endpoint >}}`
113115
- Required elements: `{{< req >}}`
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
title: View account information
3+
seotitle: View {{% product-name %}} account information
4+
description: >
5+
Use the Admin UI for {{% product-name %}} to view information for your {{% product-name omit="InfluxDB " %}} account.
6+
Your {{% product-name %}} account is a collection of {{% product-name omit="Clustered "%}} clusters and associated resources.
7+
menu:
8+
influxdb3_cloud_dedicated:
9+
parent: Administer InfluxDB Cloud
10+
weight: 99
11+
influxdb3/cloud-dedicated/tags: [clusters]
12+
---
13+
14+
Use the Admin UI for {{% product-name %}} to view information for your {{% product-name omit="InfluxDB " %}} account.
15+
Your {{% product-name %}} account is a collection of {{% product-name omit="Clustered "%}} clusters and associated resources.
16+
17+
- [Access the Admin UI](#access-the-admin-ui)
18+
- [View account information](#view-account-information)
19+
- [View cluster information](#view-cluster-information)
20+
- [Access operational dashboards](#access-operational-dashboards)
21+
- [Administer management tokens](#administer-management-tokens)
22+
23+
## Access the Admin UI
24+
25+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
26+
27+
<pre>
28+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
29+
</pre>
30+
31+
2. Use the credentials provided by InfluxData to log into the Admin UI.
32+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
33+
34+
## View account information
35+
36+
After you log in to the Admin UI, the Account Management portal displays the following information about your account:
37+
38+
- Account ID
39+
- Contract status
40+
- Contract start date
41+
- The [list of clusters](/influxdb3/cloud-dedicated/admin/clusters/list/?t=admin-ui) associated with the account
42+
43+
{{< img-hd src="/img/influxdb3/cloud-dedicated-admin-ui-account-info.png" alt="InfluxDB Cloud Dedicated Admin UI account information" />}}

content/influxdb3/cloud-dedicated/admin/clusters/get.md

Lines changed: 52 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Get cluster information
33
description: >
4-
Use the
4+
Use the Admin UI or the
55
[`influxctl cluster get <CLUSTER_ID>` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/cluster/get/) to view information about your InfluxDB Cloud Dedicated cluster.
66
menu:
77
influxdb3_cloud_dedicated:
@@ -13,8 +13,55 @@ list_code_example: |
1313
```
1414
---
1515

16-
Use the [`influxctl cluster get` CLI command](/influxdb3/cloud-dedicated/reference/cli/influxctl/get/)
17-
to view information about your {{< product-name omit=" Clustered" >}} cluster.
16+
Use the Admin UI or the [`influxctl cluster get` CLI command](/influxdb3/cloud-dedicated/reference/cli/influxctl/get/) to view information about your
17+
{{< product-name omit=" Clustered" >}} cluster, including:
18+
19+
- Cluster ID
20+
- Cluster name
21+
- Cluster URL
22+
- Cluster status
23+
- Cluster size (standard or custom)
24+
25+
{{< tabs-wrapper >}}
26+
{{% tabs %}}
27+
[Admin UI](#)
28+
[influxctl](#)
29+
{{% /tabs %}}
30+
{{% tab-content %}}
31+
## Access the Cloud Dedicated Admin UI
32+
33+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
34+
35+
<pre>
36+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
37+
</pre>
38+
39+
2. Use the credentials provided by InfluxData to log into the Admin UI.
40+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
41+
42+
After you log in, the Account Management portal displays [account information](/influxdb3/cloud-dedicated/admin/account/)
43+
and lists all clusters associated with your account.
44+
3. **Search** for the cluster or use the sort button and column headers to sort the cluster list and find the cluster.
45+
46+
### View cluster details
47+
48+
The cluster list displays the following cluster details:
49+
50+
- Cluster ID and name
51+
- Status (ready, provisioning, etc.)
52+
- Size (standard or custom)
53+
- URL endpoint
54+
55+
### Cluster management tools
56+
57+
The options button (3 vertical dots) to the right of any cluster provides additional tools for cluster management:
58+
59+
- Copy Cluster ID
60+
- Copy Cluster URL
61+
- Observe in Grafana _(only if your cluster has enabled operational dashboards. For more information, see how to [monitor your cluster](/influxdb3/cloud-dedicated/admin/monitor-your-cluster/).)_
62+
63+
{{% /tab-content %}}
64+
{{% tab-content %}}
1865

1966
1. If you haven't already, [download and install the `influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/#download-and-install-influxctl), and then [configure a connection profile](/influxdb3/cloud-dedicated/reference/cli/influxctl/#configure-connection-profiles) for your cluster.
2067
2. Run `influxctl cluster get` with the following:
@@ -74,3 +121,5 @@ The output is the cluster as a JSON object that includes additional fields such
74121
"category": 1
75122
}
76123
```
124+
{{% /tab-content %}}
125+
{{< /tabs-wrapper >}}

content/influxdb3/cloud-dedicated/admin/clusters/list.md

Lines changed: 41 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: List clusters
33
description: >
4-
Use the [`influxctl cluster list` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/cluster/list/)
4+
Use the Admin UI or the [`influxctl cluster list` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/cluster/list/)
55
to view information about InfluxDB Cloud Dedicated clusters associated with your account ID.
66
menu:
77
influxdb3_cloud_dedicated:
@@ -15,10 +15,45 @@ aliases:
1515
- /influxdb3/cloud-dedicated/admin/clusters/list/
1616
---
1717

18-
Use the [`influxctl cluster list` CLI command](/influxdb3/cloud-dedicated/reference/cli/influxctl/list/)
19-
view information about all {{< product-name omit=" Clustered" >}} clusters associated with your account ID.
18+
Use the Admin UI or the [`influxctl cluster list` CLI command](/influxdb3/cloud-dedicated/reference/cli/influxctl/list/)
19+
to view information about all {{< product-name omit=" Clustered" >}} clusters associated with your account ID.
20+
21+
{{< tabs-wrapper >}}
22+
{{% tabs %}}
23+
[Admin UI](#)
24+
[influxctl](#)
25+
{{% /tabs %}}
26+
{{% tab-content %}}
27+
## Access the Cloud Dedicated Admin UI
28+
29+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
30+
31+
<pre>
32+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
33+
</pre>
34+
35+
2. Use the credentials provided by InfluxData to log into the Admin UI.
36+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
37+
38+
After you log in, the Account Management portal displays [account information](/influxdb3/cloud-dedicated/admin/account/)
39+
and lists all clusters associated with your account.
40+
3. You can **Search** clusters by name or ID to filter the list and use the sort button and column headers to sort the list.
41+
42+
### View cluster details
43+
44+
The cluster list displays the following cluster details:
45+
46+
- Cluster ID and name
47+
- Status (ready, provisioning, etc.)
48+
- Size (standard or custom)
49+
- URL endpoint
50+
{{% /tab-content %}}
51+
{{% tab-content %}}
52+
53+
## Use the CLI
2054

2155
1. If you haven't already, [download and install the `influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/#download-and-install-influxctl), and then [configure a connection profile](/influxdb3/cloud-dedicated/reference/cli/influxctl/#configure-connection-profiles) for your cluster.
56+
2257
2. Run `influxctl cluster list` with the following:
2358

2459
- _Optional_: [Output format](#output-formats)
@@ -69,3 +104,6 @@ The output is a JSON array of cluster objects that include additional fields suc
69104
}
70105
]
71106
```
107+
{{% /tab-content %}}
108+
{{< /tabs-wrapper >}}
109+

content/influxdb3/cloud-dedicated/admin/databases/create.md

Lines changed: 30 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Create a database
33
description: >
4-
Use the [`influxctl database create` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/create/)
4+
Use the Admin UI, the [`influxctl database create` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/create/),
55
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
66
to create a new InfluxDB database in your InfluxDB Cloud Dedicated cluster.
77
Provide a database name and an optional retention period.
@@ -70,16 +70,43 @@ related:
7070
- /influxdb3/cloud-dedicated/reference/api/
7171
---
7272

73-
Use the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/)
73+
Use the Admin UI, the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/),
7474
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/) to create a database in your {{< product-name omit=" Clustered" >}} cluster.
7575

7676
{{< tabs-wrapper >}}
7777
{{% tabs %}}
78+
[Admin UI](#)
7879
[influxctl](#)
7980
[Management API](#)
8081
{{% /tabs %}}
8182
{{% tab-content %}}
82-
83+
<!------------------------------- BEGIN ADMIN UI ------------------------------>
84+
The InfluxDB Cloud Dedicated administrative UI includes a portal for creating
85+
and managing databases.
86+
87+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
88+
89+
<pre>
90+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
91+
</pre>
92+
2. Use the credentials provided by InfluxData to log into the Admin UI.
93+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
94+
3. In the cluster list, find the cluster you want to create a database in. You
95+
can sort on column headers or use the **Search** field to find a specific cluster.
96+
4. Click the row for the cluster that you want to create a database in.
97+
5. Click the **New Database** button in the upper right corner of the cluster details page.
98+
The **Create Database** dialog displays.
99+
100+
<img src="/img/influxdb3/cloud-dedicated-admin-ui-create-database.png" alt="Create database dialog" />
101+
6. In the **Create Database** dialog, provide the following information:
102+
- **Database name**: The name of the database to create. See [Database naming restrictions](#database-naming-restrictions).
103+
- **Retention period**: The retention period for the database. See [Retention period syntax (influxctl CLI)](#retention-period-syntax-influxctl-cli).
104+
- **Max tables**: The maximum number of tables (measurements) allowed in the database. Default is 500.
105+
- **Max columns per table**: The maximum number of columns allowed in each table (measurement). Default is 250.
106+
7. Click the **Create Database** button to create the database.
107+
The new database displays in the list of databases for the cluster.
108+
{{% /tab-content %}}
109+
{{% tab-content %}}
83110
<!------------------------------- BEGIN INFLUXCTL ----------------------------->
84111
Use the [`influxctl database create` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/create/)
85112
to create a database in your {{< product-name omit=" Clustered" >}} cluster.

content/influxdb3/cloud-dedicated/admin/databases/delete.md

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Delete a database
33
description: >
4-
Use the [`influxctl database delete` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/delete/)
4+
Use the Admin UI, the [`influxctl database delete` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/delete/),
55
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
66
to delete a database from your InfluxDB Cloud Dedicated cluster.
77
Provide the name of the database you want to delete.
@@ -28,7 +28,7 @@ related:
2828
- /influxdb3/cloud-dedicated/reference/api/
2929
---
3030

31-
Use the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/)
31+
Use the Admin UI, the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/),
3232
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
3333
to delete a database from your {{< product-name omit=" Clustered" >}} cluster.
3434

@@ -47,10 +47,33 @@ to delete a database from your {{< product-name omit=" Clustered" >}} cluster.
4747
4848
{{< tabs-wrapper >}}
4949
{{% tabs %}}
50+
[Admin UI](#)
5051
[influxctl](#)
5152
[Management API](#)
5253
{{% /tabs %}}
5354
{{% tab-content %}}
55+
<!------------------------------- BEGIN ADMIN UI ------------------------------>
56+
The InfluxDB Cloud Dedicated administrative UI includes a portal for
57+
managing databases.
58+
59+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
60+
61+
<pre>
62+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
63+
</pre>
64+
2. Use the credentials provided by InfluxData to log into the Admin UI.
65+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
66+
3. In the cluster list, find the cluster you want to create a database in. You
67+
can sort on column headers or use the **Search** field to find a specific cluster.
68+
4. Click the options button (three vertical dots) to the right of the token you want to revoke.
69+
The options menu displays.
70+
5. In the options menu, click **Delete Database**. The **Delete Database** dialog displays.
71+
6. In the **Delete Database** dialog, check the box to confirm that you "understand the risk of this action".
72+
7. Click the **Delete Database** button to delete the database.
73+
74+
{{< img-hd src="/img/influxdb3/cloud-dedicated-admin-ui-delete-database.png" alt="Create database dialog" />}}
75+
{{% /tab-content %}}
76+
{{% tab-content %}}
5477

5578
<!------------------------------- BEGIN INFLUXCTL ----------------------------->
5679

content/influxdb3/cloud-dedicated/admin/databases/list.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: List databases
33
description: >
4-
Use the [`influxctl database list` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/list/)
4+
Use the Admin UI, the [`influxctl database list` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/list/), or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/)
55
to list databases in your InfluxDB Cloud Dedicated cluster.
66
menu:
77
influxdb3_cloud_dedicated:
@@ -25,15 +25,57 @@ related:
2525
- /influxdb3/cloud-dedicated/reference/api/
2626
---
2727

28-
Use the [`influxctl` CLI](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/create/)
29-
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/) to create a database in your {{< product-name omit=" Clustered" >}} cluster.
28+
Use the Admin UI, the [`influxctl database list` command](/influxdb3/cloud-dedicated/reference/cli/influxctl/database/list/),
29+
or the [Management HTTP API](/influxdb3/cloud-dedicated/api/management/) to list databases in your {{< product-name omit=" Clustered" >}} cluster.
3030

3131
{{< tabs-wrapper >}}
3232
{{% tabs %}}
33+
[Admin UI](#)
3334
[influxctl](#)
3435
[Management API](#)
3536
{{% /tabs %}}
3637
{{% tab-content %}}
38+
## Access the Cloud Dedicated Admin UI
39+
40+
1. To access the {{< product-name >}} Admin UI, visit the following URL in your browser:
41+
42+
<pre>
43+
<a href="https://console.influxdata.com">https://console.influxdata.com</a>
44+
</pre>
45+
46+
2. Use the credentials provided by InfluxData to log into the Admin UI.
47+
If you don't have login credentials, [contact InfluxData support](https://support.influxdata.com).
48+
49+
After you log in, the Account Management portal displays [account information](/influxdb3/cloud-dedicated/admin/account/)
50+
and lists all clusters associated with your account.
51+
3. You can **Search** for clusters by name or ID to filter the list and use the sort button and column headers to sort the list.
52+
4. Click the cluster row to view the list of databases associated with the cluster.
53+
54+
The database list displays the following database details:
55+
56+
- Name
57+
- Database ID
58+
- Max tables
59+
- Max columns per table
60+
- Retention period
61+
62+
You can **Search** for databases by name or ID to filter the list and use the sort button and column headers to sort the list.
63+
64+
{{< img-hd src="/img/influxdb3/cloud-dedicated-admin-ui-list-databases.png" alt="List databases" />}}
65+
66+
### Database management tools
67+
68+
The options button (3 vertical dots) to the right of any database provides additional tools:
69+
70+
- **Copy Database ID**: Copy the database ID to your clipboard
71+
- **Set Retention Period**: Set the retention period for the database
72+
- **Delete Database**: Delete the database
73+
74+
### Manage database tables
75+
76+
To view database details and manage database tables, click the database row in the list.
77+
{{% /tab-content %}}
78+
{{% tab-content %}}
3779

3880
<!------------------------------- BEGIN INFLUXCTL ----------------------------->
3981

0 commit comments

Comments
 (0)