Go to file
Jason Stirnaman 463114b6e9
Merge branch 'master' into influxdb3-config-options
2025-09-25 15:06:02 -05:00
.ci chore: ignore Claude URLs and full production URLs (esp. canonical meta links) 2025-08-24 22:33:41 -05:00
.circleci Updated config.yml 2025-09-15 14:19:11 -05:00
.claude qol: Add ui-dev agent for TypeScript, SASS (CSS), and Hugo frontent development 2025-09-23 10:38:07 -05:00
.context
.github chore(qol): Instruction to use /version/ in shared links 2025-09-25 11:59:51 -05:00
.husky/_ chore: yarn upgrade 2025-09-02 14:16:54 -05:00
.vscode InfluxDB 3.4 offline tokens (#6346) 2025-08-28 07:03:03 -06:00
api-docs Instructions files cleanup: 2025-09-23 10:37:10 -05:00
assets Instructions files cleanup: 2025-09-23 10:37:10 -05:00
config
content docs(cli): remove Tokio runtime options from CLI index pages 2025-09-25 14:03:53 -05:00
cypress
data Release influxctl v2.10.5 (#6417) 2025-09-23 13:34:34 -06:00
deploy
flux-build-scripts
helper-scripts
layouts Merge branch 'master' into pbarnett/update-3.4.1-and-release-notes-plus-small-changes 2025-08-29 10:54:30 -04:00
plans/cli-docs-sync
resources
shared/text
static
telegraf-build fix(telegraf): Aggregator typo and intro 2025-09-23 13:39:08 -05:00
test
.editorconfig
.frontmatter-schema.json
.gitignore
.mcp.json docs: Add .mcp.json config file for Docs MCP 2025-09-09 11:16:39 -05:00
.nvmrc
.prettierignore
.prettierrc.yaml
.s3deploy.yml
.vale.ini
CLAUDE.md Instructions files cleanup: 2025-09-23 10:37:10 -05:00
CONTRIBUTING.md
Dockerfile.pytest
Dockerfile.tests
LICENSE
PLATFORM_REFERENCE.md
README.md
TESTING.md
broken_links_report.json
compose.yaml test: Map a directory for influxdata plugins (from influxdb3_plugins), map ent- and core-specific plugins to plugins/custom 2025-09-05 15:28:39 -05:00
cypress.config.js
eslint.config.js
hugo_stats.json fix: remove buffer-mem-limit-mb (#6341) 2025-08-27 08:32:06 -06:00
install-influxdb3-core.sh
lefthook.yml
package.json chore(deps): bump axios from 1.11.0 to 1.12.0 2025-09-12 21:50:51 +00:00
yarn.lock chore(deps): bump axios from 1.11.0 to 1.12.0 2025-09-12 21:50:51 +00:00

README.md

InfluxDB 2.0 Documentation

This repository contains the InfluxDB 2.x documentation published at docs.influxdata.com.

Contributing

We welcome and encourage community contributions. For information about contributing to the InfluxData documentation, see Contribution guidelines.

Testing

For information about testing the documentation, including code block testing, link validation, and style linting, see Testing guide.

Reporting a Vulnerability

InfluxData takes security and our users' trust very seriously. If you believe you have found a security issue in any of our open source projects, please responsibly disclose it by contacting security@influxdata.com. More details about security vulnerability reporting, including our GPG key, can be found at https://www.influxdata.com/how-to-report-security-vulnerabilities/.

Running the docs locally

  1. Clone this repository to your local machine.

  2. Install NodeJS, Yarn, Hugo, & Asset Pipeline Tools

    The InfluxData documentation uses Hugo, a static site generator built in Go. The site uses Hugo's asset pipeline, which requires the extended version of Hugo along with NodeJS tools like PostCSS, to build and process stylesheets and JavaScript.

    To install the required dependencies and build the assets, do the following:

    1. Install NodeJS

    2. Install Yarn

    3. In your terminal, from the docs-v2 directory, install the dependencies:

      cd docs-v2
      yarn install
      

      Note: The most recent version of Hugo tested with this documentation is 0.123.8.

  3. To generate the API docs, see api-docs/README.md.

  4. Start the Hugo server

    Hugo provides a local development server that generates the HTML pages, builds the static assets, and serves them at localhost:1313.

    In your terminal, start the Hugo server:

    npx hugo server
    
  5. View the docs at localhost:1313.

Alternative: Use docker compose

  1. Clone this repository to your local machine. See how to clone a repository.

  2. Follow the instructions to install Docker Desktop and Docker Compose to your local machine.

  3. Use Docker Compose to start the Hugo server in development mode--for example, enter the following command in your terminal:

    docker compose up local-dev
    
  4. View the docs at localhost:1313.