V2 nav reorg (#5213)
* nest reference docs menu in v2 and cloud * move migrate data into write data * nest notebooks under tools * nest templates under tools * nest telegraf configs under tools * cleanup weights and titles of tools sections * reorg org and bucket management under admin * add backup/restore to admin, clean up related links * restructure security sections under admin * Apply suggestions from code review Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com> * updated serverless cli docs to address pr feedback * Update content/influxdb/cloud/admin/organizations/delete-org.md Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com> * port v2 install changes to new structure * address pr feedback and ported missing content to serverless --------- Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>pull/5218/head
parent
99fb79b8a1
commit
636f5ada45
31
Dockerfile
31
Dockerfile
|
@ -3,23 +3,17 @@
|
|||
# If you need more help, visit the Dockerfile reference guide at
|
||||
# https://docs.docker.com/engine/reference/builder/
|
||||
|
||||
FROM python:3.12.0-slim-bookworm
|
||||
ARG PYTHON_VERSION=3.11.5
|
||||
|
||||
FROM python:${PYTHON_VERSION}-slim as base
|
||||
|
||||
RUN apt-get update && apt-get install -y \
|
||||
curl \
|
||||
git \
|
||||
gpg \
|
||||
wget \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
ARG SOURCE_DIR
|
||||
|
||||
COPY test ./test
|
||||
COPY data ./test/data
|
||||
|
||||
RUN chmod -R 755 .
|
||||
ARG TESTS_DIR
|
||||
|
||||
# Prevents Python from writing pyc files.
|
||||
ENV PYTHONDONTWRITEBYTECODE=1
|
||||
|
@ -28,23 +22,26 @@ ENV PYTHONDONTWRITEBYTECODE=1
|
|||
# the application crashes without emitting any logs due to buffering.
|
||||
ENV PYTHONUNBUFFERED=1
|
||||
|
||||
WORKDIR /usr/src/app/${SOURCE_DIR}
|
||||
COPY $SOURCE_DIR /app/$SOURCE_DIR
|
||||
|
||||
COPY test/run-tests.sh /usr/local/bin/run-tests.sh
|
||||
WORKDIR /app/$SOURCE_DIR
|
||||
RUN chmod -R 755 /app/$SOURCE_DIR
|
||||
|
||||
COPY $SOURCE_DIR/run-tests.sh /usr/local/bin/run-tests.sh
|
||||
RUN chmod +x /usr/local/bin/run-tests.sh
|
||||
|
||||
# Download dependencies as a separate step to take advantage of Docker's caching.
|
||||
# Leverage a cache mount to /root/.cache/pip to speed up subsequent builds.
|
||||
# Leverage a bind mount to requirements.txt to avoid having to copy them into
|
||||
# this layer.
|
||||
# into this layer.
|
||||
RUN --mount=type=cache,target=/root/.cache/pip \
|
||||
--mount=type=bind,source=test/requirements.txt,target=./requirements.txt \
|
||||
python -m pip install -r ./requirements.txt
|
||||
--mount=type=bind,source=${SOURCE_DIR}/requirements.txt,target=requirements.txt \
|
||||
python -m pip install -r requirements.txt
|
||||
|
||||
# RUN --mount=type=cache,target=/root/.cache/node_modules \
|
||||
# --mount=type=bind,source=package.json,target=package.json \
|
||||
# npm install
|
||||
|
||||
ENV TEMP_DIR=./tmp
|
||||
ENTRYPOINT [ "run-tests.sh" ]
|
||||
WORKDIR $TESTS_DIR
|
||||
ENTRYPOINT ["run-tests.sh"]
|
||||
CMD [""]
|
||||
|
|
|
@ -94,7 +94,7 @@ do
|
|||
if [[ $version == "cloud-serverless" ]] || [[ $version == "cloud-dedicated" ]] || [[ $version == "clustered" ]]; then
|
||||
menu="influxdb_$(echo $version | sed 's/\./_/g;s/-/_/g;')"
|
||||
else
|
||||
menu="influxdb_$(echo $version | sed 's/\./_/g;')_ref"
|
||||
menu="influxdb_$(echo $version | sed 's/\./_/g;')"
|
||||
fi
|
||||
|
||||
# Define the title text based on the version
|
||||
|
|
10
compose.yaml
10
compose.yaml
|
@ -3,19 +3,15 @@
|
|||
services:
|
||||
test:
|
||||
image: docs-v2-tests
|
||||
container_name: docs-v2-tests
|
||||
env_file:
|
||||
- ./test/.env.influxdbv2
|
||||
- ./test/.env.influxdbv3
|
||||
volumes:
|
||||
- type: bind
|
||||
source: ./test
|
||||
target: /usr/src/app/test
|
||||
- type: bind
|
||||
source: ./data
|
||||
target: /usr/src/app/test/data
|
||||
source: ./test/tmp
|
||||
target: /app/test/tmp
|
||||
build:
|
||||
context: .
|
||||
dockerfile: Dockerfile
|
||||
args:
|
||||
- SOURCE_DIR=test
|
||||
- TESTS_DIR=tmp
|
||||
|
|
|
@ -177,7 +177,7 @@ Environment variable: `$INFLUXDB_ORG`
|
|||
|
||||
### `--influxdb-token`
|
||||
|
||||
InfluxDB 2.x or InfluxDB Cloud [authentication token](/influxdb/cloud/security/tokens/).
|
||||
InfluxDB 2.x or InfluxDB Cloud [authentication token](/influxdb/cloud/admin/tokens/).
|
||||
|
||||
Environment variable: `$INFLUXDB_TOKEN`
|
||||
|
||||
|
|
|
@ -65,9 +65,9 @@ To create an InfluxDB connection in the Chronograf UI:
|
|||
```
|
||||
|
||||
- **Connection Name**: Unique name for this connection.
|
||||
- **Organiziation**: InfluxDB [organization](/influxdb/v2/organizations/)
|
||||
- **Token**: InfluxDB [authentication token](/influxdb/v2/security/tokens/)
|
||||
- **Telegraf Database Name:** InfluxDB [bucket](/influxdb/v2/organizations/buckets/)
|
||||
- **Organization**: InfluxDB [organization](/influxdb/v2/admin/organizations/)
|
||||
- **Token**: InfluxDB [authentication token](/influxdb/v2/admin/tokens/)
|
||||
- **Telegraf Database Name:** InfluxDB [bucket](/influxdb/v2/admin/buckets/)
|
||||
Chronograf uses to populate parts of the application, including the Host List page (default is `telegraf`)
|
||||
- **Default Retention Policy:** default [retention policy](/influxdb/v1/concepts/glossary/#retention-policy-rp)
|
||||
_**(leave blank)**_
|
||||
|
|
|
@ -61,7 +61,7 @@ chronograf [flags]
|
|||
| `--influxdb-username` | InfluxDB username | `INFLUXDB_USERNAME` |
|
||||
| `--influxdb-password` | InfluxDB password | `INFLUXDB_PASSWORD` |
|
||||
| `--influxdb-org` | InfluxDB 2.x or InfluxDB Cloud organization name | `INFLUXDB_ORG` |
|
||||
| `--influxdb-token` | InfluxDB 2.x or InfluxDB Cloud [authentication token](/influxdb/cloud/security/tokens/) | `INFLUXDB_TOKEN` |
|
||||
| `--influxdb-token` | InfluxDB 2.x or InfluxDB Cloud [authentication token](/influxdb/cloud/admin/tokens/) | `INFLUXDB_TOKEN` |
|
||||
|
||||
### Kapacitor connection flags
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ The `/api/v2/write` endpoint maps the supplied version 1.8 database and retentio
|
|||
|
||||
**Include the following HTTP header:**
|
||||
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/security/tokens/)
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/admin/tokens/)
|
||||
to authenticate each API request.
|
||||
InfluxDB v1.x uses username and password credentials for authenticating API requests.
|
||||
To provide InfluxDB 1.x credentials, use the `Token` scheme and include your username and password separated by a colon (`:`).
|
||||
|
@ -174,7 +174,7 @@ The [/api/v2/buckets](/influxdb/latest/api/#tag/Buckets) endpoint accepts `GET`,
|
|||
|
||||
**Include the following HTTP header:**
|
||||
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/security/tokens/)
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/admin/tokens/)
|
||||
to authenticate each API request.
|
||||
InfluxDB v1.x uses username and password credentials for authenticating API requests.
|
||||
To provide InfluxDB 1.x credentials, use the `Token` scheme and include your username and password separated by a colon (`:`).
|
||||
|
@ -213,7 +213,7 @@ The [`/api/v2/delete`](/influxdb/latest/api/#tag/Delete) endpoint accepts `POST`
|
|||
|
||||
**Include the following HTTP header:**
|
||||
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/security/tokens/)
|
||||
- `Authorization`: InfluxDB 2.x uses this header with the `Token` scheme and [API Tokens](/influxdb/v2/admin/tokens/)
|
||||
to authenticate each API request.
|
||||
InfluxDB v1.x uses username and password credentials for authenticating API requests.
|
||||
To provide InfluxDB 1.x credentials, use the `Token` scheme and include your username and password separated by a colon (`:`).
|
||||
|
|
|
@ -52,7 +52,7 @@ For more information about table grouping, see
|
|||
|
||||
## Store sensitive credentials as secrets
|
||||
If using **InfluxDB Cloud** or **InfluxDB OSS 2.x**, we recommend storing Bigtable
|
||||
connection credentials as [InfluxDB secrets](/influxdb/cloud/security/secrets/).
|
||||
connection credentials as [InfluxDB secrets](/influxdb/cloud/admin/secrets/).
|
||||
Use [`secrets.get()`](/flux/v0/stdlib/influxdata/influxdb/secrets/get/) to
|
||||
retrieve a secret from the InfluxDB secrets API.
|
||||
|
||||
|
|
|
@ -44,7 +44,7 @@ in addition to **bucket** or **bucketID**.
|
|||
- **host**: [InfluxDB Cloud region URL](/influxdb/cloud/reference/urls/) or
|
||||
[InfluxDB URL](/influxdb/v2/reference/urls/)
|
||||
- **org** or **orgID**: InfluxDB organization name or ID
|
||||
- **token**: InfluxDB [API token](/influxdb/cloud/security/tokens/)
|
||||
- **token**: InfluxDB [API token](/influxdb/cloud/admin/tokens/)
|
||||
|
||||
```js
|
||||
from(
|
||||
|
|
|
@ -58,7 +58,7 @@ _See the [database guides](#databases) for information about DSNs for each drive
|
|||
|
||||
#### Store sensitive credentials as secrets
|
||||
If using **InfluxDB Cloud** or **InfluxDB OSS 2.x**, we recommend storing DSN
|
||||
credentials as [InfluxDB secrets](/influxdb/cloud/security/secrets/).
|
||||
credentials as [InfluxDB secrets](/influxdb/cloud/admin/secrets/).
|
||||
Use [`secrets.get()`](/flux/v0/stdlib/influxdata/influxdb/secrets/get/) to
|
||||
retrieve a secret from the InfluxDB secrets API.
|
||||
|
||||
|
|
|
@ -81,7 +81,7 @@ Default is `""`.
|
|||
|
||||
### token
|
||||
|
||||
[InfluxDB API token](/influxdb/cloud/security/tokens/)
|
||||
[InfluxDB API token](/influxdb/cloud/admin/tokens/)
|
||||
_(Required when executed outside of InfluxDB)_.
|
||||
Default is `""`.
|
||||
|
||||
|
|
|
@ -90,7 +90,7 @@ _(Required if executed outside of your InfluxDB Cloud organization or region)_.
|
|||
|
||||
### token
|
||||
|
||||
InfluxDB Cloud [API token](/influxdb/cloud/security/tokens/).
|
||||
InfluxDB Cloud [API token](/influxdb/cloud/admin/tokens/).
|
||||
Default is `""`.
|
||||
|
||||
_(Required if executed outside of your InfluxDB Cloud organization or region)_.
|
||||
|
|
|
@ -73,7 +73,7 @@ _(Required if executed outside of your InfluxDB Cloud organization or region)_.
|
|||
|
||||
### token
|
||||
|
||||
InfluxDB Cloud [API token](/influxdb/cloud/security/tokens/).
|
||||
InfluxDB Cloud [API token](/influxdb/cloud/admin/tokens/).
|
||||
Default is `""`.
|
||||
|
||||
_(Required if executed outside of your InfluxDB Cloud organization or region)_.
|
||||
|
|
|
@ -28,7 +28,7 @@ Provide the following parameters to both functions:
|
|||
- **org** or **orgID**: _InfluxDB organization name_ or _organization ID_ to write to.
|
||||
- **host**: [InfluxDB URL](/influxdb/v2/reference/urls/) or
|
||||
[InfluxDB Cloud region](/influxdb/cloud/reference/regions) URL.
|
||||
- **token**: [InfluxDB API token](/influxdb/v2/security/tokens/).
|
||||
- **token**: [InfluxDB API token](/influxdb/v2/admin/tokens/).
|
||||
|
||||
##### Write options
|
||||
- [Write data to InfluxDB](#write-data-to-influxdb)
|
||||
|
|
|
@ -59,7 +59,7 @@ _See the [database guides](#databases) for information about DSNs for each drive
|
|||
|
||||
#### Store sensitive credentials as secrets
|
||||
If using **InfluxDB Cloud** or **InfluxDB OSS 2.x**, we recommend storing DSN
|
||||
credentials as [InfluxDB secrets](/influxdb/cloud/security/secrets/).
|
||||
credentials as [InfluxDB secrets](/influxdb/cloud/admin/secrets/).
|
||||
Use [`secrets.get()`](/flux/v0/stdlib/influxdata/influxdb/secrets/get/) to
|
||||
retrieve a secret from the InfluxDB secrets API.
|
||||
|
||||
|
|
|
@ -11,10 +11,10 @@ weight: 104
|
|||
aliases:
|
||||
- /influxdb/cloud-dedicated/write-data/migrate-data/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/migrate-data/
|
||||
cloud: /influxdb/cloud/write-data/migrate-data/
|
||||
---
|
||||
|
||||
Migrate data to InfluxDB Cloud Dedicated powered by InfluxDB IOx from other
|
||||
Migrate data to InfluxDB Cloud Dedicated from other
|
||||
InfluxDB instances powered by TSM including InfluxDB OSS 1.x, 2.x,
|
||||
InfluxDB Enterprise, and InfluxDB Cloud (TSM).
|
||||
|
||||
|
|
|
@ -40,28 +40,25 @@ Learn how to upgrade your plan, access billing details, and review and resolve p
|
|||
|
||||
## Access billing details
|
||||
|
||||
1. In the {{< product-name "short" >}} UI, select the **user avatar** in the left
|
||||
navigation menu, and select **Account** >
|
||||
**Billing**.
|
||||
1. In the top navigation menu, click the drop-down menu with the same of your
|
||||
account.
|
||||
|
||||
{{< nav-icon "account" >}}
|
||||
2. Click **{{% icon "billing" %}} Billing**.
|
||||
|
||||
2. Do one of the following:
|
||||
3. Do one of the following:
|
||||
|
||||
- If you subscribed to an InfluxDB Cloud plan through
|
||||
[**AWS Marketplace**](https://aws.amazon.com/marketplace/pp/B08234JZPS),
|
||||
[**Azure Marketplace**](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/influxdata.influxdb-cloud),
|
||||
or [**GCP Marketplace**](https://console.cloud.google.com/marketplace/details/influxdata-public/cloud2-gcp-marketplace-prod?pli=1),
|
||||
click the **AWS**, **Microsoft**, or **GCP** link to access your billing and
|
||||
subscription information.
|
||||
click the **AWS** link to access your billing and subscription information.
|
||||
|
||||
- If you subscribed to an InfluxDB Cloud plan through **InfluxData**, complete the following procedures as needed:
|
||||
- If you subscribed to an InfluxDB Cloud plan through **InfluxData**,
|
||||
complete the following procedures as needed:
|
||||
|
||||
- [Add or update your payment method](#add-or-update-your-payment-method)
|
||||
- [Add or update your contact information](#add-or-update-your-contact-information)
|
||||
- [Send notifications when usage exceeds an amount](#send-notifications-when-usage-exceeds-an-amount)
|
||||
|
||||
3. View information about:
|
||||
4. View information about:
|
||||
|
||||
- [Usage-Based Plan](#view-usage-based-plan-information)
|
||||
- [Free Plan](#view-free-plan-information)
|
||||
|
|
|
@ -13,7 +13,7 @@ influxdb/cloud-serverless/tags: [buckets]
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/organizations/buckets/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/buckets/
|
||||
cloud: /influxdb/cloud/admin/buckets/
|
||||
---
|
||||
|
||||
A **bucket** is a named location where time series data is stored.
|
||||
|
|
|
@ -14,7 +14,7 @@ related:
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/organizations/buckets/create-bucket/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/buckets/create-bucket/
|
||||
cloud: /influxdb/cloud/admin/buckets/create-bucket/
|
||||
---
|
||||
|
||||
Use the InfluxDB user interface (UI), `influx` command line interface (CLI), or InfluxDB HTTP API
|
||||
|
@ -86,7 +86,7 @@ To create a bucket with the InfluxDB HTTP API, send a request to the following e
|
|||
Include the following in your request:
|
||||
|
||||
- **Headers:**
|
||||
- **Authorization:** `Token` scheme with your InfluxDB [API token](/influxdb/cloud/security/tokens/)
|
||||
- **Authorization:** `Token` scheme with your InfluxDB [API token](/influxdb/cloud-serverless/admin/tokens/)
|
||||
- **Content-type:** `application/json`
|
||||
- **Request body:** JSON object with the following fields:
|
||||
{{< req type="key" >}}
|
||||
|
|
|
@ -13,7 +13,7 @@ related:
|
|||
- /influxdb/cloud-serverless/admin/buckets/create-bucket/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/buckets/bucket-schema/
|
||||
cloud: /influxdb/cloud/admin/buckets/bucket-schema/
|
||||
---
|
||||
|
||||
{{% warn %}}
|
||||
|
|
|
@ -10,20 +10,16 @@ weight: 202
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/organizations/buckets/update-bucket/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/buckets/update-bucket/
|
||||
cloud: /influxdb/cloud/admin/buckets/update-bucket/
|
||||
---
|
||||
|
||||
Use the InfluxDB user interface (UI), the `influx` command line interface (CLI), or the InfluxDB HTTP API to update a bucket.
|
||||
Use the InfluxDB user interface (UI), the `influx` command line interface (CLI),
|
||||
or the InfluxDB HTTP API to update a bucket.
|
||||
|
||||
Note that updating a bucket's name will affect any resources that reference the bucket by name, including the following:
|
||||
|
||||
- Queries
|
||||
- Dashboards
|
||||
- Tasks
|
||||
- Telegraf configurations
|
||||
- Templates
|
||||
|
||||
If you change a bucket name, be sure to update the bucket name in the above places and any resources that reference it.
|
||||
{{% note %}}
|
||||
If you change a bucket name, be sure to update the bucket connection credential
|
||||
in clients that connect to your bucket.
|
||||
{{% /note %}}
|
||||
|
||||
## Update a bucket's name in the InfluxDB UI
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ weight: 202
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/organizations/buckets/view-buckets/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/buckets/view-buckets/
|
||||
cloud: /influxdb/cloud/admin/buckets/view-buckets/
|
||||
---
|
||||
|
||||
## View buckets in the InfluxDB UI
|
||||
|
|
|
@ -13,7 +13,7 @@ related:
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/organizations/
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/organizations/
|
||||
cloud: /influxdb/cloud/admin/organizations/
|
||||
---
|
||||
|
||||
An **organization** is a workspace for a group of users.
|
||||
|
|
|
@ -20,6 +20,8 @@ If you belong to more than one {{< product-name >}} organization with the same e
|
|||
|
||||
To switch InfluxDB Cloud organizations:
|
||||
|
||||
1. (Optional) To switch to an organization in a different account, [switch accounts](/influxdb/cloud/account-management/switch-account/).
|
||||
2. In the {{< product-name "short" >}} UI, click the organization name in the header and select **Switch Organizations**.
|
||||
3. Select the organization you want to switch to from the drop-down list.
|
||||
1. (Optional) To switch to an organization in a different account,
|
||||
[switch accounts](/influxdb/cloud-serverless/admin/accounts/switch-account/).
|
||||
2. In the {{< product-name "short" >}} UI, click the organization name in the
|
||||
header and select **Switch Organizations**.
|
||||
3. Select the organization you want to switch to from the drop-down list.
|
||||
|
|
|
@ -0,0 +1,46 @@
|
|||
---
|
||||
title: Update an organization
|
||||
seotitle: Update an organization in InfluxDB
|
||||
description: >
|
||||
Update an organization's name and assets in InfluxDB using the InfluxDB UI or
|
||||
the influx CLI.
|
||||
menu:
|
||||
influxdb_cloud_serverless:
|
||||
name: Update an organization
|
||||
parent: Manage organizations
|
||||
weight: 103
|
||||
---
|
||||
|
||||
Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI)
|
||||
to update an organization.
|
||||
|
||||
{{% note %}}
|
||||
If you change an organization name, be sure to update the organization connection
|
||||
credential in clients that connect to your {{< product-name >}} organization.
|
||||
{{% /note %}}
|
||||
|
||||
## Update an organization in the InfluxDB UI
|
||||
|
||||
1. In the top navigation menu, click the drop-down menu with the same of your
|
||||
organization.
|
||||
2. Click **{{% icon "cog" %}} Settings**.
|
||||
2. Click **{{< icon "edit" >}} Rename**. A verification window appears.
|
||||
3. Review the information, and then click **I understand, let's rename my organization**.
|
||||
4. Enter a new name for your organization, and then click **Change organization name**.
|
||||
|
||||
## Update an organization using the influx CLI
|
||||
|
||||
Use the [`influx org update` command](/influxdb/cloud/reference/cli/influx/org/update)
|
||||
to update an organization. Updating an organization requires the following:
|
||||
|
||||
- The org ID _(provided in the output of `influx org list`)_
|
||||
|
||||
##### Update the name of a organization
|
||||
|
||||
```sh
|
||||
# Syntax
|
||||
influx org update -i <org-id> -n <new-org-name>
|
||||
|
||||
# Example
|
||||
influx org update -i 034ad714fdd6f000 -n my-new-org
|
||||
```
|
|
@ -0,0 +1,76 @@
|
|||
---
|
||||
title: Manage users
|
||||
seotitle: Manage users in your InfluxDB Cloud organization
|
||||
description: >
|
||||
Learn how to invite, view, and manage users in your InfluxDB Cloud organization.
|
||||
weight: 106
|
||||
menu:
|
||||
influxdb_cloud_serverless:
|
||||
parent: Manage organizations
|
||||
name: Manage users
|
||||
---
|
||||
|
||||
{{< product-name >}} lets you invite and collaborate with multiple users in your organization.
|
||||
By default, each user has full permissions on resources in your organization.
|
||||
|
||||
- [Users management page](#users-management-page)
|
||||
- [Invite a user to your organization](#invite-a-user-to-your-organization)
|
||||
- [Resend an invitation](#resend-an-invitation)
|
||||
- [Withdraw an invitation](#withdraw-an-invitation)
|
||||
- [Remove a user from your organization](#remove-a-user-from-your-organization)
|
||||
|
||||
{{% note %}}
|
||||
If you have multiple users, we recommend creating a system account for administrative purposes.
|
||||
For example, if you have applications writing to InfluxDB, ensure the applications
|
||||
use the system account credentials.
|
||||
{{% /note %}}
|
||||
|
||||
## Members page
|
||||
|
||||
Manage your organization's users from your organization's **Members page**.
|
||||
In the {{< product-name "short" >}} user interface (UI), click the drop down
|
||||
menu with your organization's name in the top navigation menu and select
|
||||
**{{% icon "members" %}} Members**.
|
||||
|
||||
## Invite a user to your organization
|
||||
|
||||
1. Navigate to your organization's [Members page](#members-page).
|
||||
2. Under **Add a new user to your organization**, enter the email address of
|
||||
the user to invite and select their role in your organization.
|
||||
|
||||
{{% note %}}
|
||||
#### Available roles
|
||||
Currently, InfluxDB Cloud has only one permission level for users: **Owner**.
|
||||
With Owner permissions, a user can delete resources and other users from your organization.
|
||||
Take care when inviting a user.
|
||||
{{% /note %}}
|
||||
|
||||
_Users must be invited one at a time._
|
||||
3. Click **{{< icon "plus" >}} {{< caps >}}Add{{< /caps >}}**.
|
||||
|
||||
An invitation with an activation link is sent to the specified email address.
|
||||
The activation link expires after 72 hours.
|
||||
Once activated, the new user is added as an **Owner** with permissions to read and write all resources.
|
||||
|
||||
Accounts can have up to 50 pending invitations at one time.
|
||||
|
||||
### Resend an invitation
|
||||
|
||||
1. Navigate to your organization's [Members page](#members-page).
|
||||
2. Click the **{{< icon "refresh" >}}** icon next to the invitation you want to resend.
|
||||
|
||||
### Withdraw an invitation
|
||||
|
||||
1. Navigate to your organization's [Members page](#members-page).
|
||||
2. Click the **{{< icon "delete" >}}** icon next to the invitation you want to withdraw.
|
||||
3. Click **{{< caps >}}Withdraw Invitation{{< /caps >}}**.
|
||||
|
||||
## Remove a user from your organization
|
||||
|
||||
{{% warn %}}
|
||||
For security purposes, once an InfluxDB user account is deleted, the user (and their token) cannot be reactivated.
|
||||
{{% /warn %}}
|
||||
|
||||
1. Navigate to your organization's [Members page](#members-page).
|
||||
2. Click the **{{< icon "delete" >}}** icon next to the user you want to remove.
|
||||
3. Click **{{< caps >}}Remove user access{{< /caps >}}**.
|
|
@ -8,7 +8,7 @@ menu:
|
|||
parent: Manage tokens
|
||||
weight: 201
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/security/tokens/create-token/
|
||||
cloud: /influxdb/cloud/admin/tokens/create-token/
|
||||
---
|
||||
|
||||
Create API tokens using the InfluxDB user interface (UI), the `influx`
|
||||
|
|
|
@ -9,7 +9,7 @@ menu:
|
|||
parent: Guides
|
||||
weight: 104
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/migrate-data/
|
||||
cloud: /influxdb/cloud/write-data/migrate-data/
|
||||
aliases:
|
||||
- /influxdb/cloud-serverless/write-data/migrate-data/
|
||||
- /influxdb/cloud-serverless/reference/flux/
|
||||
|
|
|
@ -13,7 +13,7 @@ weight: 102
|
|||
aliases:
|
||||
- /influxdb/cloud-serverless/write-data/migrate-data/migrate-tsm-to-iox
|
||||
alt_links:
|
||||
cloud: /influxdb/cloud/migrate-data/migrate-cloud-to-cloud/
|
||||
cloud: /influxdb/cloud/write-data/migrate-data/migrate-cloud-to-cloud/
|
||||
---
|
||||
|
||||
To migrate data from an InfluxDB Cloud (TSM) organization to an
|
||||
|
@ -64,8 +64,8 @@ to complete the migration.
|
|||
|
||||
1. Add the **InfluxDB Cloud API token from the InfluxDB Cloud Serverless organization _(created in step 1b)_**
|
||||
as a secret using the key, `INFLUXDB_IOX_TOKEN`.
|
||||
_See [Add secrets](/influxdb/cloud/security/secrets/add/) for more information._
|
||||
3. [Create a bucket](/influxdb/cloud/organizations/buckets/create-bucket/)
|
||||
_See [Add secrets](/influxdb/cloud/admin/secrets/add/) for more information._
|
||||
3. [Create a bucket](/influxdb/cloud/admin/buckets/create-bucket/)
|
||||
**to store temporary migration metadata**.
|
||||
4. [Create a task](/influxdb/cloud/process-data/manage-tasks/create-task/)
|
||||
using the provided [migration task](#migration-task).
|
||||
|
|
|
@ -12,8 +12,6 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [cli]
|
||||
aliases:
|
||||
- /influxdb/cloud-serverless/tools/influx-cli/
|
||||
related:
|
||||
- /influxdb/cloud/tools/clis/
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -19,7 +19,7 @@ updated_in: CLI v2.0.2
|
|||
|
||||
The `influx backup` command works with **InfluxDB OSS 2.x**, but does not work with **InfluxDB Cloud**.
|
||||
For information about backing up data in InfluxDB Cloud, see
|
||||
[InfluxDB Cloud Serverless durability](/influxdb/cloud/reference/internals/durability/).
|
||||
[InfluxDB Cloud Serverless durability](/influxdb/cloud-serverless/reference/internals/durability/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -9,8 +9,7 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [buckets, bucket-schema]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/bucket-schema
|
||||
- /influxdb/cloud/organizations/buckets/
|
||||
- /influxdb/cloud-serverless/admin/buckets/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.1.0+]
|
||||
|
|
|
@ -6,8 +6,6 @@ menu:
|
|||
name: influx bucket-schema create
|
||||
parent: influx bucket-schema
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/bucket-schema
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -6,8 +6,6 @@ menu:
|
|||
name: influx bucket-schema list
|
||||
parent: influx bucket-schema
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/bucket-schema
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -6,8 +6,6 @@ menu:
|
|||
name: influx bucket-schema update
|
||||
parent: influx bucket-schema
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/bucket-schema
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -5,11 +5,9 @@ menu:
|
|||
influxdb_cloud_serverless:
|
||||
name: influx bucket create
|
||||
parent: influx bucket
|
||||
weight: 201
|
||||
aliases:
|
||||
- /influxdb/cloud/reference/cli/influx/bucket/create/
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/create-buckets/
|
||||
- /influxdb/cloud-serverless/admin/buckets/create-bucket/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
updated_in: CLI v2.1.0
|
||||
|
|
|
@ -7,7 +7,7 @@ menu:
|
|||
parent: influx bucket
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/organizations/buckets/delete-bucket/
|
||||
- /influxdb/cloud-serverless/admin/buckets/delete-bucket/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
---
|
||||
|
|
|
@ -8,8 +8,7 @@ menu:
|
|||
weight: 101
|
||||
influxdb/cloud-serverless/tags: [delete]
|
||||
related:
|
||||
- /influxdb/cloud/write-data/delete-data
|
||||
- /influxdb/cloud/reference/syntax/delete-predicate
|
||||
- /influxdb/cloud-serverless/write-data/delete-data/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.3+]
|
||||
|
|
|
@ -7,7 +7,6 @@ menu:
|
|||
weight: 101
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/influxdb-templates/create/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.0+]
|
||||
|
|
|
@ -7,7 +7,6 @@ menu:
|
|||
parent: influx export
|
||||
weight: 201
|
||||
related:
|
||||
- /influxdb/cloud/influxdb-templates/create/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
---
|
||||
|
|
|
@ -11,11 +11,12 @@ metadata: [influx CLI 2.0.0+, InfluxDB OSS only]
|
|||
|
||||
{{% note %}}
|
||||
#### Works with InfluxDB OSS 2.x
|
||||
|
||||
The `influx org create` command works with **InfluxDB OSS 2.x**, but does not
|
||||
work with **InfluxDB Cloud Serverless**.
|
||||
New organizations are created for each new InfluxDB account.
|
||||
For information about creating an InfluxDB Cloud Serverless account, see
|
||||
[sign up for InfluxDB Cloud Serverless](/influxdb/cloud/sign-up/).
|
||||
[sign up for InfluxDB Cloud Serverless](/influxdb/cloud-serverless/sign-up/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -15,7 +15,7 @@ The `influx org delete` command works with **InfluxDB OSS 2.x**, but does not
|
|||
work with **InfluxDB Cloud Serverless**.
|
||||
An organization is associated with your InfluxDB account.
|
||||
For information about removing your InfluxDB Cloud Serverless account and its organization,
|
||||
see [Cancel your InfluxDB Cloud Serverless subscription](/influxdb/cloud/account-management/offboarding/).
|
||||
see [Cancel your InfluxDB Cloud Serverless subscription](/influxdb/cloud-serverless/admin/accounts/cancel-account/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ metadata: [influx CLI 2.0.0+, InfluxDB OSS only]
|
|||
The `influx org members` command works with **InfluxDB OSS 2.x**, but does not
|
||||
work with **InfluxDB Cloud Serverless**.
|
||||
For information about managing users in your InfluxDB Cloud Serverless organization,
|
||||
see [Manage users](/influxdb/cloud/organizations/users/).
|
||||
see [Manage users](/influxdb/cloud-serverless/admin/organizations/users/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -15,7 +15,7 @@ metadata: [influx CLI 2.0.0+, InfluxDB OSS only]
|
|||
The `influx org members add` command adds members to organizations in **InfluxDB OSS 2.x**,
|
||||
but cannot add organization members to **InfluxDB Cloud Serverless**.
|
||||
For information about inviting users into your InfluxDB Cloud Serverless organization,
|
||||
see [Manage users](/influxdb/cloud/organizations/users/).
|
||||
see [Manage users](/influxdb/cloud-serverless/admin/organizations/users/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ metadata: [influx CLI 2.0.0+, InfluxDB OSS only]
|
|||
The `influx org members remove` command removes organization members in **InfluxDB OSS 2.x**,
|
||||
but cannot remove organization members in **InfluxDB Cloud Serverless**.
|
||||
For information about removing a user from your InfluxDB Cloud Serverless organization, see
|
||||
[Remove a user](/influxdb/cloud/organizations/users/#remove-a-user-from-your-organization/).
|
||||
[Remove a user](/influxdb/cloud-serverless/admin/organizations/users/#remove-a-user-from-your-organization/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -8,8 +8,7 @@ menu:
|
|||
weight: 101
|
||||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/replication
|
||||
- /influxdb/cloud/write-data/replication
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/replication
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 101
|
||||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/replication
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/replication
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 102
|
||||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/replication
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/replication
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 102
|
||||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/replication
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/replication
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -8,7 +8,7 @@ menu:
|
|||
weight: 102
|
||||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/replication
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/replication
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -9,8 +9,7 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [write, replication]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/reference/cli/influx/remote
|
||||
- /influxdb/cloud/write-data/replication/replicate-data/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/remote
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -18,7 +18,7 @@ updated_in: CLI v2.0.7
|
|||
|
||||
The `influx restore` command works with **InfluxDB OSS 2.x**, but does not work with **InfluxDB Cloud**.
|
||||
For information about restoring data in InfluxDB Cloud, see
|
||||
[InfluxDB Cloud durability](/influxdb/cloud/reference/internals/durability/).
|
||||
[InfluxDB Cloud durability](/influxdb/cloud-serverless/reference/internals/durability/).
|
||||
{{% /note %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
|
@ -11,7 +11,6 @@ cascade:
|
|||
related:
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud/api-guide/api-invokable-scripts/
|
||||
metadata: [influx CLI 2.4.0+, InfluxDB Cloud only]
|
||||
---
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@ weight: 101
|
|||
cascade:
|
||||
influxdb/cloud-serverless/tags: [secrets]
|
||||
related:
|
||||
- /influxdb/cloud/security/secrets/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.0+]
|
||||
|
|
|
@ -11,7 +11,6 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [templates]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/influxdb-templates/stacks/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.1+]
|
||||
|
|
|
@ -6,8 +6,6 @@ menu:
|
|||
name: influx stacks remove
|
||||
parent: influx stacks
|
||||
weight: 201
|
||||
aliases:
|
||||
- /influxdb/cloud/reference/cli/influx/pkg/stack/remove/
|
||||
influxdb/cloud-serverless/tags: [templates]
|
||||
---
|
||||
|
||||
|
|
|
@ -9,7 +9,6 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [tasks]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/process-data/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.0+]
|
||||
|
|
|
@ -6,8 +6,6 @@ menu:
|
|||
name: influx task log list
|
||||
parent: influx task log
|
||||
weight: 301
|
||||
aliases:
|
||||
- /influxdb/cloud/reference/cli/influx/task/log/list
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -11,7 +11,7 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [telegraf]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/telegraf-configs/
|
||||
- /influxdb/cloud-serverless/tools/telegraf-configs/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.0+]
|
||||
|
|
|
@ -9,7 +9,6 @@ weight: 101
|
|||
influxdb/cloud-serverless/tags: [templates]
|
||||
cascade:
|
||||
related:
|
||||
- /influxdb/cloud/influxdb-templates/
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
metadata: [influx CLI 2.0.1+]
|
||||
|
|
|
@ -7,7 +7,7 @@ menu:
|
|||
parent: influx user
|
||||
weight: 201
|
||||
aliases:
|
||||
- /influxdb/cloud/reference/cli/influx/user/find
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/user/find
|
||||
canonical: /influxdb/v2/reference/cli/influx/user/list/
|
||||
---
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ influxdb/cloud-serverless/tags: [authorization]
|
|||
{{% cloud %}}
|
||||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -15,7 +15,7 @@ updated_in: CLI v2.0.3
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth create` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ influxdb/cloud-serverless/tags: [authorization]
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth delete` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ influxdb/cloud-serverless/tags: [authorization]
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth list` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ influxdb/cloud-serverless/tags: [authorization]
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth set-active` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -14,7 +14,7 @@ influxdb/cloud-serverless/tags: [authorization]
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth set-inactive` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -15,7 +15,7 @@ updated_in: CLI v2.0.3
|
|||
#### Not supported in InfluxDB Cloud
|
||||
**InfluxDB Cloud** does not support InfluxDB 1.x compatible authorizations.
|
||||
Using the `influx v1 auth set-password` command with InfluxDB Cloud will result in an error.
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud/security/tokens/).
|
||||
To authenticate with InfluxDB Cloud, use [InfluxDB token authentication](/influxdb/cloud-serverless/admin/tokens/).
|
||||
{{% /cloud %}}
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -11,7 +11,7 @@ influxdb/cloud-serverless/tags: [InfluxQL]
|
|||
related:
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/#provide-required-authentication-credentials, influx CLI—Provide required authentication credentials
|
||||
- /influxdb/cloud/query-data/influxql/
|
||||
- /influxdb/cloud-serverless/query-data/influxql/
|
||||
- /influxdb/v2/tools/influxql-shell/
|
||||
metadata: [influx CLI 2.4.0+, InfluxDB Cloud]
|
||||
---
|
||||
|
|
|
@ -10,11 +10,8 @@ menu:
|
|||
weight: 101
|
||||
influxdb/cloud-serverless/tags: [write]
|
||||
related:
|
||||
- /influxdb/cloud/write-data/
|
||||
- /influxdb/cloud/write-data/developer-tools/csv/
|
||||
- /influxdb/cloud/reference/syntax/line-protocol/
|
||||
- /influxdb/cloud/reference/syntax/annotated-csv/
|
||||
- /influxdb/cloud/reference/syntax/annotated-csv/extended/
|
||||
- /influxdb/cloud-serverless/write-data/
|
||||
- /influxdb/cloud-serverless/reference/syntax/line-protocol/
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
||||
|
|
|
@ -15,8 +15,10 @@ menu:
|
|||
InfluxDB Cloud Serverless is available on on the following cloud providers and regions.
|
||||
Each region has a unique URL and API endpoint.
|
||||
Use the URLs below to interact with your InfluxDB Cloud Serverless instances with the
|
||||
[InfluxDB API](/influxdb/cloud-serverless/reference/api/), [InfluxDB client libraries](/influxdb/cloud/api-guide/client-libraries/),
|
||||
[`influx` CLI](/influxdb/cloud-serverless/reference/cli/influx/), or [Telegraf](/influxdb/cloud-serverless/write-data/use-telegraf/).
|
||||
[InfluxDB API](/influxdb/cloud-serverless/reference/api/),
|
||||
[InfluxDB client libraries](/influxdb/cloud-serverless/reference/client-libraries/),
|
||||
[`influx` CLI](/influxdb/cloud-serverless/reference/cli/influx/), or
|
||||
[Telegraf](/influxdb/cloud-serverless/write-data/use-telegraf/).
|
||||
|
||||
{{% note %}}
|
||||
#### InfluxDB IOx-enabled cloud regions
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
title: Extended annotated CSV
|
||||
description: >
|
||||
Extended annotated CSV provides additional annotations and options that specify
|
||||
how CSV data should be converted to [line protocol](/influxdb/cloud/reference/syntax/line-protocol/)
|
||||
how CSV data should be converted to [line protocol](/influxdb/cloud-serverless/reference/syntax/line-protocol/)
|
||||
and written to InfluxDB.
|
||||
menu:
|
||||
influxdb_cloud_serverless:
|
||||
|
|
|
@ -0,0 +1,299 @@
|
|||
---
|
||||
title: Sign up for InfluxDB Cloud Serverless
|
||||
description: >
|
||||
InfluxDB Cloud Serverless is a fully managed and hosted version of InfluxDB 3.0,
|
||||
the time series platform purpose-built to collect and store time series data.
|
||||
menu:
|
||||
influxdb_cloud_serverless:
|
||||
name: Sign up
|
||||
weight: 1
|
||||
influxdb/cloud-serverless/tags: [get-started, install, cli]
|
||||
---
|
||||
|
||||
InfluxDB Cloud Serverless is a fully managed and hosted version of InfluxDB 3.0,
|
||||
the time series platform purpose-built to collect and store time series data.
|
||||
|
||||
- [Start for free](#start-for-free)
|
||||
- [Sign up](#sign-up)
|
||||
- [(Optional) Download, install, and use the influx CLI](#optional-download-install-and-use-the-influx-cli)
|
||||
- [Sign in](#sign-in)
|
||||
- [Get started working with data](#get-started-working-with-data)
|
||||
|
||||
## Start for free
|
||||
|
||||
Start using {{< product-name >}} at no cost with the
|
||||
[Free Plan](/influxdb/cloud-serverless/admin/accounts/pricing-plans/#free-plan).
|
||||
Use it as much and as long as you like within the plan's rate-limits.
|
||||
[Limits](/influxdb/cloud-serverless/admin/account/limits/) are designed to let
|
||||
you monitor 5-10 sensors, stacks or servers comfortably.
|
||||
|
||||
{{% note %}}
|
||||
Users on the Free Plan are limited to one organization.
|
||||
{{% /note %}}
|
||||
|
||||
## Sign up
|
||||
|
||||
1. Choose one of the following:
|
||||
|
||||
#### Subscribe through InfluxData
|
||||
|
||||
To subscribe to an InfluxDB Cloud Serverless **Free Plan** through InfluxData,
|
||||
go to [InfluxDB Cloud](https://cloud2.influxdata.com/).
|
||||
|
||||
- To use social sign-on, click **Google** or **Microsoft**.
|
||||
Note that social sign-on does not support email aliases.
|
||||
- Sign up with email by entering your name, email address, and password,
|
||||
and then click **Create Account**.
|
||||
|
||||
If you originally signed up with email but want to enable social sign-on (SSO),
|
||||
log in through your SSO provider using the same email address you used to
|
||||
create your {{< product-name >}} account.
|
||||
|
||||
#### Subscribe through a cloud provider
|
||||
|
||||
To subscribe to an InfluxDB Cloud Serverless **Usage-Based** plan and pay
|
||||
through your **Amazon Web Services (AWS)** account:
|
||||
<!-- , **Microsoft Azure**, or **Google Cloud Platform (GCP)** -->
|
||||
|
||||
<!-- - **AWS** -->
|
||||
|
||||
1. Sign in to AWS, navigate to the [InfluxDB Cloud product on AWS Marketplace](https://aws.amazon.com/marketplace/pp/B08234JZPS/?href=_ptnr_web_docs_gettingstarted),
|
||||
and follow the prompts to subscribe.
|
||||
2. After you click **Set Up Your Account**, enter your credentials, and
|
||||
then click **Start Now**.
|
||||
|
||||
All usage charges will be paid through the subscribed AWS account.
|
||||
|
||||
<!-- - **Microsoft**
|
||||
Sign in to Microsoft Azure, navigate to the [InfluxDB Cloud product on Azure Marketplace](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/influxdata.influxdb-cloud?ocid=iflxdbcloud_influxdata_docs_gettingstarted),
|
||||
and follow the prompts to subscribe. After you click **Set Up Your Account**,
|
||||
enter your credentials, and then click **Start Now**.
|
||||
All usage charges will be paid through the subscribed Microsoft account.
|
||||
|
||||
- **GCP**
|
||||
Sign in to GCP, navigate to the [InfluxDB Cloud product on GCP Marketplace](https://console.cloud.google.com/marketplace/details/influxdata-public/cloud2-gcp-marketplace-prod?utm_campaign=influxdb-cloud&utm_medium=docs&utm_source=influxdata),
|
||||
and follow the prompts to subscribe. After you click **Set Up Your Account**,
|
||||
enter your credentials, and then click **Start Now**.
|
||||
All usage charges will be paid through the subscribed GCP account. -->
|
||||
|
||||
{{%note%}}
|
||||
Currently, we do **not support** using an existing InfluxDB Cloud account to
|
||||
sign up for an InfluxDB Cloud plan through the AWS Marketplace.
|
||||
|
||||
<!-- Currently, we do **not support** using an existing InfluxDB Cloud account to
|
||||
sign up for an InfluxDB Cloud plan through AWS, Microsoft, or GCP Marketplaces. -->
|
||||
{{%/note%}}
|
||||
|
||||
2. If you signed up with your email address, InfluxDB Cloud requires email
|
||||
verification to complete the sign up process.
|
||||
Verify your email address by opening the email sent to the address you
|
||||
provided and clicking **Verify Your Email**.
|
||||
3. (If you subscribed through InfluxData) Choose your cloud provider.
|
||||
4. Select a provider and region for your {{< product-name >}} instance.
|
||||
The following are available:
|
||||
|
||||
{{< cloud_regions type="iox-list" >}}
|
||||
|
||||
5. Enter your company name.
|
||||
6. (If you subscribed through InfluxData) Review the terms of the agreement,
|
||||
and then select **I have viewed and agree to InfluxDB Cloud Services Subscription Agreement and InfluxData Global Data Processing Agreement**.
|
||||
For details on the agreements, see the [InfluxDB Cloud: Services Subscription Agreement](https://www.influxdata.com/legal/terms-of-use/)
|
||||
and the [InfluxData Global Data Processing Agreement](https://www.influxdata.com/legal/influxdata-global-data-processing-agreement/).
|
||||
|
||||
7. Click **Continue**, and then choose your plan:
|
||||
|
||||
- To upgrade to a Usage-Based plan, click **Upgrade Now**, set your limits
|
||||
(you may opt to receive an email when your usage exceeds the amount you
|
||||
enter in the **Limit ($1 minimum)** field).
|
||||
Next, enter your payment information and billing address, and then click **Upgrade**.
|
||||
A Ready To Rock confirmation appears; click **Start building your team**.
|
||||
Your plan will be upgraded and {{< product-name >}} opens with a default
|
||||
organization and bucket (both created from your email address).
|
||||
To review your usage and billing details at any time, see how to
|
||||
[access billing details](/influxdb/cloud-serverless/admin/billing/#access-billing-details).
|
||||
- To keep the free plan, click **Keep**.
|
||||
{{< product-name >}} opens with a default organization and bucket
|
||||
(both created from your email address).
|
||||
_To update organization and bucket names, see [Update an organization](/influxdb/cloud-serverless/admin/organizations/update-org/)
|
||||
and [Update a bucket](/influxdb/cloud-serverless/admin/buckets/update-bucket/#update-a-buckets-name-in-the-influxdb-ui)._
|
||||
- To upgrade to an Annual plan, click **Contact Sales**, enter your information,
|
||||
and then click **Send**. Our team will contact you as soon as possible.
|
||||
|
||||
## (Optional) Download, install, and use the influx CLI
|
||||
|
||||
To use the `influx` CLI to manage and interact with your InfluxDB Cloud instance,
|
||||
complete the following steps:
|
||||
|
||||
{{< tabs-wrapper >}}
|
||||
{{% tabs %}}
|
||||
[macOS](#)
|
||||
[Linux](#)
|
||||
[Windows](#)
|
||||
{{% /tabs %}}
|
||||
|
||||
<!-------------------------------- BEGIN macOS -------------------------------->
|
||||
{{% tab-content %}}
|
||||
|
||||
#### Step 1: Download influx CLI for macOS
|
||||
|
||||
Click the following button to download and install `influx` CLI for macOS.
|
||||
|
||||
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64.tar.gz" download>influx CLI (macOS)</a>
|
||||
|
||||
#### Step 2: Unpackage the influx binary
|
||||
|
||||
**Note:** The commands below are examples. Adjust the file names, paths, and utilities to your own needs.
|
||||
|
||||
To unpackage the downloaded archive, **double click the archive file in Finder**
|
||||
or run the following command in a macOS command prompt application such
|
||||
**Terminal** or **[iTerm2](https://www.iterm2.com/)**:
|
||||
|
||||
```sh
|
||||
# Unpackage contents to the current working directory
|
||||
tar zxvf ~/Downloads/influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64.tar.gz
|
||||
```
|
||||
|
||||
#### Step 3: (Optional) Place the binary in your $PATH
|
||||
|
||||
If you choose, you can place `influx` in your `$PATH` or you can
|
||||
prefix the executable with `./` to run in place. If the binary is on your $PATH, you can run `influx` from any directory. Otherwise, you must specify the location of the CLI (for example, `./influx`or `path/to/influx`).
|
||||
|
||||
**Note:** If you have the 1.x binary on your $PATH, moving the 2.0 binary to your $PATH will overwrite the 1.x binary because they have the same name.
|
||||
|
||||
```sh
|
||||
# Copy the influx binary to your $PATH
|
||||
sudo cp influxdb2-client-{{< latest-patch cli=true >}}-darwin-amd64/influx /usr/local/bin/
|
||||
```
|
||||
|
||||
{{% note %}}
|
||||
If you rename the binary, all references to `influx` in this documentation refer to the renamed binary.
|
||||
{{% /note %}}
|
||||
|
||||
#### Step 4: (macOS Catalina and newer) Authorize InfluxDB binaries
|
||||
|
||||
If running `influx` on macOS Catalina, you must manually authorize the
|
||||
`influx` binary in the **Security & Privacy** section of **System Preferences**.
|
||||
|
||||
#### Step 5: Set up a configuration profile
|
||||
|
||||
To avoid having to pass your InfluxDB [API token](/influxdb/cloud/admin/tokens/) with each `influx` command, set up a configuration profile that stores your credentials.
|
||||
|
||||
In a terminal, run the following command:
|
||||
|
||||
```sh
|
||||
# Set up a configuration profile
|
||||
influx config create -n default \
|
||||
-u https://cloud2.influxdata.com \
|
||||
-o example-org \
|
||||
-t mySuP3rS3cr3tT0keN \
|
||||
-a
|
||||
```
|
||||
|
||||
This configures a new profile named `default` and makes the profile active so your `influx` CLI commands run against this instance.
|
||||
For more detail, see [influx config](/influxdb/cloud/reference/cli/influx/config/).
|
||||
|
||||
#### Step 6: Learn `influx` CLI commands
|
||||
|
||||
To see all available `influx` commands, type `influx -h` or check out [influx - InfluxDB command line interface](/influxdb/cloud/reference/cli/influx/).
|
||||
|
||||
{{% /tab-content %}}
|
||||
<!--------------------------------- END macOS --------------------------------->
|
||||
|
||||
<!-------------------------------- BEGIN Linux -------------------------------->
|
||||
{{% tab-content %}}
|
||||
|
||||
#### Step 1: Download influx CLI for Linux
|
||||
|
||||
Click one of the following buttons to download and install the `influx` CLI appropriate for your chipset.
|
||||
|
||||
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-cli >}}-linux-amd64.tar.gz" download >influx CLI (amd64)</a>
|
||||
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-cli >}}-linux-arm64.tar.gz" download >influx CLI (arm)</a>
|
||||
|
||||
#### Step 2: Unpackage the influx binary
|
||||
|
||||
**Note:** The commands below are examples. Adjust the file names, paths, and utilities to your own needs.
|
||||
|
||||
```sh
|
||||
# Unpackage contents to the current working directory
|
||||
tar xvfz influxdb2-client-{{< latest-cli >}}-linux-amd64.tar.gz
|
||||
```
|
||||
|
||||
#### Step 3: (Optional) Place the binary in your $PATH
|
||||
|
||||
If you choose, you can place `influx` in your `$PATH` or you can
|
||||
prefix the executable with `./` to run in place. If the binary is on your $PATH, you can run `influx` from any directory. Otherwise, you must specify the location of the CLI (for example, `./influx`or `path/to/influx`).
|
||||
|
||||
**Note:** If you have the 1.x binary on your $PATH, moving the 2.0 binary to your $PATH will overwrite the 1.x binary because they have the same name.
|
||||
|
||||
```sh
|
||||
# Copy the influx and influxd binary to your $PATH
|
||||
sudo cp influxdb2-client-{{< latest-cli >}}-linux-amd64/influx /usr/local/bin/
|
||||
```
|
||||
|
||||
{{% note %}}
|
||||
If you rename the binary, all references to `influx` in this documentation refer to the renamed binary.
|
||||
{{% /note %}}
|
||||
|
||||
#### Step 4: Set up a configuration profile
|
||||
|
||||
To avoid having to pass your InfluxDB [API token](/influxdb/cloud/admin/tokens/) with each `influx` command, set up a configuration profile that stores your credentials.
|
||||
|
||||
In a terminal, run the following command:
|
||||
|
||||
```sh
|
||||
# Set up a configuration profile
|
||||
influx config create -n default \
|
||||
-u https://cloud2.influxdata.com \
|
||||
-o example-org \
|
||||
-t mySuP3rS3cr3tT0keN \
|
||||
-a
|
||||
```
|
||||
|
||||
This configures a new profile named `default` and makes the profile active so your `influx` CLI commands run against this instance.
|
||||
For more detail, see [influx config](/influxdb/cloud/reference/cli/influx/config/).
|
||||
|
||||
#### Step 5: Learn `influx` CLI commands
|
||||
|
||||
To see all available `influx` commands, type `influx -h` or check out [influx - InfluxDB command line interface](/influxdb/cloud/reference/cli/influx/).
|
||||
|
||||
{{% /tab-content %}}
|
||||
<!--------------------------------- END Linux --------------------------------->
|
||||
|
||||
<!-------------------------------- BEGIN Windows -------------------------------->
|
||||
{{% tab-content %}}
|
||||
|
||||
#### Step 1: Download influx CLI for Windows
|
||||
|
||||
Click the following button to download and install `influx` CLI for Windows.
|
||||
|
||||
<a class="btn download" href="https://dl.influxdata.com/influxdb/releases/influxdb2-client-{{< latest-patch cli=true >}}-windows-amd64.zip" download>influx CLI (Windows)</a>
|
||||
|
||||
#### Step 2: Expand the downloaded archive
|
||||
|
||||
Expand the downloaded archive into `C:\Program Files\InfluxData\influxdb`.
|
||||
|
||||
#### Step 3: Grant network access
|
||||
|
||||
When using the `influx` CLI for the first time, Windows Defender will appear with the following message: `Windows Defender Firewall has blocked some features of this app.`
|
||||
|
||||
1. Select **Private networks, such as my home or work network**.
|
||||
2. Click **Allow access**.
|
||||
|
||||
#### Step 4: Learn `influx` CLI commands
|
||||
|
||||
To see all available `influx` commands, type `influx -h` or check out [influx - InfluxDB command line interface](/influxdb/cloud/reference/cli/influx/).
|
||||
|
||||
{{% /tab-content %}}
|
||||
<!--------------------------------- END Windows --------------------------------->
|
||||
{{< /tabs-wrapper >}}
|
||||
|
||||
## Sign in
|
||||
|
||||
Sign in to [{{< product-name >}}](https://cloud2.influxdata.com) using your
|
||||
email address and password.
|
||||
|
||||
<a class="btn" href="https://cloud2.influxdata.com">Sign in to {{< product-name >}} now</a>
|
||||
|
||||
## Get started working with data
|
||||
|
||||
To learn how to get started working with time series data, see [Get Started](/influxdb/cloud-serverless/get-started).
|
|
@ -8,12 +8,10 @@ menu:
|
|||
influxdb_cloud_serverless:
|
||||
name: Write data
|
||||
influxdb/cloud-serverless/tags: [write, line protocol]
|
||||
# related:
|
||||
# - /influxdb/cloud/api/#tag/Write, InfluxDB API /write endpoint
|
||||
# - /influxdb/cloud/reference/syntax/line-protocol
|
||||
# - /influxdb/cloud/reference/syntax/annotated-csv
|
||||
# - /influxdb/cloud/reference/cli/influx/write
|
||||
# - /resources/videos/ingest-data/, How to Ingest Data in InfluxDB (Video)
|
||||
related:
|
||||
- /influxdb/cloud-serverless/api/#tag/Write, InfluxDB API /write endpoint
|
||||
- /influxdb/cloud-serverless/reference/syntax/line-protocol
|
||||
- /influxdb/cloud-serverless/reference/cli/influx/write
|
||||
---
|
||||
|
||||
Write data to {{% product-name %}} using the following tools and methods:
|
||||
|
|
|
@ -45,7 +45,7 @@ Write requests return the following status codes:
|
|||
| :-------------------------------| :-----------------------------------------------------------------------| :------------- |
|
||||
| `204 "Success"` | | If InfluxDB ingested the data |
|
||||
| `400 "Bad request"` | `message` contains the first malformed line | If request data is malformed |
|
||||
| `401 "Unauthorized"` | | If the `Authorization` header is missing or malformed or if the [token](/influxdb/cloud-serverless/admin/tokens/) doesn't have [permission](/influxdb/cloud-serverless/reference/cli/influxctl/token/create/#examples) to write to the database. See [examples using credentials](/influxdb/cloud-serverless/get-started/write/#write-line-protocol-to-influxdb) in write requests. |
|
||||
| `401 "Unauthorized"` | | If the `Authorization` header is missing or malformed or if the [token](/influxdb/cloud-serverless/admin/tokens/) doesn't have [permission](/influxdb/cloud-serverless/admin/tokens/create-token/) to write to the database. See [examples using credentials](/influxdb/cloud-serverless/get-started/write/#write-line-protocol-to-influxdb) in write requests. |
|
||||
| `404 "Not found"` | requested **resource type** (for example, "organization" or "database"), and **resource name** | If a requested resource (for example, organization or database) wasn't found |
|
||||
| `413 “Request too large”` | cannot read data: points in batch is too large | If a request exceeds the maximum [global limit](/influxdb/cloud-serverless/admin/billing/limits/) |
|
||||
| `429 “Too many requests”` | `Retry-After` header: xxx (seconds to wait before retrying the request) | If a request exceeds your plan's [adjustable service quotas](/influxdb/cloud-serverless/admin/billing/limits/#adjustable-service-quotas) |
|
||||
|
|
|
@ -38,13 +38,12 @@ Learn how to upgrade your plan, access billing details, and review and resolve p
|
|||
|
||||
## Access billing details
|
||||
|
||||
1. In the {{< product-name "short" >}} UI, select the **user avatar** in the left
|
||||
navigation menu, and select **Account** >
|
||||
**Billing**.
|
||||
1. In the top navigation menu, click the drop-down menu with the same of your
|
||||
account.
|
||||
|
||||
{{< nav-icon "account" >}}
|
||||
2. Click **{{% icon "billing" %}} Billing**.
|
||||
|
||||
2. Do one of the following:
|
||||
3. Do one of the following:
|
||||
- If you subscribed to an InfluxDB Cloud plan through [**AWS Marketplace**](https://aws.amazon.com/marketplace/pp/B08234JZPS), [**Azure Marketplace**](https://azuremarketplace.microsoft.com/en-us/marketplace/apps/influxdata.influxdb-cloud), or [**GCP Marketplace**](https://console.cloud.google.com/marketplace/details/influxdata-public/cloud2-gcp-marketplace-prod?pli=1), click the **AWS**, **Microsoft**, or **GCP** link to access your billing and subscription information.
|
||||
|
||||
- If you subscribed to an InfluxDB Cloud plan through **InfluxData**, complete the following procedures as needed:
|
||||
|
@ -53,7 +52,7 @@ Learn how to upgrade your plan, access billing details, and review and resolve p
|
|||
- [Add or update your contact information](#add-or-update-your-contact-information)
|
||||
- [Send notifications when usage exceeds an amount](#send-notifications-when-usage-exceeds-an-amount)
|
||||
|
||||
3. View information about:
|
||||
4. View information about:
|
||||
|
||||
- [Usage-Based Plan](#view-usage-based-plan-information)
|
||||
- [Free Plan](#view-free-plan-information)
|
||||
|
|
|
@ -71,7 +71,7 @@ To write historical data older than 30 days, retain data for more than 30 days,
|
|||
- Unlimited checks
|
||||
- Unlimited notification rules
|
||||
- Unlimited notification endpoints for [all endpoints](/flux/v0.x/tags/notification-endpoints/)
|
||||
- **Storage**: Set your retention period to unlimited or up to 1 year by [updating a bucket’s retention period in the InfluxDB UI](/influxdb/cloud/organizations/buckets/update-bucket/#update-a-buckets-retention-period-in-the-influxdb-ui), or [set a custom retention period](/influxdb/cloud/organizations/buckets/update-bucket/#update-a-buckets-retention-period) using the [`influx` CLI](/influxdb/cloud/reference/cli/influx/).
|
||||
- **Storage**: Set your retention period to unlimited or up to 1 year by [updating a bucket’s retention period in the InfluxDB UI](/influxdb/cloud/admin/buckets/update-bucket/#update-a-buckets-retention-period-in-the-influxdb-ui), or [set a custom retention period](/influxdb/cloud/admin/buckets/update-bucket/#update-a-buckets-retention-period) using the [`influx` CLI](/influxdb/cloud/reference/cli/influx/).
|
||||
|
||||
## Global limits
|
||||
|
||||
|
|
|
@ -57,7 +57,7 @@ To export all your data, query your data out in time-based batches and store it
|
|||
in to an external system or an InfluxDB OSS instance.
|
||||
|
||||
For information about automatically exporting and migrating data from InfluxDB
|
||||
Cloud to InfluxDB OSS, see: [Migrate data from InfluxDB Cloud to InfluxDB OSS](/influxdb/cloud/migrate-data/migrate-cloud-to-oss/).
|
||||
Cloud to InfluxDB OSS, see: [Migrate data from InfluxDB Cloud to InfluxDB OSS](/influxdb/cloud/write-data/migrate-data/migrate-cloud-to-oss/).
|
||||
|
||||
### Cancel service
|
||||
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
---
|
||||
title: Administer InfluxDB Cloud
|
||||
description: >
|
||||
Use the InfluxDB API, user interface (UI), and CLIs to perform administrative
|
||||
tasks in InfluxDB Cloud (TSM).
|
||||
menu: influxdb_cloud
|
||||
weight: 18
|
||||
---
|
||||
|
||||
Use the InfluxDB API, user interface (UI), and CLIs to perform administrative
|
||||
tasks in InfluxDB Cloud (TSM).
|
||||
|
||||
{{< children >}}
|
|
@ -5,9 +5,11 @@ description: Manage buckets in InfluxDB using the InfluxDB UI or the influx CLI.
|
|||
menu:
|
||||
influxdb_cloud:
|
||||
name: Manage buckets
|
||||
parent: Manage organizations
|
||||
weight: 105
|
||||
parent: Administer InfluxDB Cloud
|
||||
weight: 11
|
||||
influxdb/cloud/tags: [buckets]
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/
|
||||
alt_links:
|
||||
cloud-serverless: /influxdb/cloud-serverless/admin/buckets/
|
||||
cloud-dedicated: /influxdb/cloud-dedicated/admin/databases/
|
|
@ -8,6 +8,8 @@ menu:
|
|||
parent: Manage buckets
|
||||
weight: 250
|
||||
influxdb/cloud/tags: [buckets, bucket-schema, bucket schemas, explicit bucket schemas, schema]
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/bucket-schema/
|
||||
related:
|
||||
- /influxdb/cloud/reference/key-concepts/
|
||||
- /influxdb/cloud/reference/key-concepts/data-schema/
|
||||
|
@ -50,7 +52,7 @@ The examples below reference [**InfluxDB data elements**](/influxdb/cloud/refere
|
|||
|
||||
To create an explicit bucket and schemas for your data, do the following:
|
||||
|
||||
1. If you haven't already, [create a bucket that enforces explicit schemas](/influxdb/cloud/organizations/buckets/create-bucket/#create-a-bucket-that-enforces-explicit-schemas).
|
||||
1. If you haven't already, [create a bucket that enforces explicit schemas](/influxdb/cloud/admin/organizations/buckets/create-bucket/#create-a-bucket-that-enforces-explicit-schemas).
|
||||
2. [Create a bucket schema](#create-a-bucket-schema).
|
||||
|
||||
### Create a bucket schema
|
||||
|
@ -202,7 +204,7 @@ Use the **InfluxDB UI**, [**`influx` CLI**](/influxdb/cloud/reference/cli/influx
|
|||
|
||||
### View schema type and schemas in the InfluxDB UI
|
||||
|
||||
1. [View buckets](/influxdb/cloud/organizations/buckets/view-buckets/).
|
||||
1. [View buckets](/influxdb/cloud/admin/organizations/buckets/view-buckets/).
|
||||
2. In the list of buckets, see the **Schema Type** in the metadata that follows each bucket name.
|
||||
3. Buckets with **Schema Type: Explicit** display the {{< caps >}}Show Schema{{< /caps>}} button. Click {{< caps >}}Show Schema{{< /caps>}} to view measurement schemas for the bucket.
|
||||
|
||||
|
@ -277,7 +279,7 @@ You can't modify or delete columns in bucket schemas.
|
|||
### Bucket not found
|
||||
|
||||
Creating and updating bucket schema requires `WRITE` permission for the bucket.
|
||||
If your [API token](/influxdb/cloud/security/tokens/) doesn't have `WRITE` permission for the bucket, InfluxDB returns the following error:
|
||||
If your [API token](/influxdb/cloud/admin/tokens/) doesn't have `WRITE` permission for the bucket, InfluxDB returns the following error:
|
||||
|
||||
```sh
|
||||
Error: bucket "my_explicit_bucket" not found
|
|
@ -9,6 +9,8 @@ menu:
|
|||
name: Create a bucket
|
||||
parent: Manage buckets
|
||||
weight: 201
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/create-bucket/
|
||||
alt_links:
|
||||
cloud-serverless: /influxdb/cloud-serverless/admin/buckets/create-bucket/
|
||||
cloud-dedicated: /influxdb/cloud-dedicated/admin/databases/create/
|
||||
|
@ -109,7 +111,7 @@ To create a bucket with the InfluxDB HTTP API, send a request to the following e
|
|||
Include the following in your request:
|
||||
|
||||
- **Headers:**
|
||||
- **Authorization:** `Token` scheme with your InfluxDB [API token](/influxdb/cloud/security/tokens/)
|
||||
- **Authorization:** `Token` scheme with your InfluxDB [API token](/influxdb/cloud/admin/tokens/)
|
||||
- **Content-type:** `application/json`
|
||||
- **Request body:** JSON object with the following fields:
|
||||
{{< req type="key" >}}
|
||||
|
@ -138,7 +140,7 @@ _For information about **InfluxDB API options and response codes**, see
|
|||
|
||||
## Create a bucket that enforces explicit schemas
|
||||
|
||||
A bucket with the `explicit` schema-type enforces [measurement schemas that you define for the bucket](/influxdb/cloud/organizations/buckets/bucket-schema/) and rejects writes that don't conform to any of the schemas.
|
||||
A bucket with the `explicit` schema-type enforces [measurement schemas that you define for the bucket](/influxdb/cloud/admin/organizations/buckets/bucket-schema/) and rejects writes that don't conform to any of the schemas.
|
||||
|
||||
Use the **`influx` CLI** or **InfluxDB HTTP API** to create a bucket with the `explicit` schema-type.
|
||||
|
||||
|
@ -186,7 +188,7 @@ endpoint and set the `schemaType` property value to `explicit` in the request bo
|
|||
{{% /tab-content %}}
|
||||
{{< /tabs-wrapper >}}
|
||||
|
||||
Next, see how to [create an explicit bucket schema](/influxdb/cloud/organizations/buckets/bucket-schema/) for a measurement.
|
||||
Next, see how to [create an explicit bucket schema](/influxdb/cloud/admin/organizations/buckets/bucket-schema/) for a measurement.
|
||||
|
||||
## Bucket naming restrictions
|
||||
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Delete a bucket
|
||||
parent: Manage buckets
|
||||
weight: 203
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/delete-bucket/
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Update a bucket
|
||||
parent: Manage buckets
|
||||
weight: 202
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/update-bucket/
|
||||
alt_links:
|
||||
cloud-serverless: /influxdb/cloud-serverless/admin/buckets/update-bucket/
|
||||
---
|
||||
|
@ -36,7 +38,7 @@ If you change a bucket name, be sure to update the bucket name in the above plac
|
|||
|
||||
{{% note %}}
|
||||
For information about permitted bucket names, see
|
||||
[bucket naming restrictions](/influxdb/cloud/organizations/buckets/create-bucket/#bucket-naming-restrictions).
|
||||
[bucket naming restrictions](/influxdb/cloud/admin/organizations/buckets/create-bucket/#bucket-naming-restrictions).
|
||||
{{% /note %}}
|
||||
|
||||
## Update a bucket's retention period in the InfluxDB UI
|
||||
|
@ -113,7 +115,7 @@ Updating a bucket requires the following:
|
|||
|
||||
You can update the following bucket properties:
|
||||
|
||||
- name _(see [bucket naming restrictions](/influxdb/cloud/organizations/buckets/create-bucket/#bucket-naming-restrictions))_
|
||||
- name _(see [bucket naming restrictions](/influxdb/cloud/admin/organizations/buckets/create-bucket/#bucket-naming-restrictions))_
|
||||
- description
|
||||
- retention rules
|
||||
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: View buckets
|
||||
parent: Manage buckets
|
||||
weight: 202
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/buckets/view-buckets/
|
||||
alt_links:
|
||||
cloud-serverless: /influxdb/cloud-serverless/admin/buckets/view-buckets/
|
||||
cloud-dedicated: /influxdb/cloud-dedicated/admin/databases/list/
|
|
@ -5,8 +5,11 @@ description: Manage organizations in InfluxDB using the InfluxDB UI or the influ
|
|||
menu:
|
||||
influxdb_cloud:
|
||||
name: Manage organizations
|
||||
parent: Administer InfluxDB Cloud
|
||||
weight: 10
|
||||
influxdb/cloud/tags: [organizations]
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/
|
||||
related:
|
||||
- /influxdb/cloud/account-management/
|
||||
alt_links:
|
|
@ -7,9 +7,11 @@ menu:
|
|||
name: Delete your organization
|
||||
parent: Manage organizations
|
||||
weight: 104
|
||||
admin:
|
||||
- /influxdb/cloud/organizations/delete-org/
|
||||
---
|
||||
|
||||
The process of deleting your organization from InfluxDB cloud depends on your
|
||||
The process of deleting your organization from {{< product-name >}} depends on your
|
||||
[InfluxDB Cloud pricing plan](/influxdb/cloud/account-management/pricing-plans/).
|
||||
|
||||
- [Free plan](#free-plan)
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Replicate an organization
|
||||
parent: Manage organizations
|
||||
weight: 110
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/migrate-org/
|
||||
---
|
||||
|
||||
The state of an organization consists of metadata (dashboards, buckets, and other resources) and data (time-series).
|
||||
|
@ -17,9 +19,9 @@ To replicate the state of an organization:
|
|||
1. Create a new organization using the [InfluxDB Cloud sign up page](https://cloud2.influxdata.com/signup).
|
||||
Use a different email address for the new organization.
|
||||
2. **Replicate metadata**.
|
||||
Use an [InfluxDB template](/influxdb/cloud/influxdb-templates/create/) to migrate metadata resources.
|
||||
Use an [InfluxDB template](/influxdb/cloud/tools/influxdb-templates/create/) to migrate metadata resources.
|
||||
Export all resources, like dashboards and buckets, to a template manifest
|
||||
with [`influx export all`](/influxdb/cloud/influxdb-templates/create/#export-all-resources).
|
||||
with [`influx export all`](/influxdb/cloud/tools/influxdb-templates/create/#export-all-resources).
|
||||
Then, [apply the template](/influxdb/cloud/reference/cli/influx/apply/#examples-how-to-apply-a-template-or-stack)
|
||||
to the new organization.
|
||||
3. **Replicate data**.
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Update an organization
|
||||
parent: Manage organizations
|
||||
weight: 103
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/update-org/
|
||||
---
|
||||
|
||||
Use the `influx` command line interface (CLI) or the InfluxDB user interface (UI) to update an organization.
|
|
@ -14,6 +14,7 @@ aliases:
|
|||
- /influxdb/cloud/account-management/multi-user/invite-user/
|
||||
- /influxdb/cloud/account-management/multi-user/remove-user/
|
||||
- /influxdb/cloud/users/
|
||||
- /influxdb/cloud/organizations/users/
|
||||
---
|
||||
|
||||
{{< product-name >}} lets you invite and collaborate with multiple users in your organization.
|
||||
|
@ -26,15 +27,17 @@ By default, each user has full permissions on resources in your organization.
|
|||
- [Remove a user from your organization](#remove-a-user-from-your-organization)
|
||||
|
||||
{{% note %}}
|
||||
If you have multiple users, we recommend creating a system account for administrative purposes. For example, if you have applications writing to InfluxDB, ensure the applications use the system account credentials.
|
||||
If you have multiple users, we recommend creating a system account for administrative purposes.
|
||||
For example, if you have applications writing to InfluxDB, ensure the applications
|
||||
use the system account credentials.
|
||||
{{% /note %}}
|
||||
|
||||
## Members page
|
||||
Manage your organization's users from your organization's **Members page**.
|
||||
In the {{< product-name "short" >}} user interface (UI), click your user avatar in the left
|
||||
navigation menu, and select **Organization** > **Members**.
|
||||
|
||||
{{< nav-icon "account" >}}
|
||||
Manage your organization's users from your organization's **Members page**.
|
||||
In the {{< product-name "short" >}} user interface (UI), click the drop down
|
||||
menu with your organization's name in the top navigation menu and select
|
||||
**{{% icon "members" %}} Members**.
|
||||
|
||||
## Invite a user to your organization
|
||||
|
||||
|
@ -50,7 +53,7 @@ Take care when inviting a user.
|
|||
{{% /note %}}
|
||||
|
||||
_Users must be invited one at a time._
|
||||
3. Click **{{< icon "plus" >}} {{< caps >}}Add & Invite{{< /caps >}}**.
|
||||
3. Click **{{< icon "plus" >}} {{< caps >}}Add{{< /caps >}}**.
|
||||
|
||||
An invitation with an activation link is sent to the specified email address.
|
||||
The activation link expires after 72 hours.
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: View organizations
|
||||
parent: Manage organizations
|
||||
weight: 102
|
||||
aliases:
|
||||
- /influxdb/cloud/organizations/view-orgs/
|
||||
---
|
||||
|
||||
Use the InfluxDB user interface (UI) or the `influx` command line interface (CLI)
|
|
@ -1,13 +1,14 @@
|
|||
---
|
||||
title: Manage secrets
|
||||
description: Manage and use secrets in InfluxDB Cloud.
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/use-vault/
|
||||
influxdb/cloud/tags: [secrets, security]
|
||||
menu:
|
||||
influxdb_cloud:
|
||||
parent: Security & authorization
|
||||
weight: 201
|
||||
parent: Administer InfluxDB Cloud
|
||||
weight: 12
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/use-vault/
|
||||
- /influxdb/cloud/security/secrets/
|
||||
---
|
||||
|
||||
Manage secrets using any of the following:
|
|
@ -8,6 +8,7 @@ menu:
|
|||
weight: 301
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/manage-secrets/add/
|
||||
- /influxdb/cloud/security/secrets/add/
|
||||
---
|
||||
|
||||
Add secrets using the {{< product-name "short" >}} UI, `influx` command line interface (CLI) or the InfluxDB API.
|
||||
|
@ -57,8 +58,8 @@ add a new secret to your organization.
|
|||
|
||||
**Include the following:**
|
||||
|
||||
- Your [organization ID](/influxdb/cloud/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/security/tokens/view-tokens/) in the `Authorization` header
|
||||
- Your [organization ID](/influxdb/cloud/admin/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/admin/tokens/view-tokens/) in the `Authorization` header
|
||||
- The secret key-value pair in the request body
|
||||
|
||||
<!-- -->
|
|
@ -8,6 +8,7 @@ menu:
|
|||
weight: 304
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/manage-secrets/delete/
|
||||
- /influxdb/cloud/security/secrets/delete/
|
||||
---
|
||||
|
||||
Delete secrets using the {{< product-name "short" >}} UI, `influx` command line interface (CLI) or the InfluxDB API.
|
||||
|
@ -44,8 +45,8 @@ to delete one or more secrets.
|
|||
|
||||
**Include the following:**
|
||||
|
||||
- Your [organization ID](/influxdb/cloud/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/security/tokens/view-tokens/) in the `Authorization` header
|
||||
- Your [organization ID](/influxdb/cloud/admin/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/admin/tokens/view-tokens/) in the `Authorization` header
|
||||
- An array of secret keys to delete in the request body
|
||||
|
||||
<!-- -->
|
|
@ -8,6 +8,7 @@ menu:
|
|||
weight: 303
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/manage-secrets/update/
|
||||
- /influxdb/cloud/security/secrets/update/
|
||||
---
|
||||
|
||||
Update secrets using the {{< product-name "short" >}} UI, `influx` command line interface (CLI) or the InfluxDB API.
|
||||
|
@ -52,8 +53,8 @@ to update a secret in your organization.
|
|||
|
||||
**Include the following:**
|
||||
|
||||
- Your [organization ID](/influxdb/cloud/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/security/tokens/view-tokens/) in the `Authorization` header
|
||||
- Your [organization ID](/influxdb/cloud/admin/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/admin/tokens/view-tokens/) in the `Authorization` header
|
||||
- The updated secret key-value pair in the request body
|
||||
|
||||
<!-- -->
|
|
@ -8,6 +8,7 @@ menu:
|
|||
weight: 305
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/manage-secrets/use/
|
||||
- /influxdb/cloud/security/secrets/use/
|
||||
---
|
||||
|
||||
Use secrets in a Flux query to pass sensitive data like credentials.
|
|
@ -8,6 +8,7 @@ menu:
|
|||
weight: 302
|
||||
aliases:
|
||||
- /influxdb/cloud/security/secrets/manage-secrets/view/
|
||||
- /influxdb/cloud/security/secrets/view/
|
||||
---
|
||||
|
||||
View secret keys using the {{< product-name "short" >}} UI, `influx` command line interface (CLI) or the InfluxDB API.
|
||||
|
@ -26,9 +27,9 @@ Only the keys will be shown, not the values.
|
|||
{{< nav-icon "settings" >}}
|
||||
2. Click on the **Secrets** tab.
|
||||
|
||||
From here, you can [add](/influxdb/cloud/security/secrets/manage-secrets/add/#add-a-secret-using-the-influxdb-cloud-ui),
|
||||
[update](/influxdb/cloud/security/secrets/manage-secrets/update/#update-a-secret-using-the-influxdb-cloud-ui),
|
||||
and [delete](/influxdb/cloud/security/secrets/manage-secrets/delete/#delete-a-secret-using-the-influxdb-cloud-ui) secrets.
|
||||
From here, you can [add](/influxdb/cloud/admin/secrets/manage-secrets/add/#add-a-secret-using-the-influxdb-cloud-ui),
|
||||
[update](/influxdb/cloud/admin/secrets/manage-secrets/update/#update-a-secret-using-the-influxdb-cloud-ui),
|
||||
and [delete](/influxdb/cloud/admin/secrets/manage-secrets/delete/#delete-a-secret-using-the-influxdb-cloud-ui) secrets.
|
||||
|
||||
## View secret keys using the influx CLI
|
||||
Use the [`influx secret list` command](/influxdb/cloud/reference/cli/influx/secret/list/)
|
||||
|
@ -44,8 +45,8 @@ to view your organization's secrets keys.
|
|||
|
||||
**Include the following:**
|
||||
|
||||
- Your [organization ID](/influxdb/cloud/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/security/tokens/view-tokens/) in the `Authorization` header
|
||||
- Your [organization ID](/influxdb/cloud/admin/organizations/view-orgs/#view-your-organization-id) in the request URL
|
||||
- Your [API token](/influxdb/cloud/admin/tokens/view-tokens/) in the `Authorization` header
|
||||
|
||||
<!-- -->
|
||||
```sh
|
|
@ -2,14 +2,15 @@
|
|||
title: Manage API tokens
|
||||
seotitle: Manage API tokens in InfluxDB
|
||||
description: Manage API tokens in InfluxDB using the InfluxDB UI or the influx CLI.
|
||||
aliases:
|
||||
- /influxdb/cloud/users/tokens
|
||||
influxdb/cloud/tags: [tokens, authentication, security]
|
||||
menu:
|
||||
influxdb_cloud:
|
||||
name: Manage tokens
|
||||
parent: Security & authorization
|
||||
weight: 103
|
||||
parent: Administer InfluxDB Cloud
|
||||
weight: 11
|
||||
aliases:
|
||||
- /influxdb/cloud/users/tokens
|
||||
- /influxdb/cloud/security/tokens/
|
||||
---
|
||||
|
||||
InfluxDB **API tokens** ensure secure interaction between users and data.
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Create a token
|
||||
parent: Manage tokens
|
||||
weight: 201
|
||||
aliases:
|
||||
- /influxdb/cloud/security/tokens/create-token/
|
||||
alt_links:
|
||||
cloud-serverless: /influxdb/cloud-serverless/admin/tokens/create-token
|
||||
cloud-dedicated: /influxdb/cloud-dedicated/admin/tokens/create
|
|
@ -7,6 +7,8 @@ menu:
|
|||
name: Delete a token
|
||||
parent: Manage tokens
|
||||
weight: 204
|
||||
aliases:
|
||||
- /influxdb/cloud/security/tokens/delete-token/
|
||||
---
|
||||
|
||||
{{< duplicate-oss >}}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue