Documentation

Apply a Telegraf Enterprise license

Apply a Telegraf Enterprise license to Telegraf Controller either at startup through an environment variable or at runtime through the user interface.

Telegraf Enterprise

Unlock higher configuration and agent limits, enhanced security features, and official support for Telegraf and Telegraf Controller.

Prerequisites

  • A Telegraf Enterprise license issued by InfluxData and provided to you as a “license key.” You can optionally store your license in a file with a .jwt or .txt file extension.

    If you have already purchased Telegraf Enterprise, but have not recieved your license, contact InfluxData support.

  • For the UI method: the Owner role on the Telegraf Controller instance.

About the license

Telegraf Enterprise licenses are signed JSON Web Tokens (JWTs). The license is text string that you can optionally store in a file with a .jwt or .txt file extension. Take care not to edit the actual license key. Any change invalidates the cryptographic signature.

Telegraf Controller validates licenses in both connected and air-gapped environments.

Apply a license at startup

Save your license key to a .jwt or .txt file and use the LICENSE_FILE_PATH environment variable to apply a license when Telegraf Controller starts. This method is recommended for automated and infrastructure-as-code deployments.

  1. Place the license file on the Telegraf Controller host.

    Copy the license file to a path the Telegraf Controller process can read, for example /etc/telegraf-controller/license.jwt.

  2. Set the LICENSE_FILE_PATH environment variable.

    Add an Environment= line to your systemd unit file (typically /etc/systemd/system/telegraf-controller.service):

    [Service]
    Environment=LICENSE_FILE_PATH=/etc/telegraf-controller/license.jwt

    Then reload systemd and restart the service:

    sudo systemctl daemon-reload
    sudo systemctl restart telegraf-controller

    Export the variable in your shell before starting Telegraf Controller:

    export LICENSE_FILE_PATH=/etc/telegraf-controller/license.jwt
    telegraf_controller --no-interactive

    Set the environment variable in PowerShell before starting Telegraf Controller:

    $env:LICENSE_FILE_PATH="C:\ProgramData\telegraf-controller\license.jwt"
    ./telegraf_controller.exe --no-interactive
  3. Start (or restart) Telegraf Controller.

    On startup, Telegraf Controller reads the file, validates the license, and stores it in the database. Successful loads appear in the startup logs with the license ID.

LICENSE_FILE_PATH is read only when the database has no license

If the Telegraf Controller database already contains a license, LICENSE_FILE_PATH is ignored on subsequent restarts. To replace a license applied this way, either upload a new license through the UI or remove the existing license first.

If the file is missing, unreadable, or contains an invalid license, Telegraf Controller starts in free-tier mode and logs the validation error. See Troubleshoot licensing for the error catalog.

Apply a license through the user interface

Use the Telegraf Controller UI to apply or replace a license at runtime without restarting the application. This method requires the Owner role.

  1. Sign in to Telegraf Controller as a user with the Owner role.

  2. Navigate to Settings > Enterprise.

    Upload your Telegraf Enterprise license to Telegraf Controller
  3. Provide the license in one of two ways:

    • Drag and drop the .jwt (or .txt) license file into the drop zone.
    • Paste the license key (JWT) string into the textarea.
  4. Click Upload license.

Telegraf Controller validates the license immediately. On success, the page refreshes to show the license ID, expiration date, and entitlements. No restart is required. Enterprise features and the new scale limits take effect for all in-flight and subsequent requests.

If validation fails, an error message describes the reason. The previously active license (if any) remains in effect. Telegraf Controller never downgrades from a valid license because of a failed upload.

Verify the license is active

In the UI, navigate to Settings > Enterprise to view the current license details: license ID, the date the license was loaded, the expiration date, the maximum configurations entitlement, and the maximum reporting agents entitlement.

From the API, any authenticated user can call GET /api/license/entitlements to see the current entitlements and usage. This is the recommended endpoint for status checks in scripts and monitoring dashboards because it doesn’t require the Owner role.

curl -H "Authorization: Bearer 
YOUR_TC_API_TOKEN
"
\
https://telegraf_controller.example.com/api/license/entitlements

Replace YOUR_TC_API_TOKEN with your Telegraf Controller API token.

Example response when a license is active:

