Go to file
Scott Anderson 3d63ff5d55 generate md versions of all pages 2025-11-07 13:26:45 -07:00
.ci ci(link-checker): exclude grafana.com from link validation 2025-10-06 19:52:41 -05:00
.circleci
.claude qol: Add ui-dev agent for TypeScript, SASS (CSS), and Hugo frontent development 2025-09-23 10:38:07 -05:00
.context
.github Automate plugin documentation sync workflow between influxdb3_plugins and docs-v2 (#6329) 2025-10-20 17:18:34 -05:00
.husky/_ chore(grafana): update grafana screenshots, remove unused images 2025-10-10 08:33:48 -06:00
.vscode
api-docs Update api-docs/influxdb3/core/v3/ref.yml 2025-10-16 10:23:58 -07:00
assets Merge branch 'master' into update-grafana-docs 2025-10-06 17:34:12 -05:00
config generate md versions of all pages 2025-11-07 13:26:45 -07:00
content Core and Ent3 performance tuning guide and configuration options (#6421) 2025-10-21 13:14:31 -05:00
cypress feat(influxdb): Version detector shortcode triggers a modal 2025-09-30 19:01:21 -05:00
data Telegraf v1.36.3 (#6473) 2025-10-21 12:23:21 -05:00
deploy chore(deploy): Replaced edge.js with the latest index.js function code maintained in AWS lambda. index.js is edited to allow xml--fixes the sitemap.xml 404. 2025-10-09 12:16:38 -05:00
flux-build-scripts
helper-scripts Automate plugin documentation sync workflow between influxdb3_plugins and docs-v2 (#6329) 2025-10-20 17:18:34 -05:00
layouts generate md versions of all pages 2025-11-07 13:26:45 -07:00
plans/cli-docs-sync
shared/text
static chore(grafana): update grafana screenshots, remove unused images 2025-10-10 08:33:48 -06:00
telegraf-build fix(telegraf): Aggregator typo and intro 2025-09-23 13:39:08 -05:00
test
.editorconfig
.frontmatter-schema.json
.gitignore Automate plugin documentation sync workflow between influxdb3_plugins and docs-v2 (#6329) 2025-10-20 17:18:34 -05:00
.mcp.json
.nvmrc
.prettierignore
.prettierrc.yaml
.s3deploy.yml
.vale.ini
CLAUDE.md chore(instructions): restructure contributing instructions for humans and assistants 2025-10-08 15:48:44 -05:00
DOCS-CONTRIBUTING.md Update DOCS-CONTRIBUTING.md 2025-10-08 16:43:53 -05:00
DOCS-FRONTMATTER.md Apply suggestion from @jstirnaman 2025-10-08 16:46:00 -05:00
DOCS-SHORTCODES.md chore(instructions): restructure contributing instructions for humans and assistants 2025-10-08 15:48:44 -05:00
DOCS-TESTING.md chore(instructions): restructure contributing instructions for humans and assistants 2025-10-08 15:48:44 -05:00
Dockerfile.pytest
Dockerfile.tests
LICENSE
PLATFORM_REFERENCE.md chore(instructions): restructure contributing instructions for humans and assistants 2025-10-08 15:48:44 -05:00
README.md chore(instructions): restructure contributing instructions for humans and assistants 2025-10-08 15:48:44 -05:00
broken_links_report.json
compose.yaml fix(explorer): When to use host.docker.internal with InfluxDB 3. 2025-10-10 15:30:27 -05:00
cypress.config.js
eslint.config.js feat(influxdb): Version detector shortcode triggers a modal 2025-09-30 19:01:21 -05:00
hugo_stats.json
install-influxdb3-core.sh
install_influxdb3.sh Core and Ent3 performance tuning guide and configuration options (#6421) 2025-10-21 13:14:31 -05:00
lefthook.yml chore(instructions): restructure agent instructions build process 2025-10-08 16:15:30 -05:00
package.json Automate plugin documentation sync workflow between influxdb3_plugins and docs-v2 (#6329) 2025-10-20 17:18:34 -05:00
tsconfig.json feat(influxdb): Version detector shortcode triggers a modal 2025-09-30 19:01:21 -05:00
yarn.lock feat(influxdb): Version detector shortcode triggers a modal 2025-09-30 19:01:21 -05: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.

Documentation

Comprehensive reference documentation for contributors:

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.149.0.

  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.