Set up InfluxDB
As you get started with this tutorial, do the following to make sure everything you need is in place.
- Optional: Download, install, and configure the influx CLI
- Create an All Access API token
- Configure authentication credentials
- Optional: Create a bucket
Optional: Download, install, and configure the
influx
CLI.The
influx
CLI provides a simple way to interact with InfluxDB from a command line. For detailed installation and setup instructions, see theinflux
CLI reference.Create an All Access API token.
Go to cloud2.influxdata.com in a browser to log in and access the InfluxDB UI.
Navigate to Load Data > API Tokens using the left navigation bar.
Click + Generate API token and select All Access API Token.
Enter a description for the API token and click Save.
Copy the generated token and store it for safe keeping.
We recommend using a password manager or a secret store to securely store sensitive tokens.
Configure authentication credentials.
As you go through this tutorial, interactions with InfluxDB Cloud Serverless require your InfluxDB URL or host, organization name or ID, and your API token. There are different methods for providing these credentials depending on which client you use to interact with InfluxDB.
When configuring your token, if you created an all access token, use that token to interact with InfluxDB. Otherwise, use your operator token.
When managing InfluxDB Cloud Serverless through the InfluxDB UI, authentication credentials are provided automatically using credentials associated with the user you log in with.
There are three ways to provide authentication credentials to the
influx
CLI:All
influx
CLI examples in this getting started tutorial assume your InfluxDB host, organization, and token are provided by either the activeinflux
CLI configuration or by environment variables.Telegraf examples in this getting started tutorial assumes you assigned an
INFLUX_TOKEN
environment variable to your InfluxDB token.export INFLUX_TOKEN=
API_TOKEN$env:INFLUX_TOKEN = "
API_TOKEN"set INFLUX_TOKEN=
API_TOKEN# Make sure to include a space character at the end of this command.Replace the following:
API_TOKEN
: an InfluxDB API token with sufficient permissions to your bucket
API (cURL and client library) examples in this getting started tutorial assume you have environment variables assigned to your InfluxDB credentials.
To assign environment variables to your credentials, enter the following commands into your profile settings or terminal:
export INFLUX_HOST=https://cloud2.influxdata.com export INFLUX_ORG=
ORG_NAMEexport INFLUX_TOKEN=API_TOKEN$env:INFLUX_HOST = "https://cloud2.influxdata.com" $env:INFLUX_ORG = "
ORG_NAME" $env:INFLUX_TOKEN = "API_TOKEN"set INFLUX_HOST=https://cloud2.influxdata.com set INFLUX_ORG=
ORG_NAMEset INFLUX_TOKEN=API_TOKEN# Make sure to include a space character at the end of this command.Replace the following:
ORG_NAME
: your InfluxDB organization nameORG_ID
: your InfluxDB organization IDAPI_TOKEN
: an InfluxDB API token with sufficient permissions to your bucket
Keep the following in mind when using API clients and client libraries:
- InfluxDB ignores
org
andorg_id
parameters in API write and query requests, but some clients still require the parameters. - Some clients use
host
to refer to your hostname, your InfluxDB Cloud Serverless region URL withouthttps://
.
All API, cURL, and client library examples in this getting started tutorial assume your InfluxDB host, organization, url, and token are provided by environment variables.
Optional: Create a bucket.
You can use an existing bucket or create a new one specifically for this getting started tutorial. All examples in this tutorial assume a bucket named “get-started”.
Use the InfluxDB UI,
influx
CLI, or InfluxDB API to create a bucket.Go to cloud2.influxdata.com in a browser to log in and access the InfluxDB UI.
Navigate to Load Data > Buckets using the left navigation bar.
Click + Create bucket.
Provide a bucket name (get-started) and select a retention period. Supported retention periods depend on your InfluxDB Cloud Serverless plan.
Click Create.
If you haven’t already, download, install, and configure the
influx
CLI.Use the
influx bucket create
command to create a new bucket.Provide the following:
-n, --name
flag with the bucket name.-r, --retention
flag with the bucket’s retention period duration. Supported retention periods depend on your InfluxDB Cloud Serverless plan.- Connection and authentication credentials
influx bucket create \ --name
get-started\ --retention7dTo create a bucket using the InfluxDB HTTP API, send a request to the InfluxDB API
/api/v2/buckets
endpoint using thePOST
request method.POST https://cloud2.influxdata.com/api/v2/buckets
Include the following with your request:
- Headers:
- Authorization: Token
INFLUX_TOKEN
- Content-Type:
application/json
- Authorization: Token
- Request body: JSON object with the following properties:
- org: InfluxDB organization name
- name: Bucket name
- retentionRules: List of retention rule objects that define the bucket’s retention period.
Each retention rule object has the following properties:
- type:
"expire"
- everySeconds: Retention period duration in seconds. Supported retention periods depend on your InfluxDB Cloud Serverless plan.
- type:
curl --request POST \ "https://cloud2.influxdata.com/api/v2/buckets" \ --header "Authorization: Token
$INFLUX_TOKEN" \ --header "Content-Type: application/json" \ --data '{ "orgID": "'"$INFLUX_ORG_ID"'", "name": "get-started", "retentionRules": [ { "type": "expire", "everySeconds": 604800 } ] }'
Was this page helpful?
Thank you for your feedback!
Support and feedback
Thank you for being part of our community! We welcome and encourage your feedback and bug reports for InfluxDB and this documentation. To find support, use the following resources:
Customers with an annual or support contract can contact InfluxData Support.