{
  "status": "valid",
  "licenseId": "Xxxx0oXx-Xx0o-00Xx-oXxX-xX0oXx0oXx0o",
  "expiresAt": "2026-12-31T00:00:00Z",
  "enterpriseEnabled": true,
  "entitlements": {
    "maxConfigs": 100000,
    "maxAgents": 18000
  },
  "usage": {
    "configs": 47,
    "agents": 183
  }
}

When no license is applied, status is "unlicensed", enterpriseEnabled is false, and the entitlements show the free-tier limits.

What happens if validation fails

Telegraf Controller rejects malformed, unsigned, expired (beyond the grace period), or otherwise invalid licenses. See Troubleshoot licensing for the full catalog of validation errors and how to resolve them.


Was this page helpful?

Thank you for your feedback!


InfluxDB OSS 2.9.0: API tokens are hashed by default

Stronger token security in InfluxDB OSS 2.9.0 — tokens are hashed on disk by default. Existing tokens are hashed on first startup and can’t be recovered afterward. Capture any plaintext tokens you still need before you upgrade.

View InfluxDB OSS 2.9.0 release notes

Hashed tokens authenticate exactly like unhashed tokens — clients and integrations keep working.

Also new in 2.9.0:

  • Configurable backup compression
  • Restore support for backups containing hashed tokens
  • Tighter Edge Data Replication queue validation
  • Flux upgrade
  • Compaction reliability improvements

Key enhancements in Explorer 1.9

Explorer 1.9 is now available with InfluxQL support, an AI-assisted Flux to SQL converter (beta), and new live sample data simulators.

View Explorer 1.9 release notes

Explorer 1.9 includes new features and improvements that make it easier to query, visualize, and manage data.

Highlights:

  • Flux to SQL converter (beta): Convert Flux queries to SQL with an AI-assisted converter.
  • InfluxQL support: Query data with InfluxQL in the Data Explorer and dashboards, and save and load InfluxQL queries.
  • InfluxQL visualizations: Render line and bar charts from InfluxQL results with per-tag series grouping.
  • Query error history: Review a history of query errors in the query tool.
  • Live sample data simulators: Generate continuous live sample data with new bird data and signal generator simulators.

For more details, see Explorer 1.9 release notes

InfluxDB 3.10 is now available

InfluxDB 3 Core 3.10 adds an automatic catalog format upgrade, a configurable query-concurrency limit, and processing engine improvements.

Key updates in InfluxDB 3 Core 3.10:

  • Catalog format upgrade: the on-disk catalog automatically upgrades from format v2 to v3 on first 3.10 startup. Migration is one-way—back up your catalog before upgrading.
  • --max-concurrent-queries: limit concurrent queries (adjustable at runtime).
  • GET /ready endpoint for readiness probes.
  • Processing engine: cross-database queries and trigger lockdown flags.

For more information, see the InfluxDB 3 Core release notes.

InfluxDB 3.10 is now available

InfluxDB 3 Enterprise 3.10 adds automated backup and restore, row-level deletions, and user management, with an automatic catalog format upgrade and performance preview improvements.

Key updates in InfluxDB 3 Enterprise 3.10:

  • Catalog format upgrade: the on-disk catalog automatically upgrades from format v2 to v3 on first 3.10 startup. Migration is one-way—back up your catalog before upgrading.
  • Automated backup and restore (beta)
  • Row-level deletions
  • User management (authentication and RBAC) — preview
  • Performance preview improvements

Backup and restore, row-level deletions, and the performance preview require the Enterprise storage engine upgrade (opt-in beta). Beta and preview features are subject to breaking changes and aren’t recommended for production use.

For more information, see the InfluxDB 3 Enterprise release notes

Telegraf Enterprise is now generally available

Telegraf Enterprise is now generally available, along with Telegraf Controller v1.0.

Telegraf Enterprise combines Telegraf Controller, a centralized management console for Telegraf, with official support from InfluxData. Manage configurations, monitor fleet health, and operate tens of thousands of Telegraf agents from a single system.

InfluxDB Docker latest tag changing to InfluxDB 3 Core

On September 15, 2026, the latest tag for InfluxDB Docker images will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments.

If using Docker to install and run InfluxDB, the latest tag will point to InfluxDB 3 Core. To avoid unexpected upgrades, use specific version tags in your Docker deployments. For example, if using Docker to run InfluxDB v2, replace the latest version tag with a specific version tag in your Docker pull command–for example:

docker pull influxdb:2