├── .ci ├── Dockerfile.remark ├── link-checker │ ├── default.lycherc.toml │ └── production.lycherc.toml ├── remark-lint │ ├── .remark-lint.js │ ├── package.json │ └── yarn.lock └── vale │ ├── styles │ ├── Cloud-Dedicated │ │ ├── Branding.yml │ │ └── v3Schema.yml │ ├── Cloud-Serverless │ │ └── Branding.yml │ ├── Clustered │ │ ├── Branding.yml │ │ └── v3Schema.yml │ ├── Google │ │ ├── AMPM.yml │ │ ├── Acronyms.yml │ │ ├── Colons.yml │ │ ├── Contractions.yml │ │ ├── DateFormat.yml │ │ ├── Ellipses.yml │ │ ├── EmDash.yml │ │ ├── Exclamation.yml │ │ ├── FirstPerson.yml │ │ ├── Gender.yml │ │ ├── GenderBias.yml │ │ ├── HeadingPunctuation.yml │ │ ├── Headings.yml │ │ ├── Latin.yml │ │ ├── LyHyphens.yml │ │ ├── OptionalPlurals.yml │ │ ├── Ordinal.yml │ │ ├── OxfordComma.yml │ │ ├── Parens.yml │ │ ├── Passive.yml │ │ ├── Periods.yml │ │ ├── Quotes.yml │ │ ├── Ranges.yml │ │ ├── Semicolons.yml │ │ ├── Slang.yml │ │ ├── Spacing.yml │ │ ├── Spelling.yml │ │ ├── Units.yml │ │ ├── We.yml │ │ ├── Will.yml │ │ ├── WordList.yml │ │ ├── meta.json │ │ └── vocab.txt │ ├── InfluxDB3-Core │ │ ├── Branding.yml │ │ └── v3Schema.yml │ ├── InfluxDBv2 │ │ ├── ServerConfig.yml │ │ └── Terms │ │ │ ├── query-functions.txt │ │ │ └── server-config-options.txt │ ├── InfluxDataDocs │ │ ├── Acronyms.yml │ │ ├── Branding.yml │ │ ├── Capitalization.yml │ │ ├── DateFormat.yml │ │ ├── Ellipses.yml │ │ ├── Spelling.yml │ │ ├── Terms │ │ │ ├── ignore.txt │ │ │ └── query-functions.txt │ │ └── WordList.yml │ ├── config │ │ └── vocabularies │ │ │ └── InfluxDataDocs │ │ │ ├── accept.txt │ │ │ └── reject.txt │ └── write-good │ │ ├── Cliches.yml │ │ ├── E-Prime.yml │ │ ├── Illusions.yml │ │ ├── Passive.yml │ │ ├── README.md │ │ ├── So.yml │ │ ├── ThereIs.yml │ │ ├── TooWordy.yml │ │ ├── Weasel.yml │ │ └── meta.json │ └── vale.sh ├── .circleci └── config.yml ├── .claude ├── agents │ ├── ci-automation-engineer.md │ ├── hugo-ui-dev.md │ ├── influxdb1-tech-writer.md │ ├── influxdb3-distrib-tech-writer.md │ ├── influxdb3-tech-writer.md │ ├── script-automation-engineer.md │ ├── ts-component-dev.md │ └── ui-testing.md ├── commands │ ├── analyze-api-source.md │ ├── enhance-release-notes.md │ ├── fix-github-issue.md │ └── scaffold-content.md ├── settings.json └── skills │ ├── docs-cli-workflow │ └── SKILL.md │ └── hugo-template-dev │ └── SKILL.md ├── .context └── README.md ├── .editorconfig ├── .frontmatter-schema.json ├── .github ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── new-feature.md │ ├── proposal.md │ └── sync-plugin-docs.yml ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── actions │ └── setup-docs-env │ │ └── action.yml ├── agents │ └── typescript-hugo-agent.md ├── copilot-instructions.md ├── instructions │ ├── api-docs.instructions.md │ ├── assets.instructions.md │ ├── content.instructions.md │ └── layouts.instructions.md ├── pull_request_template │ └── influxdb_v1_release.md ├── scripts │ ├── cache-manager.cjs │ ├── cache-manager.js │ ├── comment-generator.js │ ├── incremental-validator.cjs │ ├── incremental-validator.js │ ├── link-extractor.cjs │ ├── link-extractor.js │ ├── matrix-generator.js │ └── utils │ │ └── url-transformer.js └── workflows │ ├── audit-documentation.yml │ ├── influxdb3-release.yml │ ├── pr-link-check.yml │ ├── prepare-release.yml │ ├── sync-link-checker-binary.yml │ ├── sync-plugins.yml │ └── trigger-on-release.yml ├── .gitignore ├── .husky └── _ │ ├── build │ ├── pre-commit │ ├── pre-push │ ├── pre-push.old │ ├── prepare-commit-msg │ ├── scripts │ └── serve ├── .mcp.json ├── .nvmrc ├── .prettierignore ├── .prettierrc.yaml ├── .remarkrc.yaml ├── .s3deploy.yml ├── .vale-instructions.ini ├── .vale.ini ├── .vscode ├── launch.json └── settings.json ├── AGENTS.md ├── CLAUDE.md ├── DOCS-CONTRIBUTING.md ├── DOCS-DEPLOYING.md ├── DOCS-FRONTMATTER.md ├── DOCS-SHORTCODES.md ├── DOCS-TESTING.md ├── Dockerfile.pytest ├── Dockerfile.tests ├── LICENSE ├── PLATFORM_REFERENCE.md ├── README.md ├── api-docs ├── .config.yml ├── CLAUDE.md ├── README.md ├── generate-api-docs.sh ├── getswagger.sh ├── influxdb │ ├── cloud │ │ ├── .config.yml │ │ ├── v1-compatibility │ │ │ ├── content │ │ │ │ └── info.yml │ │ │ └── swaggerV1Compat.yml │ │ └── v2 │ │ │ ├── content │ │ │ ├── info.yml │ │ │ ├── servers.yml │ │ │ └── tag-groups.yml │ │ │ └── ref.yml │ └── v2 │ │ ├── .config.yml │ │ ├── v1-compatibility │ │ ├── content │ │ │ └── info.yml │ │ └── swaggerV1Compat.yml │ │ └── v2 │ │ ├── content │ │ ├── info.yml │ │ └── tag-groups.yml │ │ └── ref.yml ├── influxdb3 │ ├── cloud-dedicated │ │ ├── .config.yml │ │ ├── management │ │ │ ├── content │ │ │ │ ├── info.yml │ │ │ │ ├── servers.yml │ │ │ │ └── tag-groups.yml │ │ │ └── openapi.yml │ │ ├── v1-compatibility │ │ │ ├── content │ │ │ │ └── info.yml │ │ │ └── swaggerV1Compat.yml │ │ └── v2 │ │ │ ├── content │ │ │ ├── info.yml │ │ │ ├── servers.yml │ │ │ └── tag-groups.yml │ │ │ └── ref.yml │ ├── cloud-serverless │ │ ├── .config.yml │ │ ├── v1-compatibility │ │ │ ├── content │ │ │ │ └── info.yml │ │ │ └── swaggerV1Compat.yml │ │ └── v2 │ │ │ ├── content │ │ │ ├── info.yml │ │ │ ├── servers.yml │ │ │ └── tag-groups.yml │ │ │ └── ref.yml │ ├── clustered │ │ ├── .config.yml │ │ ├── management │ │ │ ├── content │ │ │ │ ├── info.yml │ │ │ │ ├── servers.yml │ │ │ │ └── tag-groups.yml │ │ │ └── openapi.yml │ │ ├── v1-compatibility │ │ │ ├── content │ │ │ │ └── info.yml │ │ │ └── swaggerV1Compat.yml │ │ └── v2 │ │ │ ├── content │ │ │ ├── info.yml │ │ │ ├── servers.yml │ │ │ └── tag-groups.yml │ │ │ └── ref.yml │ ├── core │ │ ├── .config.yml │ │ └── v3 │ │ │ ├── content │ │ │ ├── info.yml │ │ │ ├── servers.yml │ │ │ └── tag-groups.yml │ │ │ └── ref.yml │ └── enterprise │ │ ├── .config.yml │ │ └── v3 │ │ ├── content │ │ ├── info.yml │ │ ├── servers.yml │ │ └── tag-groups.yml │ │ └── ref.yml ├── openapi │ └── plugins │ │ ├── decorators │ │ ├── operations │ │ │ └── remove-internal-operations.cjs │ │ ├── paths │ │ │ ├── remove-private-paths.cjs │ │ │ ├── strip-trailing-slash.cjs │ │ │ └── strip-version-prefix.cjs │ │ ├── replace-shortcodes.cjs │ │ ├── replace-urls.cjs │ │ ├── servers │ │ │ ├── delete-servers.cjs │ │ │ └── set-servers.cjs │ │ ├── set-info.cjs │ │ └── tags │ │ │ └── set-tag-groups.cjs │ │ ├── docs-content.cjs │ │ ├── docs-plugin.cjs │ │ ├── helpers │ │ └── content-helper.cjs │ │ └── rules │ │ ├── report-tags.cjs │ │ └── validate-servers-url.cjs ├── package.json ├── template.hbs └── yarn.lock ├── assets ├── CLAUDE.md ├── js │ ├── api-libs.js │ ├── ask-ai-trigger.js │ ├── ask-ai.ts │ ├── code-controls.js │ ├── code-placeholders.js │ ├── components │ │ ├── diagram.js │ │ ├── doc-search.js │ │ ├── format-selector.ts │ │ └── sidebar-search.js │ ├── content-interactions.js │ ├── custom-timestamps.js │ ├── datetime.js │ ├── feature-callouts.js │ ├── flux-group-keys.js │ ├── flux-influxdb-versions.js │ ├── helpers.js │ ├── influxdb-url.js │ ├── influxdb-version-detector.ts │ ├── jquery-3.5.0.min.js │ ├── keybindings.js │ ├── list-filters.js │ ├── main.js │ ├── modals.js │ ├── notifications.js │ ├── page-context.ts │ ├── page-feedback.js │ ├── release-toc.js │ ├── search-button.js │ ├── services │ │ ├── influxdata-products.js │ │ ├── influxdb-urls.js │ │ └── local-storage.js │ ├── sidebar-toggle.js │ ├── tabbed-content.js │ ├── theme-switch.js │ ├── theme.js │ ├── utils │ │ ├── debug-helpers.js │ │ ├── node-shim.ts │ │ ├── product-mappings.ts │ │ ├── search-interactions.js │ │ └── user-agent-platform.js │ ├── v3-wayfinding.js │ └── version-selector.js ├── jsconfig.json └── styles │ ├── components │ ├── _format-selector.scss │ └── _influxdb-version-detector.scss │ ├── layouts │ ├── _algolia-search-overrides.scss │ ├── _api-overrides.scss │ ├── _article.scss │ ├── _code-controls.scss │ ├── _content-wrapper.scss │ ├── _datetime.scss │ ├── _error-page.scss │ ├── _feature-callouts.scss │ ├── _footer-widgets.scss │ ├── _global.scss │ ├── _homepage.scss │ ├── _inline-icons.scss │ ├── _landing.scss │ ├── _loading-spinner.scss │ ├── _modals.scss │ ├── _notifications.scss │ ├── _sidebar-toggle.scss │ ├── _sidebar.scss │ ├── _syntax-highlighting.scss │ ├── _top-nav.scss │ ├── _v1-overrides.scss │ ├── _v3-wayfinding.scss │ ├── article │ │ ├── _badges.scss │ │ ├── _blocks.scss │ │ ├── _buttons.scss │ │ ├── _captions.scss │ │ ├── _children.scss │ │ ├── _code-api-methods.scss │ │ ├── _code.scss │ │ ├── _columns.scss │ │ ├── _diagrams.scss │ │ ├── _expand.scss │ │ ├── _feedback.scss │ │ ├── _flex.scss │ │ ├── _flux.scss │ │ ├── _html-diagrams.scss │ │ ├── _influxdbu.scss │ │ ├── _influxql.scss │ │ ├── _keybinding.scss │ │ ├── _list-filters.scss │ │ ├── _lists.scss │ │ ├── _opacity.scss │ │ ├── _pagination-btns.scss │ │ ├── _related.scss │ │ ├── _release-toc.scss │ │ ├── _scrollbars.scss │ │ ├── _svgs.scss │ │ ├── _tabbed-content.scss │ │ ├── _tables.scss │ │ ├── _tags.scss │ │ ├── _telegraf-plugins.scss │ │ ├── _title.scss │ │ ├── _truncate.scss │ │ ├── _video.scss │ │ └── blocks │ │ │ ├── _caution.scss │ │ │ ├── _important.scss │ │ │ ├── _note.scss │ │ │ ├── _special-state.scss │ │ │ ├── _tip.scss │ │ │ └── _warning.scss │ └── modals │ │ ├── _flux-versions.scss │ │ ├── _influxdb-gs-datepicker.scss │ │ ├── _page-feedback.scss │ │ └── _url-selector.scss │ ├── sidebar-closed.scss │ ├── sidebar-open.scss │ ├── styles-api.scss │ ├── styles-dark.scss │ ├── styles-default.scss │ ├── themes │ ├── _theme-dark.scss │ └── _theme-light.scss │ └── tools │ ├── _color-palette.scss │ ├── _datepicker.scss │ ├── _fonts.scss │ ├── _normalize.scss │ ├── _tooltips.scss │ ├── icon-fonts │ ├── _alert-icons.scss │ ├── _icomoon-v2.scss │ ├── _icon-v3.scss │ └── _icon-v4.scss │ ├── media-queries.scss │ └── mixins.scss ├── broken_links_report.json ├── compose.yaml ├── config ├── _default │ └── hugo.yml ├── production │ ├── config.yml │ └── hugo.yml └── staging │ └── hugo.yml ├── content ├── .remarkrc.yaml ├── CLAUDE.md ├── _index.md ├── chronograf │ └── v1 │ │ ├── _index.md │ │ ├── about_the_project │ │ ├── _index.md │ │ ├── cla.md │ │ ├── contributing.md │ │ ├── licenses.md │ │ └── release-notes.md │ │ ├── administration │ │ ├── _index.md │ │ ├── chrono-on-clusters.md │ │ ├── config-options.md │ │ ├── configuration.md │ │ ├── create-high-availability.md │ │ ├── creating-connections.md │ │ ├── import-export-dashboards.md │ │ ├── managing-chronograf-users.md │ │ ├── managing-influxdb-users.md │ │ ├── managing-organizations.md │ │ ├── managing-queries.md │ │ ├── managing-security.md │ │ ├── migrate-to-high-availability.md │ │ ├── prebuilt-dashboards.md │ │ ├── restoring-chronograf-db.md │ │ └── upgrading.md │ │ ├── guides │ │ ├── _index.md │ │ ├── advanced-kapacitor.md │ │ ├── analyzing-logs.md │ │ ├── annotations.md │ │ ├── cloning-in-ui.md │ │ ├── configuring-alert-endpoints.md │ │ ├── create-a-dashboard.md │ │ ├── create-alert-rules.md │ │ ├── dashboard-template-variables.md │ │ ├── live_leaderboard.md │ │ ├── monitoring-influxenterprise-clusters.md │ │ ├── presentation-mode.md │ │ ├── querying-data.md │ │ ├── tickscript-logging.md │ │ ├── using-precreated-dashboards.md │ │ ├── visualization-types.md │ │ └── write-to-influxdb.md │ │ ├── introduction │ │ ├── _index.md │ │ ├── downloading.md │ │ ├── getting-started.md │ │ └── installation.md │ │ ├── tools │ │ ├── _index.md │ │ ├── chronoctl │ │ │ ├── _index.md │ │ │ ├── add-superadmin.md │ │ │ ├── gen-keypair.md │ │ │ ├── list-users.md │ │ │ ├── migrate.md │ │ │ └── token.md │ │ └── chronograf │ │ │ └── _index.md │ │ └── troubleshooting │ │ ├── _index.md │ │ └── frequently-asked-questions.md ├── create.md ├── enterprise_influxdb │ └── v1 │ │ ├── _index.md │ │ ├── about-the-project │ │ ├── _index.md │ │ ├── release-notes.md │ │ └── third-party.md │ │ ├── administration │ │ ├── _index.md │ │ ├── backup-and-restore.md │ │ ├── configure │ │ │ ├── _index.md │ │ │ ├── anti-entropy │ │ │ │ ├── _index.md │ │ │ │ └── anti-entropy-api.md │ │ │ ├── config-data-nodes.md │ │ │ ├── config-meta-nodes.md │ │ │ ├── configuration.md │ │ │ ├── ports.md │ │ │ └── security │ │ │ │ ├── _index.md │ │ │ │ ├── authentication.md │ │ │ │ ├── configure-password-hashing.md │ │ │ │ ├── enable_tls.md │ │ │ │ └── ldap.md │ │ ├── identify-version.md │ │ ├── manage │ │ │ ├── _index.md │ │ │ ├── clusters │ │ │ │ ├── _index.md │ │ │ │ ├── add-nodes.md │ │ │ │ ├── rebalance.md │ │ │ │ └── replacing-nodes.md │ │ │ ├── node-labels.md │ │ │ ├── renaming.md │ │ │ ├── subscription-management.md │ │ │ └── users-and-permissions │ │ │ │ ├── _index.md │ │ │ │ ├── authorization-api.md │ │ │ │ ├── authorization-influxql.md │ │ │ │ ├── fine-grained-authorization.md │ │ │ │ ├── introduction-to-auth.md │ │ │ │ └── permissions.md │ │ ├── monitor │ │ │ ├── _index.md │ │ │ ├── diagnostics.md │ │ │ ├── logs.md │ │ │ └── monitor-with-oss.md │ │ ├── renew-license.md │ │ ├── stability_and_compatibility.md │ │ └── upgrading.md │ │ ├── concepts │ │ ├── _index.md │ │ ├── clustering.md │ │ ├── crosswalk.md │ │ ├── file-system-layout.md │ │ ├── glossary.md │ │ ├── influxdb-enterprise-startup.md │ │ ├── insights_tradeoffs.md │ │ ├── key_concepts.md │ │ ├── schema_and_data_layout.md │ │ ├── storage_engine.md │ │ ├── time-series-index.md │ │ └── tsi-details.md │ │ ├── features │ │ ├── _index.md │ │ └── clustering-features.md │ │ ├── flux │ │ ├── _index.md │ │ ├── execute-queries.md │ │ ├── flux-vs-influxql.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── query-influxdb.md │ │ │ ├── syntax-basics.md │ │ │ └── transform-data.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── calculate-percentages.md │ │ │ ├── conditional-logic.md │ │ │ ├── cumulativesum.md │ │ │ ├── exists.md │ │ │ ├── fill.md │ │ │ ├── first-last.md │ │ │ ├── flux-in-dashboards.md │ │ │ ├── geo │ │ │ │ ├── _index.md │ │ │ │ ├── filter-by-region.md │ │ │ │ ├── group-geo-data.md │ │ │ │ └── shape-geo-data.md │ │ │ ├── group-data.md │ │ │ ├── histograms.md │ │ │ ├── increase.md │ │ │ ├── join.md │ │ │ ├── manipulate-timestamps.md │ │ │ ├── mathematic-operations.md │ │ │ ├── median.md │ │ │ ├── monitor-states.md │ │ │ ├── moving-average.md │ │ │ ├── percentile-quantile.md │ │ │ ├── query-fields.md │ │ │ ├── rate.md │ │ │ ├── regular-expressions.md │ │ │ ├── scalar-values.md │ │ │ ├── sort-limit.md │ │ │ ├── sql.md │ │ │ └── window-aggregate.md │ │ ├── installation.md │ │ └── optimize-queries.md │ │ ├── guides │ │ ├── _index.md │ │ ├── authenticate.md │ │ ├── calculate_percentages.md │ │ ├── downsample_and_retain.md │ │ ├── hardware_sizing.md │ │ ├── migration.md │ │ ├── query_data.md │ │ └── write_data.md │ │ ├── introduction │ │ ├── _index.md │ │ ├── download.md │ │ ├── getting-started.md │ │ ├── installation │ │ │ ├── _index.md │ │ │ ├── chrono_install.md │ │ │ ├── data_node_installation.md │ │ │ ├── docker │ │ │ │ ├── _index.md │ │ │ │ └── docker-troubleshooting.md │ │ │ ├── fips-compliant.md │ │ │ ├── meta_node_installation.md │ │ │ └── single-server.md │ │ └── installation_requirements.md │ │ ├── query_language │ │ ├── _index.md │ │ ├── continuous_queries.md │ │ ├── explore-data.md │ │ ├── explore-schema.md │ │ ├── functions.md │ │ ├── internals.md │ │ ├── manage-database.md │ │ ├── math_operators.md │ │ ├── sample-data.md │ │ └── spec.md │ │ ├── reference │ │ └── hardware_sizing.md │ │ ├── supported_protocols │ │ ├── _index.md │ │ ├── collectd.md │ │ ├── graphite.md │ │ ├── opentsdb.md │ │ ├── prometheus.md │ │ └── udp.md │ │ ├── tools │ │ ├── _index.md │ │ ├── api.md │ │ ├── api_client_libraries.md │ │ ├── flux-vscode.md │ │ ├── grafana.md │ │ ├── inch.md │ │ ├── influx-cli │ │ │ ├── _index.md │ │ │ └── use-influx-cli.md │ │ ├── influx_inspect.md │ │ ├── influxd-ctl │ │ │ ├── _index.md │ │ │ ├── add-data.md │ │ │ ├── add-meta.md │ │ │ ├── backup.md │ │ │ ├── copy-shard-status.md │ │ │ ├── copy-shard.md │ │ │ ├── entropy │ │ │ │ ├── _index.md │ │ │ │ ├── kill-repair.md │ │ │ │ ├── repair.md │ │ │ │ └── show.md │ │ │ ├── join.md │ │ │ ├── kill-copy-shard.md │ │ │ ├── ldap │ │ │ │ ├── _index.md │ │ │ │ ├── get-config.md │ │ │ │ ├── purge-cache.md │ │ │ │ ├── sample-config.md │ │ │ │ ├── set-config.md │ │ │ │ ├── verify.md │ │ │ │ └── warm-cache.md │ │ │ ├── leave.md │ │ │ ├── node-labels │ │ │ │ ├── _index.md │ │ │ │ ├── delete.md │ │ │ │ └── set.md │ │ │ ├── remove-data.md │ │ │ ├── remove-meta.md │ │ │ ├── remove-shard.md │ │ │ ├── restore.md │ │ │ ├── show-shards.md │ │ │ ├── show.md │ │ │ ├── token.md │ │ │ ├── truncate-shards.md │ │ │ └── update-data.md │ │ └── influxd │ │ │ ├── _index.md │ │ │ ├── config.md │ │ │ ├── run.md │ │ │ └── version.md │ │ ├── troubleshooting │ │ ├── _index.md │ │ ├── errors.md │ │ ├── frequently-asked-questions.md │ │ ├── query_management │ │ │ ├── _index.md │ │ │ ├── flux_query_management.md │ │ │ └── influxql_query_management.md │ │ ├── reporting-issues.md │ │ └── systemd.md │ │ └── write_protocols │ │ ├── _index.md │ │ ├── line_protocol_reference.md │ │ └── line_protocol_tutorial.md ├── example.md ├── flux │ └── v0 │ │ ├── _index.md │ │ ├── data-types │ │ ├── _index.md │ │ ├── basic │ │ │ ├── _index.md │ │ │ ├── bool.md │ │ │ ├── bytes.md │ │ │ ├── duration.md │ │ │ ├── float.md │ │ │ ├── int.md │ │ │ ├── null.md │ │ │ ├── regexp.md │ │ │ ├── string.md │ │ │ ├── time.md │ │ │ └── uint.md │ │ ├── composite │ │ │ ├── _index.md │ │ │ ├── array.md │ │ │ ├── dict.md │ │ │ ├── function.md │ │ │ └── record.md │ │ ├── dynamic.md │ │ └── union.md │ │ ├── define-functions.md │ │ ├── function-type-signatures.md │ │ ├── function-types.md │ │ ├── future-of-flux.md │ │ ├── get-started │ │ ├── _index.md │ │ ├── data-model.md │ │ ├── query-basics.md │ │ └── syntax-basics.md │ │ ├── influxdb-versions.md │ │ ├── join-data │ │ ├── _index.md │ │ ├── full-outer.md │ │ ├── inner.md │ │ ├── left-outer.md │ │ ├── right-outer.md │ │ ├── time.md │ │ └── troubleshoot-joins.md │ │ ├── prometheus │ │ ├── _index.md │ │ ├── metric-types │ │ │ ├── _index.md │ │ │ ├── counter.md │ │ │ ├── gauge.md │ │ │ ├── histogram.md │ │ │ └── summary.md │ │ └── scrape-prometheus.md │ │ ├── query-data │ │ ├── _index.md │ │ ├── bigtable.md │ │ ├── csv.md │ │ ├── influxdb.md │ │ └── sql │ │ │ ├── _index.md │ │ │ ├── amazon-rds.md │ │ │ ├── athena.md │ │ │ ├── bigquery.md │ │ │ ├── cockroachdb.md │ │ │ ├── mariadb.md │ │ │ ├── mysql.md │ │ │ ├── percona.md │ │ │ ├── postgresql.md │ │ │ ├── sap-hana.md │ │ │ ├── snowflake.md │ │ │ ├── sql-server.md │ │ │ ├── sqlite.md │ │ │ └── vertica.md │ │ ├── release-notes.md │ │ ├── spec │ │ ├── _index.md │ │ ├── assignment-scope.md │ │ ├── attributes.md │ │ ├── blocks.md │ │ ├── data-model.md │ │ ├── expressions.md │ │ ├── lexical-elements.md │ │ ├── notation.md │ │ ├── operators.md │ │ ├── options.md │ │ ├── packages.md │ │ ├── representation.md │ │ ├── side-effects.md │ │ ├── statements.md │ │ ├── system-built-ins.md │ │ ├── types.md │ │ └── variables.md │ │ ├── stdlib │ │ ├── _index.md │ │ ├── all-functions.md │ │ ├── array │ │ │ ├── _index.md │ │ │ ├── concat.md │ │ │ ├── filter.md │ │ │ ├── from.md │ │ │ └── map.md │ │ ├── bitwise │ │ │ ├── _index.md │ │ │ ├── sand.md │ │ │ ├── sclear.md │ │ │ ├── slshift.md │ │ │ ├── snot.md │ │ │ ├── sor.md │ │ │ ├── srshift.md │ │ │ ├── sxor.md │ │ │ ├── uand.md │ │ │ ├── uclear.md │ │ │ ├── ulshift.md │ │ │ ├── unot.md │ │ │ ├── uor.md │ │ │ ├── urshift.md │ │ │ └── uxor.md │ │ ├── contrib │ │ │ ├── RohanSreerama5 │ │ │ │ ├── _index.md │ │ │ │ └── naiveBayesClassifier │ │ │ │ │ ├── _index.md │ │ │ │ │ └── naivebayes.md │ │ │ ├── _index.md │ │ │ ├── anaisdg │ │ │ │ ├── _index.md │ │ │ │ ├── anomalydetection │ │ │ │ │ ├── _index.md │ │ │ │ │ └── mad.md │ │ │ │ └── statsmodels │ │ │ │ │ ├── _index.md │ │ │ │ │ └── linearregression.md │ │ │ ├── bonitoo-io │ │ │ │ ├── _index.md │ │ │ │ ├── alerta │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── alert.md │ │ │ │ │ └── endpoint.md │ │ │ │ ├── hex │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── bytes.md │ │ │ │ │ ├── int.md │ │ │ │ │ ├── string.md │ │ │ │ │ └── uint.md │ │ │ │ ├── servicenow │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── event.md │ │ │ │ ├── tickscript │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── alert.md │ │ │ │ │ ├── compute.md │ │ │ │ │ ├── deadman.md │ │ │ │ │ ├── definecheck.md │ │ │ │ │ ├── groupby.md │ │ │ │ │ ├── join.md │ │ │ │ │ ├── select.md │ │ │ │ │ └── selectwindow.md │ │ │ │ ├── victorops │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── alert.md │ │ │ │ │ └── endpoint.md │ │ │ │ └── zenoss │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── event.md │ │ │ ├── chobbs │ │ │ │ ├── _index.md │ │ │ │ └── discord │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── send.md │ │ │ ├── jsternberg │ │ │ │ ├── _index.md │ │ │ │ └── influxdb │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── from.md │ │ │ │ │ └── select.md │ │ │ ├── qxip │ │ │ │ ├── _index.md │ │ │ │ ├── clickhouse │ │ │ │ │ ├── _index.md │ │ │ │ │ └── query.md │ │ │ │ ├── hash │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── b64.md │ │ │ │ │ ├── cityhash64.md │ │ │ │ │ ├── hmac.md │ │ │ │ │ ├── md5.md │ │ │ │ │ ├── sha1.md │ │ │ │ │ ├── sha256.md │ │ │ │ │ └── xxhash64.md │ │ │ │ └── logql │ │ │ │ │ ├── _index.md │ │ │ │ │ └── query_range.md │ │ │ ├── rhajek │ │ │ │ ├── _index.md │ │ │ │ └── bigpanda │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ ├── sendalert.md │ │ │ │ │ └── statusfromlevel.md │ │ │ ├── sranka │ │ │ │ ├── _index.md │ │ │ │ ├── opsgenie │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ ├── responderstojson.md │ │ │ │ │ └── sendalert.md │ │ │ │ ├── sensu │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ ├── event.md │ │ │ │ │ └── tosensuname.md │ │ │ │ ├── teams │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── message.md │ │ │ │ ├── telegram │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── message.md │ │ │ │ └── webexteams │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── endpoint.md │ │ │ │ │ └── message.md │ │ │ └── tomhollingworth │ │ │ │ ├── _index.md │ │ │ │ └── events │ │ │ │ ├── _index.md │ │ │ │ └── duration.md │ │ ├── csv │ │ │ ├── _index.md │ │ │ └── from.md │ │ ├── date │ │ │ ├── _index.md │ │ │ ├── add.md │ │ │ ├── boundaries │ │ │ │ ├── _index.md │ │ │ │ ├── friday.md │ │ │ │ ├── monday.md │ │ │ │ ├── month.md │ │ │ │ ├── saturday.md │ │ │ │ ├── sunday.md │ │ │ │ ├── thursday.md │ │ │ │ ├── tuesday.md │ │ │ │ ├── wednesday.md │ │ │ │ ├── week.md │ │ │ │ └── yesterday.md │ │ │ ├── hour.md │ │ │ ├── microsecond.md │ │ │ ├── millisecond.md │ │ │ ├── minute.md │ │ │ ├── month.md │ │ │ ├── monthday.md │ │ │ ├── nanosecond.md │ │ │ ├── quarter.md │ │ │ ├── scale.md │ │ │ ├── second.md │ │ │ ├── sub.md │ │ │ ├── time.md │ │ │ ├── truncate.md │ │ │ ├── week.md │ │ │ ├── weekday.md │ │ │ ├── year.md │ │ │ └── yearday.md │ │ ├── dict │ │ │ ├── _index.md │ │ │ ├── fromlist.md │ │ │ ├── get.md │ │ │ ├── insert.md │ │ │ └── remove.md │ │ ├── experimental │ │ │ ├── _index.md │ │ │ ├── addduration.md │ │ │ ├── aggregate │ │ │ │ ├── _index.md │ │ │ │ └── rate.md │ │ │ ├── aligntime.md │ │ │ ├── array │ │ │ │ ├── _index.md │ │ │ │ ├── concat.md │ │ │ │ ├── filter.md │ │ │ │ ├── from.md │ │ │ │ ├── map.md │ │ │ │ ├── tobool.md │ │ │ │ ├── toduration.md │ │ │ │ ├── tofloat.md │ │ │ │ ├── toint.md │ │ │ │ ├── tostring.md │ │ │ │ ├── totime.md │ │ │ │ └── touint.md │ │ │ ├── bigtable │ │ │ │ ├── _index.md │ │ │ │ └── from.md │ │ │ ├── bitwise │ │ │ │ ├── _index.md │ │ │ │ ├── sand.md │ │ │ │ ├── sclear.md │ │ │ │ ├── slshift.md │ │ │ │ ├── snot.md │ │ │ │ ├── sor.md │ │ │ │ ├── srshift.md │ │ │ │ ├── sxor.md │ │ │ │ ├── uand.md │ │ │ │ ├── uclear.md │ │ │ │ ├── ulshift.md │ │ │ │ ├── unot.md │ │ │ │ ├── uor.md │ │ │ │ ├── urshift.md │ │ │ │ └── uxor.md │ │ │ ├── catch.md │ │ │ ├── chain.md │ │ │ ├── count.md │ │ │ ├── csv │ │ │ │ ├── _index.md │ │ │ │ └── from.md │ │ │ ├── date │ │ │ │ ├── _index.md │ │ │ │ └── boundaries │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── friday.md │ │ │ │ │ ├── monday.md │ │ │ │ │ ├── month.md │ │ │ │ │ ├── saturday.md │ │ │ │ │ ├── sunday.md │ │ │ │ │ ├── thursday.md │ │ │ │ │ ├── tuesday.md │ │ │ │ │ ├── wednesday.md │ │ │ │ │ ├── week.md │ │ │ │ │ └── yesterday.md │ │ │ ├── diff.md │ │ │ ├── distinct.md │ │ │ ├── dynamic │ │ │ │ ├── _index.md │ │ │ │ ├── asarray.md │ │ │ │ ├── dynamic.md │ │ │ │ ├── istype.md │ │ │ │ ├── jsonencode.md │ │ │ │ └── jsonparse.md │ │ │ ├── fill.md │ │ │ ├── first.md │ │ │ ├── geo │ │ │ │ ├── _index.md │ │ │ │ ├── astracks.md │ │ │ │ ├── filterrows.md │ │ │ │ ├── getgrid.md │ │ │ │ ├── getlevel.md │ │ │ │ ├── gridfilter.md │ │ │ │ ├── groupbyarea.md │ │ │ │ ├── s2cellidtoken.md │ │ │ │ ├── s2celllatlon.md │ │ │ │ ├── shapedata.md │ │ │ │ ├── st_contains.md │ │ │ │ ├── st_distance.md │ │ │ │ ├── st_dwithin.md │ │ │ │ ├── st_intersects.md │ │ │ │ ├── st_length.md │ │ │ │ ├── st_linestring.md │ │ │ │ ├── stcontains.md │ │ │ │ ├── stdistance.md │ │ │ │ ├── stlength.md │ │ │ │ ├── strictfilter.md │ │ │ │ ├── torows.md │ │ │ │ └── totaldistance.md │ │ │ ├── group.md │ │ │ ├── histogram.md │ │ │ ├── histogramquantile.md │ │ │ ├── http │ │ │ │ ├── _index.md │ │ │ │ ├── get.md │ │ │ │ └── requests │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── do.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── peek.md │ │ │ │ │ └── post.md │ │ │ ├── influxdb │ │ │ │ ├── _index.md │ │ │ │ └── api.md │ │ │ ├── integral.md │ │ │ ├── iox │ │ │ │ ├── _index.md │ │ │ │ ├── from.md │ │ │ │ ├── sql.md │ │ │ │ └── sqlinterval.md │ │ │ ├── join.md │ │ │ ├── json │ │ │ │ ├── _index.md │ │ │ │ └── parse.md │ │ │ ├── kaufmansama.md │ │ │ ├── last.md │ │ │ ├── max.md │ │ │ ├── mean.md │ │ │ ├── min.md │ │ │ ├── mode.md │ │ │ ├── mqtt │ │ │ │ ├── _index.md │ │ │ │ ├── publish.md │ │ │ │ └── to.md │ │ │ ├── objectkeys.md │ │ │ ├── oee │ │ │ │ ├── _index.md │ │ │ │ ├── apq.md │ │ │ │ └── computeapq.md │ │ │ ├── polyline │ │ │ │ ├── _index.md │ │ │ │ └── rdp.md │ │ │ ├── preview.md │ │ │ ├── prometheus │ │ │ │ ├── _index.md │ │ │ │ ├── histogramquantile.md │ │ │ │ └── scrape.md │ │ │ ├── quantile.md │ │ │ ├── query │ │ │ │ ├── _index.md │ │ │ │ ├── filterfields.md │ │ │ │ ├── filtermeasurement.md │ │ │ │ ├── fromrange.md │ │ │ │ └── inbucket.md │ │ │ ├── record │ │ │ │ ├── _index.md │ │ │ │ └── get.md │ │ │ ├── set.md │ │ │ ├── skew.md │ │ │ ├── spread.md │ │ │ ├── stddev.md │ │ │ ├── subduration.md │ │ │ ├── sum.md │ │ │ ├── table │ │ │ │ ├── _index.md │ │ │ │ └── fill.md │ │ │ ├── to.md │ │ │ ├── unique.md │ │ │ ├── unpivot.md │ │ │ ├── usage │ │ │ │ ├── _index.md │ │ │ │ ├── from.md │ │ │ │ └── limits.md │ │ │ └── window.md │ │ ├── generate │ │ │ ├── _index.md │ │ │ └── from.md │ │ ├── http │ │ │ ├── _index.md │ │ │ ├── basicauth.md │ │ │ ├── endpoint.md │ │ │ ├── pathescape.md │ │ │ ├── post.md │ │ │ └── requests │ │ │ │ ├── _index.md │ │ │ │ ├── do.md │ │ │ │ ├── get.md │ │ │ │ ├── peek.md │ │ │ │ └── post.md │ │ ├── influxdata │ │ │ ├── _index.md │ │ │ └── influxdb │ │ │ │ ├── _index.md │ │ │ │ ├── buckets.md │ │ │ │ ├── cardinality.md │ │ │ │ ├── from.md │ │ │ │ ├── monitor │ │ │ │ ├── _index.md │ │ │ │ ├── check.md │ │ │ │ ├── deadman.md │ │ │ │ ├── from.md │ │ │ │ ├── log.md │ │ │ │ ├── logs.md │ │ │ │ ├── notify.md │ │ │ │ ├── statechanges.md │ │ │ │ ├── statechangesonly.md │ │ │ │ └── write.md │ │ │ │ ├── sample │ │ │ │ ├── _index.md │ │ │ │ ├── aligntonow.md │ │ │ │ ├── data.md │ │ │ │ └── list.md │ │ │ │ ├── schema │ │ │ │ ├── _index.md │ │ │ │ ├── fieldkeys.md │ │ │ │ ├── fieldsascols.md │ │ │ │ ├── measurementfieldkeys.md │ │ │ │ ├── measurements.md │ │ │ │ ├── measurementtagkeys.md │ │ │ │ ├── measurementtagvalues.md │ │ │ │ ├── tagkeys.md │ │ │ │ └── tagvalues.md │ │ │ │ ├── secrets │ │ │ │ ├── _index.md │ │ │ │ └── get.md │ │ │ │ ├── tasks │ │ │ │ ├── _index.md │ │ │ │ └── lastsuccess.md │ │ │ │ ├── to.md │ │ │ │ ├── v1 │ │ │ │ ├── _index.md │ │ │ │ ├── databases.md │ │ │ │ ├── fieldkeys.md │ │ │ │ ├── fieldsascols.md │ │ │ │ ├── json.md │ │ │ │ ├── measurementfieldkeys.md │ │ │ │ ├── measurements.md │ │ │ │ ├── measurementtagkeys.md │ │ │ │ ├── measurementtagvalues.md │ │ │ │ ├── tagkeys.md │ │ │ │ └── tagvalues.md │ │ │ │ └── wideto.md │ │ ├── internal │ │ │ ├── _index.md │ │ │ ├── boolean │ │ │ │ └── _index.md │ │ │ ├── debug │ │ │ │ ├── _index.md │ │ │ │ ├── feature.md │ │ │ │ ├── getoption.md │ │ │ │ ├── null.md │ │ │ │ ├── opaque.md │ │ │ │ ├── pass.md │ │ │ │ ├── sink.md │ │ │ │ └── slurp.md │ │ │ ├── gen │ │ │ │ ├── _index.md │ │ │ │ └── tables.md │ │ │ ├── influxql │ │ │ │ └── _index.md │ │ │ ├── location │ │ │ │ └── _index.md │ │ │ ├── promql │ │ │ │ ├── _index.md │ │ │ │ ├── changes.md │ │ │ │ ├── emptytable.md │ │ │ │ ├── extrapolatedrate.md │ │ │ │ ├── holtwinters.md │ │ │ │ ├── instantrate.md │ │ │ │ ├── join.md │ │ │ │ ├── labelreplace.md │ │ │ │ ├── linearregression.md │ │ │ │ ├── promhistogramquantile.md │ │ │ │ ├── promqldayofmonth.md │ │ │ │ ├── promqldayofweek.md │ │ │ │ ├── promqldaysinmonth.md │ │ │ │ ├── promqlhour.md │ │ │ │ ├── promqlminute.md │ │ │ │ ├── promqlmonth.md │ │ │ │ ├── promqlyear.md │ │ │ │ ├── quantile.md │ │ │ │ ├── resets.md │ │ │ │ └── timestamp.md │ │ │ ├── testing │ │ │ │ ├── _index.md │ │ │ │ ├── assertmatches.md │ │ │ │ └── shoulderrorwithcode.md │ │ │ └── testutil │ │ │ │ ├── _index.md │ │ │ │ ├── fail.md │ │ │ │ ├── makeany.md │ │ │ │ ├── makerecord.md │ │ │ │ └── yield.md │ │ ├── interpolate │ │ │ ├── _index.md │ │ │ └── linear.md │ │ ├── join │ │ │ ├── _index.md │ │ │ ├── full.md │ │ │ ├── inner.md │ │ │ ├── left.md │ │ │ ├── right.md │ │ │ ├── tables.md │ │ │ └── time.md │ │ ├── json │ │ │ ├── _index.md │ │ │ └── encode.md │ │ ├── kafka │ │ │ ├── _index.md │ │ │ └── to.md │ │ ├── math │ │ │ ├── _index.md │ │ │ ├── abs.md │ │ │ ├── acos.md │ │ │ ├── acosh.md │ │ │ ├── asin.md │ │ │ ├── asinh.md │ │ │ ├── atan.md │ │ │ ├── atan2.md │ │ │ ├── atanh.md │ │ │ ├── cbrt.md │ │ │ ├── ceil.md │ │ │ ├── copysign.md │ │ │ ├── cos.md │ │ │ ├── cosh.md │ │ │ ├── dim.md │ │ │ ├── erf.md │ │ │ ├── erfc.md │ │ │ ├── erfcinv.md │ │ │ ├── erfinv.md │ │ │ ├── exp.md │ │ │ ├── exp2.md │ │ │ ├── expm1.md │ │ │ ├── float64bits.md │ │ │ ├── float64frombits.md │ │ │ ├── floor.md │ │ │ ├── frexp.md │ │ │ ├── gamma.md │ │ │ ├── hypot.md │ │ │ ├── ilogb.md │ │ │ ├── isinf.md │ │ │ ├── isnan.md │ │ │ ├── j0.md │ │ │ ├── j1.md │ │ │ ├── jn.md │ │ │ ├── ldexp.md │ │ │ ├── lgamma.md │ │ │ ├── log.md │ │ │ ├── log10.md │ │ │ ├── log1p.md │ │ │ ├── log2.md │ │ │ ├── logb.md │ │ │ ├── minf.md │ │ │ ├── mmax.md │ │ │ ├── mmin.md │ │ │ ├── mod.md │ │ │ ├── modf.md │ │ │ ├── nan.md │ │ │ ├── nextafter.md │ │ │ ├── pow.md │ │ │ ├── pow10.md │ │ │ ├── remainder.md │ │ │ ├── round.md │ │ │ ├── roundtoeven.md │ │ │ ├── signbit.md │ │ │ ├── sin.md │ │ │ ├── sincos.md │ │ │ ├── sinh.md │ │ │ ├── sqrt.md │ │ │ ├── tan.md │ │ │ ├── tanh.md │ │ │ ├── trunc.md │ │ │ ├── y0.md │ │ │ ├── y1.md │ │ │ └── yn.md │ │ ├── pagerduty │ │ │ ├── _index.md │ │ │ ├── actionfromlevel.md │ │ │ ├── actionfromseverity.md │ │ │ ├── dedupkey.md │ │ │ ├── endpoint.md │ │ │ ├── sendevent.md │ │ │ └── severityfromlevel.md │ │ ├── planner │ │ │ └── _index.md │ │ ├── profiler │ │ │ └── _index.md │ │ ├── pushbullet │ │ │ ├── _index.md │ │ │ ├── endpoint.md │ │ │ ├── pushdata.md │ │ │ └── pushnote.md │ │ ├── regexp │ │ │ ├── _index.md │ │ │ ├── compile.md │ │ │ ├── findstring.md │ │ │ ├── findstringindex.md │ │ │ ├── getstring.md │ │ │ ├── matchregexpstring.md │ │ │ ├── quotemeta.md │ │ │ ├── replaceallstring.md │ │ │ └── splitregexp.md │ │ ├── runtime │ │ │ ├── _index.md │ │ │ └── version.md │ │ ├── sampledata │ │ │ ├── _index.md │ │ │ ├── bool.md │ │ │ ├── float.md │ │ │ ├── int.md │ │ │ ├── numericbool.md │ │ │ ├── string.md │ │ │ └── uint.md │ │ ├── slack │ │ │ ├── _index.md │ │ │ ├── endpoint.md │ │ │ ├── message.md │ │ │ └── validatecolorstring.md │ │ ├── socket │ │ │ ├── _index.md │ │ │ └── from.md │ │ ├── sql │ │ │ ├── _index.md │ │ │ ├── from.md │ │ │ └── to.md │ │ ├── strings │ │ │ ├── _index.md │ │ │ ├── compare.md │ │ │ ├── containsany.md │ │ │ ├── containsstr.md │ │ │ ├── countstr.md │ │ │ ├── equalfold.md │ │ │ ├── hasprefix.md │ │ │ ├── hassuffix.md │ │ │ ├── index-fn.md │ │ │ ├── indexany.md │ │ │ ├── isdigit.md │ │ │ ├── isletter.md │ │ │ ├── islower.md │ │ │ ├── isupper.md │ │ │ ├── joinstr.md │ │ │ ├── lastindex.md │ │ │ ├── lastindexany.md │ │ │ ├── repeat.md │ │ │ ├── replace.md │ │ │ ├── replaceall.md │ │ │ ├── split.md │ │ │ ├── splitafter.md │ │ │ ├── splitaftern.md │ │ │ ├── splitn.md │ │ │ ├── strlen.md │ │ │ ├── substring.md │ │ │ ├── title.md │ │ │ ├── tolower.md │ │ │ ├── totitle.md │ │ │ ├── toupper.md │ │ │ ├── trim.md │ │ │ ├── trimleft.md │ │ │ ├── trimprefix.md │ │ │ ├── trimright.md │ │ │ ├── trimspace.md │ │ │ └── trimsuffix.md │ │ ├── system │ │ │ ├── _index.md │ │ │ └── time.md │ │ ├── testing │ │ │ ├── _index.md │ │ │ ├── assertempty.md │ │ │ ├── assertequals.md │ │ │ ├── assertequalvalues.md │ │ │ ├── diff.md │ │ │ ├── expect │ │ │ │ ├── _index.md │ │ │ │ └── planner.md │ │ │ ├── load.md │ │ │ └── shoulderror.md │ │ ├── timezone │ │ │ ├── _index.md │ │ │ ├── fixed.md │ │ │ └── location.md │ │ ├── types │ │ │ ├── _index.md │ │ │ ├── isnumeric.md │ │ │ └── istype.md │ │ └── universe │ │ │ ├── _index.md │ │ │ ├── aggregatewindow.md │ │ │ ├── bool.md │ │ │ ├── bottom.md │ │ │ ├── bytes.md │ │ │ ├── chandemomentumoscillator.md │ │ │ ├── columns.md │ │ │ ├── contains.md │ │ │ ├── count.md │ │ │ ├── cov.md │ │ │ ├── covariance.md │ │ │ ├── cumulativesum.md │ │ │ ├── derivative.md │ │ │ ├── die.md │ │ │ ├── difference.md │ │ │ ├── display.md │ │ │ ├── distinct.md │ │ │ ├── doubleema.md │ │ │ ├── drop.md │ │ │ ├── duplicate.md │ │ │ ├── duration.md │ │ │ ├── elapsed.md │ │ │ ├── exponentialmovingaverage.md │ │ │ ├── fill.md │ │ │ ├── filter.md │ │ │ ├── findcolumn.md │ │ │ ├── findrecord.md │ │ │ ├── first.md │ │ │ ├── float.md │ │ │ ├── getcolumn.md │ │ │ ├── getrecord.md │ │ │ ├── group.md │ │ │ ├── highestaverage.md │ │ │ ├── highestcurrent.md │ │ │ ├── highestmax.md │ │ │ ├── histogram.md │ │ │ ├── histogramquantile.md │ │ │ ├── holtwinters.md │ │ │ ├── hourselection.md │ │ │ ├── increase.md │ │ │ ├── int.md │ │ │ ├── integral.md │ │ │ ├── join.md │ │ │ ├── kaufmansama.md │ │ │ ├── kaufmanser.md │ │ │ ├── keep.md │ │ │ ├── keys.md │ │ │ ├── keyvalues.md │ │ │ ├── last.md │ │ │ ├── length.md │ │ │ ├── limit.md │ │ │ ├── linearbins.md │ │ │ ├── logarithmicbins.md │ │ │ ├── lowestaverage.md │ │ │ ├── lowestcurrent.md │ │ │ ├── lowestmin.md │ │ │ ├── map.md │ │ │ ├── max.md │ │ │ ├── mean.md │ │ │ ├── median.md │ │ │ ├── min.md │ │ │ ├── mode.md │ │ │ ├── movingaverage.md │ │ │ ├── now.md │ │ │ ├── pearsonr.md │ │ │ ├── pivot.md │ │ │ ├── quantile.md │ │ │ ├── range.md │ │ │ ├── reduce.md │ │ │ ├── relativestrengthindex.md │ │ │ ├── rename.md │ │ │ ├── sample.md │ │ │ ├── set.md │ │ │ ├── skew.md │ │ │ ├── sort.md │ │ │ ├── spread.md │ │ │ ├── statecount.md │ │ │ ├── stateduration.md │ │ │ ├── statetracking.md │ │ │ ├── stddev.md │ │ │ ├── string.md │ │ │ ├── sum.md │ │ │ ├── tablefind.md │ │ │ ├── tail.md │ │ │ ├── time.md │ │ │ ├── timedmovingaverage.md │ │ │ ├── timeshift.md │ │ │ ├── timeweightedavg.md │ │ │ ├── tobool.md │ │ │ ├── today.md │ │ │ ├── tofloat.md │ │ │ ├── toint.md │ │ │ ├── top.md │ │ │ ├── tostring.md │ │ │ ├── totime.md │ │ │ ├── touint.md │ │ │ ├── tripleema.md │ │ │ ├── tripleexponentialderivative.md │ │ │ ├── truncatetimecolumn.md │ │ │ ├── uint.md │ │ │ ├── union.md │ │ │ ├── unique.md │ │ │ ├── window.md │ │ │ └── yield.md │ │ └── write-data │ │ ├── _index.md │ │ ├── influxdb.md │ │ └── sql │ │ ├── _index.md │ │ ├── amazon-rds.md │ │ ├── bigquery.md │ │ ├── cockroachdb.md │ │ ├── mariadb.md │ │ ├── mysql.md │ │ ├── percona.md │ │ ├── postgresql.md │ │ ├── sap-hana.md │ │ ├── snowflake.md │ │ ├── sql-server.md │ │ ├── sqlite.md │ │ └── vertica.md ├── influxdb │ ├── cloud │ │ ├── _index.md │ │ ├── account-management │ │ │ ├── _index.md │ │ │ ├── billing.md │ │ │ ├── change-password.md │ │ │ ├── data-usage.md │ │ │ ├── limits.md │ │ │ ├── offboarding.md │ │ │ ├── pricing-calculator.md │ │ │ ├── pricing-plans.md │ │ │ ├── switch-account.md │ │ │ └── switch-org.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── buckets │ │ │ │ ├── _index.md │ │ │ │ ├── bucket-schema.md │ │ │ │ ├── create-bucket.md │ │ │ │ ├── delete-bucket.md │ │ │ │ ├── update-bucket.md │ │ │ │ └── view-buckets.md │ │ │ ├── identify-version.md │ │ │ ├── organizations │ │ │ │ ├── _index.md │ │ │ │ ├── delete-org.md │ │ │ │ ├── migrate-org.md │ │ │ │ ├── update-org.md │ │ │ │ ├── users.md │ │ │ │ └── view-orgs.md │ │ │ ├── secrets │ │ │ │ ├── _index.md │ │ │ │ ├── add.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ ├── use.md │ │ │ │ └── view.md │ │ │ └── tokens │ │ │ │ ├── _index.md │ │ │ │ ├── create-token.md │ │ │ │ ├── delete-token.md │ │ │ │ ├── update-tokens.md │ │ │ │ ├── use-tokens.md │ │ │ │ └── view-tokens.md │ │ ├── api-guide │ │ │ ├── _index.md │ │ │ ├── api-invokable-scripts │ │ │ │ └── _index.md │ │ │ ├── api_intro.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── arduino.md │ │ │ │ ├── browserjs.md │ │ │ │ ├── csharp.md │ │ │ │ ├── dart.md │ │ │ │ ├── go.md │ │ │ │ ├── java.md │ │ │ │ ├── kotlin.md │ │ │ │ ├── nodejs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── install.md │ │ │ │ │ ├── query.md │ │ │ │ │ └── write.md │ │ │ │ ├── php.md │ │ │ │ ├── python.md │ │ │ │ ├── r.md │ │ │ │ ├── ruby.md │ │ │ │ ├── scala.md │ │ │ │ └── swift.md │ │ │ ├── influxdb-1x │ │ │ │ ├── _index.md │ │ │ │ ├── dbrp.md │ │ │ │ ├── query.md │ │ │ │ └── write.md │ │ │ └── tutorials │ │ │ │ ├── _index.md │ │ │ │ ├── nodejs.md │ │ │ │ └── python.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── process.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ ├── visualize.md │ │ │ └── write.md │ │ ├── migrate-regions.md │ │ ├── monitor-alert │ │ │ ├── _index.md │ │ │ ├── checks │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── custom-checks.md │ │ │ ├── notification-endpoints │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── notification-rules │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── send-email.md │ │ │ └── templates │ │ │ │ ├── _index.md │ │ │ │ ├── infrastructure │ │ │ │ ├── _index.md │ │ │ │ ├── aws.md │ │ │ │ ├── docker.md │ │ │ │ ├── raspberry-pi.md │ │ │ │ ├── vshpere.md │ │ │ │ └── windows.md │ │ │ │ ├── monitor.md │ │ │ │ └── networks │ │ │ │ ├── _index.md │ │ │ │ └── haproxy.md │ │ ├── process-data │ │ │ ├── _index.md │ │ │ ├── common-tasks │ │ │ │ ├── _index.md │ │ │ │ ├── downsample-data-quix.md │ │ │ │ └── downsample-data.md │ │ │ ├── get-started.md │ │ │ ├── manage-tasks │ │ │ │ ├── _index.md │ │ │ │ ├── create-task.md │ │ │ │ ├── delete-task.md │ │ │ │ ├── export-task.md │ │ │ │ ├── run-task.md │ │ │ │ ├── task-run-history.md │ │ │ │ ├── update-task.md │ │ │ │ └── view-tasks.md │ │ │ └── task-options.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── common-queries │ │ │ │ ├── _index.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── iot-common-queries.md │ │ │ │ ├── multiple-fields-in-calculations.md │ │ │ │ └── operate-on-columns.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── data-explorer.md │ │ │ │ ├── flux-repl.md │ │ │ │ ├── influx-api.md │ │ │ │ ├── influx-query.md │ │ │ │ ├── query-demo-data.md │ │ │ │ └── query-sample-data.md │ │ │ ├── flux │ │ │ │ ├── _index.md │ │ │ │ ├── calculate-percentages.md │ │ │ │ ├── conditional-logic.md │ │ │ │ ├── cumulativesum.md │ │ │ │ ├── custom-functions │ │ │ │ │ ├── _index.md │ │ │ │ │ └── custom-aggregate.md │ │ │ │ ├── exists.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill.md │ │ │ │ ├── first-last.md │ │ │ │ ├── flux-version.md │ │ │ │ ├── geo │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── filter-by-region.md │ │ │ │ │ ├── group-geo-data.md │ │ │ │ │ └── shape-geo-data.md │ │ │ │ ├── group-data.md │ │ │ │ ├── histograms.md │ │ │ │ ├── increase.md │ │ │ │ ├── join.md │ │ │ │ ├── mathematic-operations.md │ │ │ │ ├── median.md │ │ │ │ ├── monitor-states.md │ │ │ │ ├── moving-average.md │ │ │ │ ├── operate-on-timestamps.md │ │ │ │ ├── percentile-quantile.md │ │ │ │ ├── query-fields.md │ │ │ │ ├── rate.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── scalar-values.md │ │ │ │ ├── sort-limit.md │ │ │ │ ├── sql.md │ │ │ │ └── window-aggregate.md │ │ │ ├── get-started │ │ │ │ ├── _index.md │ │ │ │ ├── query-influxdb.md │ │ │ │ └── transform-data.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── dbrp.md │ │ │ │ ├── explore-data │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── group-by.md │ │ │ │ │ ├── limit-and-slimit.md │ │ │ │ │ ├── offset-and-soffset.md │ │ │ │ │ ├── order-by.md │ │ │ │ │ ├── regular-expressions.md │ │ │ │ │ ├── select.md │ │ │ │ │ ├── subqueries.md │ │ │ │ │ ├── time-and-timezone.md │ │ │ │ │ └── where.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── manage-data.md │ │ │ │ └── math-operators.md │ │ │ ├── optimize-queries.md │ │ │ └── parameterized-queries.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influx │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── apply │ │ │ │ │ └── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── active.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── inactive.md │ │ │ │ │ └── list.md │ │ │ │ │ ├── backup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── bucket-schema │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── bucket │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── completion │ │ │ │ │ └── _index.md │ │ │ │ │ ├── config │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── set.md │ │ │ │ │ ├── dashboards │ │ │ │ │ └── _index.md │ │ │ │ │ ├── delete │ │ │ │ │ └── _index.md │ │ │ │ │ ├── export │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── all.md │ │ │ │ │ └── stack.md │ │ │ │ │ ├── help │ │ │ │ │ └── _index.md │ │ │ │ │ ├── org │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── members │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── add.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── ping │ │ │ │ │ └── _index.md │ │ │ │ │ ├── query │ │ │ │ │ └── _index.md │ │ │ │ │ ├── remote │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── replication │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── restore │ │ │ │ │ └── index.md │ │ │ │ │ ├── scripts │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invoke.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── retrieve.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── secret │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── setup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── stacks │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── init.md │ │ │ │ │ ├── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── task │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── log │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── list.md │ │ │ │ │ ├── retry-failed.md │ │ │ │ │ ├── run │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── retry.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── telegrafs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── template │ │ │ │ │ ├── _index.md │ │ │ │ │ └── validate.md │ │ │ │ │ ├── transpile │ │ │ │ │ └── _index.md │ │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── password.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── v1 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ ├── set-active.md │ │ │ │ │ │ ├── set-inactive.md │ │ │ │ │ │ └── set-password.md │ │ │ │ │ ├── dbrp │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── update.md │ │ │ │ │ └── shell.md │ │ │ │ │ ├── version │ │ │ │ │ └── _index.md │ │ │ │ │ └── write │ │ │ │ │ ├── _index.md │ │ │ │ │ └── dryrun.md │ │ │ ├── faq.md │ │ │ ├── glossary.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── data-retention.md │ │ │ │ ├── durability.md │ │ │ │ ├── security.md │ │ │ │ ├── system-buckets.md │ │ │ │ └── ttbr.md │ │ │ ├── key-concepts │ │ │ │ ├── _index.md │ │ │ │ ├── data-elements.md │ │ │ │ ├── data-schema.md │ │ │ │ └── design-principles.md │ │ │ ├── policies │ │ │ │ ├── _index.md │ │ │ │ └── end-of-life.md │ │ │ ├── prometheus-metrics.md │ │ │ ├── regions.md │ │ │ ├── release-notes │ │ │ │ ├── _index.md │ │ │ │ ├── cloud-updates.md │ │ │ │ └── influx-cli.md │ │ │ ├── sample-data.md │ │ │ ├── service-notices │ │ │ │ ├── _index.md │ │ │ │ └── native-collector-mqtt-eol.md │ │ │ └── syntax │ │ │ │ ├── _index.md │ │ │ │ ├── annotated-csv │ │ │ │ ├── _index.md │ │ │ │ └── extended.md │ │ │ │ ├── delete-predicate.md │ │ │ │ ├── flux │ │ │ │ ├── _index.md │ │ │ │ └── flux-vs-influxql.md │ │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── internals.md │ │ │ │ └── spec.md │ │ │ │ └── line-protocol.md │ │ ├── security │ │ │ └── _index.md │ │ ├── sign-up.md │ │ ├── tags │ │ │ └── _index.md │ │ ├── tools │ │ │ ├── _index.md │ │ │ ├── chronograf.md │ │ │ ├── flux-repl.md │ │ │ ├── flux-vim-lsp.md │ │ │ ├── flux-vscode.md │ │ │ ├── grafana.md │ │ │ ├── influx-cli.md │ │ │ ├── influxdb-templates │ │ │ │ ├── _index.md │ │ │ │ ├── cloud.md │ │ │ │ ├── create.md │ │ │ │ ├── monitor-enterprise.md │ │ │ │ ├── stacks │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── init.md │ │ │ │ │ ├── remove.md │ │ │ │ │ ├── update.md │ │ │ │ │ └── view.md │ │ │ │ └── use.md │ │ │ ├── influxql-shell.md │ │ │ ├── kapacitor.md │ │ │ ├── notebooks │ │ │ │ ├── _index.md │ │ │ │ ├── clean-data.md │ │ │ │ ├── create-notebook.md │ │ │ │ ├── downsample.md │ │ │ │ ├── manage-notebooks.md │ │ │ │ ├── overview.md │ │ │ │ └── troubleshoot-notebooks.md │ │ │ ├── postman.md │ │ │ ├── telegraf-configs │ │ │ │ ├── _index.md │ │ │ │ ├── clone.md │ │ │ │ ├── create.md │ │ │ │ ├── remove.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ └── thingworx.md │ │ ├── upgrade │ │ │ ├── _index.md │ │ │ ├── v1-to-cloud │ │ │ │ ├── _index.md │ │ │ │ └── migrate-cqs.md │ │ │ └── v2-to-cloud.md │ │ ├── visualize-data │ │ │ ├── _index.md │ │ │ ├── annotations.md │ │ │ ├── dashboards │ │ │ │ ├── _index.md │ │ │ │ ├── control-dashboard.md │ │ │ │ ├── create-dashboard.md │ │ │ │ ├── delete-dashboard.md │ │ │ │ └── export-dashboard.md │ │ │ ├── explore-metrics.md │ │ │ ├── labels.md │ │ │ ├── variables │ │ │ │ ├── _index.md │ │ │ │ ├── common-variables.md │ │ │ │ ├── create-variable.md │ │ │ │ ├── delete-variable.md │ │ │ │ ├── export-variable.md │ │ │ │ ├── update-variable.md │ │ │ │ ├── variable-types.md │ │ │ │ └── view-variables.md │ │ │ └── visualization-types │ │ │ │ ├── _index.md │ │ │ │ ├── band.md │ │ │ │ ├── gauge.md │ │ │ │ ├── graph-single-stat.md │ │ │ │ ├── graph.md │ │ │ │ ├── heatmap.md │ │ │ │ ├── histogram.md │ │ │ │ ├── map.md │ │ │ │ ├── mosaic.md │ │ │ │ ├── scatter.md │ │ │ │ ├── single-stat.md │ │ │ │ └── table.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── duplicate-points.md │ │ │ ├── optimize-writes.md │ │ │ ├── resolve-high-cardinality.md │ │ │ └── schema-design.md │ │ │ ├── bulk-ingest-cloud.md │ │ │ ├── delete-data.md │ │ │ ├── developer-tools │ │ │ ├── _index.md │ │ │ ├── api.md │ │ │ ├── client-libraries.md │ │ │ ├── csv.md │ │ │ ├── influx-cli.md │ │ │ ├── line-protocol.md │ │ │ ├── scrape-prometheus-metrics.md │ │ │ └── third-party-solutions.md │ │ │ ├── migrate-data │ │ │ ├── _index.md │ │ │ ├── migrate-cloud-to-cloud.md │ │ │ ├── migrate-cloud-to-oss.md │ │ │ └── migrate-oss.md │ │ │ ├── no-code │ │ │ ├── _index.md │ │ │ ├── load-data.md │ │ │ ├── third-party.md │ │ │ └── use-telegraf │ │ │ │ ├── _index.md │ │ │ │ ├── auto-config.md │ │ │ │ ├── dual-write.md │ │ │ │ ├── manual-config.md │ │ │ │ └── use-telegraf-plugins │ │ │ │ ├── _index.md │ │ │ │ └── use-http-plugin.md │ │ │ ├── oss-to-cloud.md │ │ │ ├── replication │ │ │ ├── _index.md │ │ │ └── replicate-data.md │ │ │ └── troubleshoot.md │ ├── v1 │ │ ├── _index.md │ │ ├── about_the_project │ │ │ ├── _index.md │ │ │ ├── cla.md │ │ │ ├── contributing.md │ │ │ ├── licenses.md │ │ │ ├── release-notes.md │ │ │ └── third-party.md │ │ ├── additional_resources │ │ │ └── additional_resources.md │ │ ├── administration │ │ │ ├── _index.md │ │ │ ├── authentication_and_authorization.md │ │ │ ├── backup_and_restore.md │ │ │ ├── compact-series-file.md │ │ │ ├── config.md │ │ │ ├── https_setup.md │ │ │ ├── identify-version.md │ │ │ ├── logs.md │ │ │ ├── ports.md │ │ │ ├── rebuild-tsi-index.md │ │ │ ├── security.md │ │ │ ├── server_monitoring.md │ │ │ ├── stability_and_compatibility.md │ │ │ ├── subscription-management.md │ │ │ └── upgrading.md │ │ ├── concepts │ │ │ ├── _index.md │ │ │ ├── crosswalk.md │ │ │ ├── file-system-layout.md │ │ │ ├── glossary.md │ │ │ ├── insights_tradeoffs.md │ │ │ ├── key_concepts.md │ │ │ ├── schema_and_data_layout.md │ │ │ ├── storage_engine.md │ │ │ ├── time-series-index.md │ │ │ └── tsi-details.md │ │ ├── data_sources │ │ │ ├── carbon.md │ │ │ ├── collectd.md │ │ │ ├── diamond.md │ │ │ └── opentsdb.md │ │ ├── flux │ │ │ ├── _index.md │ │ │ ├── flux-vs-influxql.md │ │ │ ├── get-started │ │ │ │ ├── _index.md │ │ │ │ ├── query-influxdb.md │ │ │ │ ├── syntax-basics.md │ │ │ │ └── transform-data.md │ │ │ ├── guides │ │ │ │ ├── _index.md │ │ │ │ ├── calculate-percentages.md │ │ │ │ ├── conditional-logic.md │ │ │ │ ├── cumulativesum.md │ │ │ │ ├── execute-queries.md │ │ │ │ ├── exists.md │ │ │ │ ├── fill.md │ │ │ │ ├── first-last.md │ │ │ │ ├── flux-in-dashboards.md │ │ │ │ ├── geo │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── filter-by-region.md │ │ │ │ │ ├── group-geo-data.md │ │ │ │ │ └── shape-geo-data.md │ │ │ │ ├── group-data.md │ │ │ │ ├── histograms.md │ │ │ │ ├── increase.md │ │ │ │ ├── join.md │ │ │ │ ├── manipulate-timestamps.md │ │ │ │ ├── mathematic-operations.md │ │ │ │ ├── median.md │ │ │ │ ├── monitor-states.md │ │ │ │ ├── moving-average.md │ │ │ │ ├── optimize-queries.md │ │ │ │ ├── percentile-quantile.md │ │ │ │ ├── query-fields.md │ │ │ │ ├── rate.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── scalar-values.md │ │ │ │ ├── sort-limit.md │ │ │ │ ├── sql.md │ │ │ │ └── window-aggregate.md │ │ │ └── installation.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── calculate_percentages.md │ │ │ ├── downsample_and_retain.md │ │ │ ├── hardware_sizing.md │ │ │ ├── migrate-to-enterprise.md │ │ │ ├── query_data.md │ │ │ └── write_data.md │ │ ├── high_availability │ │ │ └── _index.md │ │ ├── introduction │ │ │ ├── _index.md │ │ │ ├── download.md │ │ │ ├── get-started │ │ │ │ └── _index.md │ │ │ ├── install.md │ │ │ └── install │ │ │ │ └── docker.md │ │ ├── query_language │ │ │ ├── _index.md │ │ │ ├── continuous_queries.md │ │ │ ├── explore-data.md │ │ │ ├── explore-schema.md │ │ │ ├── functions.md │ │ │ ├── manage-database.md │ │ │ ├── math_operators.md │ │ │ ├── sample-data.md │ │ │ └── spec.md │ │ ├── supported_protocols │ │ │ ├── _index.md │ │ │ ├── collectd.md │ │ │ ├── graphite.md │ │ │ ├── opentsdb.md │ │ │ ├── prometheus.md │ │ │ └── udp.md │ │ ├── tools │ │ │ ├── _index.md │ │ │ ├── api.md │ │ │ ├── api_client_libraries.md │ │ │ ├── flux-vscode.md │ │ │ ├── grafana.md │ │ │ ├── inch.md │ │ │ ├── influx-cli │ │ │ │ ├── _index.md │ │ │ │ └── use-influx-cli.md │ │ │ ├── influx_inspect.md │ │ │ └── influxd │ │ │ │ ├── _index.md │ │ │ │ ├── backup.md │ │ │ │ ├── config.md │ │ │ │ ├── restore.md │ │ │ │ ├── run.md │ │ │ │ └── version.md │ │ ├── troubleshooting │ │ │ ├── _index.md │ │ │ ├── errors.md │ │ │ ├── frequently-asked-questions.md │ │ │ ├── query_management.md │ │ │ └── systemd.md │ │ └── write_protocols │ │ │ ├── _index.md │ │ │ ├── line_protocol_reference.md │ │ │ └── line_protocol_tutorial.md │ └── v2 │ │ ├── .vale.ini │ │ ├── _index.md │ │ ├── admin │ │ ├── _index.md │ │ ├── backup-restore │ │ │ ├── _index.md │ │ │ ├── backup.md │ │ │ └── restore.md │ │ ├── buckets │ │ │ ├── _index.md │ │ │ ├── create-bucket.md │ │ │ ├── delete-bucket.md │ │ │ ├── update-bucket.md │ │ │ └── view-buckets.md │ │ ├── identify-version.md │ │ ├── internals │ │ │ ├── _index.md │ │ │ ├── tsi │ │ │ │ ├── _index.md │ │ │ │ ├── inspect.md │ │ │ │ └── rebuild-index.md │ │ │ ├── tsm │ │ │ │ └── _index.md │ │ │ └── wal │ │ │ │ └── _index.md │ │ ├── logs.md │ │ ├── organizations │ │ │ ├── _index.md │ │ │ ├── create-org.md │ │ │ ├── delete-org.md │ │ │ ├── members │ │ │ │ ├── _index.md │ │ │ │ ├── add-member.md │ │ │ │ ├── remove-member.md │ │ │ │ └── view-members.md │ │ │ ├── switch-org.md │ │ │ ├── update-org.md │ │ │ └── view-orgs.md │ │ ├── secrets │ │ │ ├── _index.md │ │ │ ├── add.md │ │ │ ├── delete.md │ │ │ ├── update.md │ │ │ ├── use-vault.md │ │ │ ├── use.md │ │ │ └── view.md │ │ ├── security │ │ │ ├── _index.md │ │ │ ├── disable-devel.md │ │ │ ├── enable-hardening.md │ │ │ └── enable-tls.md │ │ ├── tokens │ │ │ ├── _index.md │ │ │ ├── create-token.md │ │ │ ├── delete-token.md │ │ │ ├── update-tokens.md │ │ │ ├── use-tokens.md │ │ │ └── view-tokens.md │ │ └── users │ │ │ ├── _index.md │ │ │ ├── change-password.md │ │ │ ├── create-user.md │ │ │ ├── delete-user.md │ │ │ ├── recover-credentials.md │ │ │ ├── update-user.md │ │ │ └── view-users.md │ │ ├── api-guide │ │ ├── _index.md │ │ ├── api_intro.md │ │ ├── client-libraries │ │ │ ├── _index.md │ │ │ ├── arduino.md │ │ │ ├── browserjs.md │ │ │ ├── csharp.md │ │ │ ├── dart.md │ │ │ ├── go.md │ │ │ ├── java.md │ │ │ ├── kotlin.md │ │ │ ├── nodejs │ │ │ │ ├── _index.md │ │ │ │ ├── install.md │ │ │ │ ├── query.md │ │ │ │ └── write.md │ │ │ ├── php.md │ │ │ ├── python.md │ │ │ ├── r.md │ │ │ ├── ruby.md │ │ │ ├── scala.md │ │ │ └── swift.md │ │ ├── influxdb-1x │ │ │ ├── _index.md │ │ │ ├── dbrp.md │ │ │ ├── query.md │ │ │ └── write.md │ │ └── tutorials │ │ │ ├── _index.md │ │ │ ├── nodejs.md │ │ │ └── python.md │ │ ├── get-started │ │ ├── _index.md │ │ ├── process.md │ │ ├── query.md │ │ ├── setup.md │ │ ├── visualize.md │ │ └── write.md │ │ ├── install │ │ ├── _index.md │ │ ├── upgrade │ │ │ ├── _index.md │ │ │ ├── downgrade.md │ │ │ ├── v1-to-v2 │ │ │ │ ├── _index.md │ │ │ │ ├── automatic-upgrade.md │ │ │ │ ├── docker.md │ │ │ │ ├── manual-upgrade.md │ │ │ │ └── migrate-cqs.md │ │ │ ├── v2-beta-to-v2.md │ │ │ └── v2-to-v2.md │ │ └── use-docker-compose.md │ │ ├── monitor-alert │ │ ├── _index.md │ │ ├── checks │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── update.md │ │ │ └── view.md │ │ ├── custom-checks.md │ │ ├── notification-endpoints │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── update.md │ │ │ └── view.md │ │ ├── notification-rules │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── update.md │ │ │ └── view.md │ │ ├── send-email.md │ │ └── templates │ │ │ ├── _index.md │ │ │ ├── infrastructure │ │ │ ├── _index.md │ │ │ ├── aws.md │ │ │ ├── docker.md │ │ │ ├── raspberry-pi.md │ │ │ ├── vshpere.md │ │ │ └── windows.md │ │ │ ├── monitor.md │ │ │ └── networks │ │ │ ├── _index.md │ │ │ └── haproxy.md │ │ ├── process-data │ │ ├── _index.md │ │ ├── common-tasks │ │ │ ├── _index.md │ │ │ ├── calculate_weekly_mean.md │ │ │ ├── convert_results_to_json.md │ │ │ └── downsample-data.md │ │ ├── get-started.md │ │ ├── manage-tasks │ │ │ ├── _index.md │ │ │ ├── create-task.md │ │ │ ├── delete-task.md │ │ │ ├── export-task.md │ │ │ ├── run-task.md │ │ │ ├── task-run-history.md │ │ │ ├── update-task.md │ │ │ └── view-tasks.md │ │ └── task-options.md │ │ ├── query-data │ │ ├── _index.md │ │ ├── common-queries │ │ │ ├── _index.md │ │ │ ├── compare-values.md │ │ │ ├── iot-common-queries.md │ │ │ ├── multiple-fields-in-calculations.md │ │ │ └── operate-on-columns.md │ │ ├── execute-queries │ │ │ ├── _index.md │ │ │ ├── data-explorer.md │ │ │ ├── flux-repl.md │ │ │ ├── influx-api.md │ │ │ ├── influx-query.md │ │ │ └── query-sample-data.md │ │ ├── flux │ │ │ ├── _index.md │ │ │ ├── calculate-percentages.md │ │ │ ├── conditional-logic.md │ │ │ ├── cumulativesum.md │ │ │ ├── custom-functions │ │ │ │ ├── _index.md │ │ │ │ └── custom-aggregate.md │ │ │ ├── exists.md │ │ │ ├── explore-schema.md │ │ │ ├── fill.md │ │ │ ├── first-last.md │ │ │ ├── flux-version.md │ │ │ ├── geo │ │ │ │ ├── _index.md │ │ │ │ ├── filter-by-region.md │ │ │ │ ├── group-geo-data.md │ │ │ │ └── shape-geo-data.md │ │ │ ├── group-data.md │ │ │ ├── histograms.md │ │ │ ├── increase.md │ │ │ ├── join.md │ │ │ ├── mathematic-operations.md │ │ │ ├── median.md │ │ │ ├── monitor-states.md │ │ │ ├── moving-average.md │ │ │ ├── operate-on-timestamps.md │ │ │ ├── percentile-quantile.md │ │ │ ├── query-fields.md │ │ │ ├── rate.md │ │ │ ├── regular-expressions.md │ │ │ ├── scalar-values.md │ │ │ ├── sort-limit.md │ │ │ ├── sql.md │ │ │ └── window-aggregate.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── query-influxdb.md │ │ │ └── transform-data.md │ │ ├── influxql │ │ │ ├── _index.md │ │ │ ├── dbrp.md │ │ │ ├── explore-data │ │ │ │ ├── _index.md │ │ │ │ ├── group-by.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── explore-schema.md │ │ │ ├── functions │ │ │ │ ├── _index.md │ │ │ │ ├── aggregates.md │ │ │ │ ├── selectors.md │ │ │ │ ├── technical-analysis.md │ │ │ │ └── transformations.md │ │ │ ├── manage-data.md │ │ │ └── math-operators.md │ │ └── optimize-queries.md │ │ ├── reference │ │ ├── _index.md │ │ ├── api │ │ │ └── _index.md │ │ ├── cli │ │ │ ├── _index.md │ │ │ ├── influx │ │ │ │ ├── _index.md │ │ │ │ ├── apply │ │ │ │ │ └── _index.md │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── active.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── inactive.md │ │ │ │ │ └── list.md │ │ │ │ ├── backup │ │ │ │ │ └── _index.md │ │ │ │ ├── bucket-schema │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── bucket │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── completion │ │ │ │ │ └── _index.md │ │ │ │ ├── config │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── set.md │ │ │ │ ├── dashboards │ │ │ │ │ └── _index.md │ │ │ │ ├── delete │ │ │ │ │ └── _index.md │ │ │ │ ├── export │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── all.md │ │ │ │ │ └── stack.md │ │ │ │ ├── help │ │ │ │ │ └── _index.md │ │ │ │ ├── org │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── members │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── add.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── remove.md │ │ │ │ │ └── update.md │ │ │ │ ├── ping │ │ │ │ │ └── _index.md │ │ │ │ ├── query │ │ │ │ │ └── _index.md │ │ │ │ ├── remote │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── repl │ │ │ │ │ └── _index.md │ │ │ │ ├── replication │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── restore │ │ │ │ │ └── index.md │ │ │ │ ├── scripts │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invoke.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── retrieve.md │ │ │ │ │ └── update.md │ │ │ │ ├── secret │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── server-config │ │ │ │ │ └── _index.md │ │ │ │ ├── setup │ │ │ │ │ └── _index.md │ │ │ │ ├── stacks │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── init.md │ │ │ │ │ ├── remove.md │ │ │ │ │ └── update.md │ │ │ │ ├── task │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── log │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── list.md │ │ │ │ │ ├── retry-failed.md │ │ │ │ │ ├── run │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── retry.md │ │ │ │ │ └── update.md │ │ │ │ ├── telegrafs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── update.md │ │ │ │ ├── template │ │ │ │ │ ├── _index.md │ │ │ │ │ └── validate.md │ │ │ │ ├── transpile │ │ │ │ │ └── _index.md │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── password.md │ │ │ │ │ └── update.md │ │ │ │ ├── v1 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ ├── set-active.md │ │ │ │ │ │ ├── set-inactive.md │ │ │ │ │ │ └── set-password.md │ │ │ │ │ ├── dbrp │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── update.md │ │ │ │ │ └── shell.md │ │ │ │ ├── version │ │ │ │ │ └── _index.md │ │ │ │ └── write │ │ │ │ │ ├── _index.md │ │ │ │ │ └── dryrun.md │ │ │ └── influxd │ │ │ │ ├── _index.md │ │ │ │ ├── downgrade.md │ │ │ │ ├── inspect │ │ │ │ ├── _index.md │ │ │ │ ├── build-tsi.md │ │ │ │ ├── check-schema.md │ │ │ │ ├── delete-tsm.md │ │ │ │ ├── dump-tsi.md │ │ │ │ ├── dump-tsm.md │ │ │ │ ├── dump-wal.md │ │ │ │ ├── export-index.md │ │ │ │ ├── export-lp.md │ │ │ │ ├── merge-schema.md │ │ │ │ ├── report-db.md │ │ │ │ ├── report-tsi.md │ │ │ │ ├── report-tsm.md │ │ │ │ ├── verify-seriesfile.md │ │ │ │ ├── verify-tombstone.md │ │ │ │ ├── verify-tsm.md │ │ │ │ └── verify-wal.md │ │ │ │ ├── recovery │ │ │ │ ├── _index.md │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create-operator.md │ │ │ │ │ └── list.md │ │ │ │ ├── org │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ └── list.md │ │ │ │ └── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ ├── run.md │ │ │ │ ├── upgrade.md │ │ │ │ └── version.md │ │ ├── config-options.md │ │ ├── contributing │ │ │ └── _index.md │ │ ├── faq.md │ │ ├── glossary.md │ │ ├── internals │ │ │ ├── _index.md │ │ │ ├── data-retention.md │ │ │ ├── file-system-layout.md │ │ │ ├── metrics.md │ │ │ ├── runtime.md │ │ │ ├── shards.md │ │ │ ├── storage-engine.md │ │ │ └── system-buckets.md │ │ ├── key-concepts │ │ │ ├── _index.md │ │ │ ├── data-elements.md │ │ │ ├── data-schema.md │ │ │ └── design-principles.md │ │ ├── prometheus-metrics.md │ │ ├── release-notes │ │ │ ├── _index.md │ │ │ ├── influx-cli.md │ │ │ ├── influxdb.md │ │ │ └── supported-release.md │ │ ├── sample-data.md │ │ ├── syntax │ │ │ ├── _index.md │ │ │ ├── annotated-csv │ │ │ │ ├── _index.md │ │ │ │ └── extended.md │ │ │ ├── delete-predicate.md │ │ │ ├── flux │ │ │ │ ├── _index.md │ │ │ │ └── flux-vs-influxql.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── internals.md │ │ │ │ └── spec.md │ │ │ └── line-protocol.md │ │ ├── telemetry.md │ │ └── urls.md │ │ ├── tags │ │ └── _index.md │ │ ├── tools │ │ ├── _index.md │ │ ├── chronograf.md │ │ ├── downsample-data-quix.md │ │ ├── flux-repl.md │ │ ├── flux-vim-lsp.md │ │ ├── flux-vscode.md │ │ ├── grafana.md │ │ ├── influx-cli.md │ │ ├── influxdb-templates │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── stacks │ │ │ │ ├── _index.md │ │ │ │ ├── init.md │ │ │ │ ├── remove.md │ │ │ │ ├── save-time.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ └── use.md │ │ ├── influxql-shell.md │ │ ├── kapacitor.md │ │ ├── notebooks │ │ │ ├── _index.md │ │ │ ├── clean-data.md │ │ │ ├── create-notebook.md │ │ │ ├── downsample.md │ │ │ ├── manage-notebooks.md │ │ │ ├── overview.md │ │ │ └── troubleshoot-notebooks.md │ │ ├── postman.md │ │ └── telegraf-configs │ │ │ ├── _index.md │ │ │ ├── clone.md │ │ │ ├── create.md │ │ │ ├── remove.md │ │ │ ├── update.md │ │ │ └── view.md │ │ ├── visualize-data │ │ ├── _index.md │ │ ├── annotations.md │ │ ├── dashboards │ │ │ ├── _index.md │ │ │ ├── control-dashboard.md │ │ │ ├── create-dashboard.md │ │ │ ├── delete-dashboard.md │ │ │ └── export-dashboard.md │ │ ├── labels.md │ │ ├── variables │ │ │ ├── _index.md │ │ │ ├── common-variables.md │ │ │ ├── create-variable.md │ │ │ ├── delete-variable.md │ │ │ ├── export-variable.md │ │ │ ├── update-variable.md │ │ │ ├── variable-types.md │ │ │ └── view-variables.md │ │ └── visualization-types │ │ │ ├── _index.md │ │ │ ├── band.md │ │ │ ├── gauge.md │ │ │ ├── graph-single-stat.md │ │ │ ├── graph.md │ │ │ ├── heatmap.md │ │ │ ├── histogram.md │ │ │ ├── mosaic.md │ │ │ ├── scatter.md │ │ │ ├── single-stat.md │ │ │ └── table.md │ │ └── write-data │ │ ├── _index.md │ │ ├── best-practices │ │ ├── _index.md │ │ ├── duplicate-points.md │ │ ├── optimize-writes.md │ │ ├── resolve-high-cardinality.md │ │ └── schema-design.md │ │ ├── delete-data.md │ │ ├── developer-tools │ │ ├── _index.md │ │ ├── api.md │ │ ├── client-libraries.md │ │ ├── csv.md │ │ ├── influx-cli.md │ │ ├── scrape-prometheus-metrics.md │ │ └── third-party-solutions.md │ │ ├── migrate-data │ │ ├── _index.md │ │ ├── migrate-cloud-to-oss.md │ │ └── migrate-oss.md │ │ ├── no-code │ │ ├── _index.md │ │ ├── load-data.md │ │ ├── scrape-data │ │ │ ├── _index.md │ │ │ ├── manage-scrapers │ │ │ │ ├── _index.md │ │ │ │ ├── create-a-scraper.md │ │ │ │ ├── delete-a-scraper.md │ │ │ │ └── update-a-scraper.md │ │ │ └── scrapable-endpoints.md │ │ ├── third-party.md │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── auto-config.md │ │ │ ├── dual-write.md │ │ │ ├── manual-config.md │ │ │ └── use-telegraf-plugins │ │ │ ├── _index.md │ │ │ └── use-http-plugin.md │ │ ├── oss-to-cloud.md │ │ ├── replication │ │ ├── _index.md │ │ └── replicate-data.md │ │ └── troubleshoot.md ├── influxdb3 │ ├── cloud-dedicated │ │ ├── .vale.ini │ │ ├── .vscode │ │ │ └── settings.json │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── account │ │ │ │ └── _index.md │ │ │ ├── clusters │ │ │ │ ├── _index.md │ │ │ │ ├── get.md │ │ │ │ └── list.md │ │ │ ├── custom-partitions │ │ │ │ ├── _index.md │ │ │ │ ├── best-practices.md │ │ │ │ ├── define-custom-partitions.md │ │ │ │ ├── partition-templates.md │ │ │ │ └── view-partitions.md │ │ │ ├── databases │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── list.md │ │ │ │ ├── rename.md │ │ │ │ ├── undelete.md │ │ │ │ └── update.md │ │ │ ├── identify-version.md │ │ │ ├── mcp-server.md │ │ │ ├── monitor-your-cluster.md │ │ │ ├── query-system-data.md │ │ │ ├── sso.md │ │ │ ├── tables │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── list.md │ │ │ │ ├── rename.md │ │ │ │ └── undelete.md │ │ │ ├── tokens │ │ │ │ ├── _index.md │ │ │ │ ├── database │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── revoke.md │ │ │ │ │ └── update.md │ │ │ │ └── management │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── revoke.md │ │ │ └── users │ │ │ │ ├── _index.md │ │ │ │ └── admin-ui.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ └── write.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── api-compatibility │ │ │ │ ├── _index.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ └── v2 │ │ │ │ │ └── _index.md │ │ │ ├── migrate-data │ │ │ │ ├── _index.md │ │ │ │ ├── migrate-1x-to-cloud-dedicated.md │ │ │ │ └── migrate-tsm-to-cloud-dedicated.md │ │ │ └── prototype-evaluation.md │ │ ├── pages.md │ │ ├── process-data │ │ │ ├── _index.md │ │ │ ├── downsample │ │ │ │ ├── _index.md │ │ │ │ ├── downsample-client-libraries.md │ │ │ │ └── downsample-quix.md │ │ │ ├── send-alerts.md │ │ │ ├── summarize.md │ │ │ ├── tools │ │ │ │ ├── _index.md │ │ │ │ ├── pandas.md │ │ │ │ └── pyarrow.md │ │ │ └── visualize │ │ │ │ ├── _index.md │ │ │ │ ├── chronograf.md │ │ │ │ ├── grafana.md │ │ │ │ ├── superset.md │ │ │ │ └── tableau.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── client-libraries │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── go.md │ │ │ │ │ └── python.md │ │ │ │ ├── influxctl-cli.md │ │ │ │ ├── influxdb-v1-api.md │ │ │ │ └── visualization-tools.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── parameterized-queries.md │ │ │ │ └── troubleshoot.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── cast-types.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill-gaps.md │ │ │ │ └── parameterized-queries.md │ │ │ └── troubleshoot-and-optimize │ │ │ │ ├── _index.md │ │ │ │ ├── analyze-query-plan.md │ │ │ │ ├── flight-responses.md │ │ │ │ ├── optimize-queries.md │ │ │ │ ├── query-timeout-best-practices.md │ │ │ │ ├── system-information.md │ │ │ │ ├── trace.md │ │ │ │ └── troubleshoot.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influxctl │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── login.md │ │ │ │ │ └── logout.md │ │ │ │ │ ├── cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── database │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rename.md │ │ │ │ │ ├── undelete.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── help.md │ │ │ │ │ ├── management │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── revoke.md │ │ │ │ │ ├── query.md │ │ │ │ │ ├── table │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── iceberg │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── disable.md │ │ │ │ │ │ └── enable.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rename.md │ │ │ │ │ └── undelete.md │ │ │ │ │ ├── token │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── revoke.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invite.md │ │ │ │ │ └── list.md │ │ │ │ │ ├── version.md │ │ │ │ │ └── write.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── flight │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp-flight.md │ │ │ │ │ ├── go-flight.md │ │ │ │ │ ├── java-flightsql.md │ │ │ │ │ ├── python-flight.md │ │ │ │ │ └── python-flightsql-dbapi.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ ├── v2 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── dart.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ └── nodejs │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── install.md │ │ │ │ │ │ │ └── write.md │ │ │ │ │ ├── kotlin.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── r.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── scala.md │ │ │ │ │ └── swift.md │ │ │ │ └── v3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ └── python.md │ │ │ ├── glossary.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── feature-support.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── date-time.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── group-by.md │ │ │ │ ├── internals.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── math-operators.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── quoting.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── show.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── arrow-flightsql.md │ │ │ │ ├── data-retention.md │ │ │ │ ├── durability.md │ │ │ │ ├── query-plan.md │ │ │ │ ├── security.md │ │ │ │ └── storage-engine.md │ │ │ ├── naming-restrictions.md │ │ │ ├── policies │ │ │ │ ├── _index.md │ │ │ │ └── end-of-life.md │ │ │ ├── release-notes │ │ │ │ ├── _index.md │ │ │ │ ├── cloud-dedicated.md │ │ │ │ └── influxctl.md │ │ │ ├── sample-data.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── data-types.md │ │ │ │ ├── explain.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregate.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── binary-string.md │ │ │ │ │ ├── conditional.md │ │ │ │ │ ├── hashing.md │ │ │ │ │ ├── map.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── regular-expression.md │ │ │ │ │ ├── selector.md │ │ │ │ │ ├── string.md │ │ │ │ │ ├── struct.md │ │ │ │ │ ├── time-and-date.md │ │ │ │ │ └── window.md │ │ │ │ ├── group-by.md │ │ │ │ ├── having.md │ │ │ │ ├── information-schema.md │ │ │ │ ├── join.md │ │ │ │ ├── limit.md │ │ │ │ ├── operators │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arithmetic.md │ │ │ │ │ ├── bitwise.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── logical.md │ │ │ │ │ └── other.md │ │ │ │ ├── order-by.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── table-value-constructor.md │ │ │ │ ├── union.md │ │ │ │ └── where.md │ │ │ └── syntax │ │ │ │ ├── _index.md │ │ │ │ └── line-protocol.md │ │ ├── visualize-data │ │ │ └── powerbi.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ │ ├── csv │ │ │ ├── _index.md │ │ │ └── telegraf.md │ │ │ ├── line-protocol │ │ │ ├── _index.md │ │ │ ├── client-libraries.md │ │ │ └── influxctl-cli.md │ │ │ ├── troubleshoot.md │ │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure │ │ │ └── _index.md │ │ │ └── dual-write.md │ ├── cloud-serverless │ │ ├── .vale.ini │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── accounts │ │ │ │ ├── _index.md │ │ │ │ ├── cancel-account.md │ │ │ │ ├── change-password.md │ │ │ │ └── switch-account.md │ │ │ ├── billing │ │ │ │ ├── _index.md │ │ │ │ ├── data-usage.md │ │ │ │ ├── limits.md │ │ │ │ └── pricing-plans.md │ │ │ ├── buckets │ │ │ │ ├── _index.md │ │ │ │ ├── create-bucket.md │ │ │ │ ├── manage-explicit-bucket-schemas.md │ │ │ │ ├── update-bucket.md │ │ │ │ └── view-buckets.md │ │ │ ├── identify-version.md │ │ │ ├── organizations │ │ │ │ ├── _index.md │ │ │ │ ├── switch-org.md │ │ │ │ ├── update-org.md │ │ │ │ ├── users.md │ │ │ │ └── view-orgs.md │ │ │ └── tokens │ │ │ │ ├── _index.md │ │ │ │ ├── create-token.md │ │ │ │ ├── delete-token.md │ │ │ │ ├── update-tokens.md │ │ │ │ ├── use-tokens.md │ │ │ │ └── view-tokens.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── process.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ ├── visualize.md │ │ │ └── write.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── api-compatibility │ │ │ │ ├── _index.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ └── v2 │ │ │ │ │ └── _index.md │ │ │ ├── migrate-data │ │ │ │ ├── _index.md │ │ │ │ ├── migrate-1x-to-serverless.md │ │ │ │ └── migrate-tsm-to-serverless.md │ │ │ └── prototype-evaluation.md │ │ ├── pages.md │ │ ├── process-data │ │ │ ├── _index.md │ │ │ ├── downsample │ │ │ │ ├── _index.md │ │ │ │ ├── client-libraries.md │ │ │ │ └── quix.md │ │ │ ├── send-alerts.md │ │ │ ├── summarize.md │ │ │ ├── tools │ │ │ │ ├── _index.md │ │ │ │ ├── pandas.md │ │ │ │ └── pyarrow.md │ │ │ └── visualize │ │ │ │ ├── _index.md │ │ │ │ ├── chronograf.md │ │ │ │ ├── grafana.md │ │ │ │ ├── superset.md │ │ │ │ └── tableau.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── client-libraries │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── go.md │ │ │ │ │ └── python.md │ │ │ │ ├── data-explorer.md │ │ │ │ ├── v1-http.md │ │ │ │ └── visualization-tools.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── parameterized-queries.md │ │ │ │ └── troubleshoot.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── cast-types.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill-gaps.md │ │ │ │ └── parameterized-queries.md │ │ │ └── troubleshoot-and-optimize │ │ │ │ ├── _index.md │ │ │ │ ├── analyze-query-plan.md │ │ │ │ ├── flight-responses.md │ │ │ │ ├── optimize-queries.md │ │ │ │ ├── query-timeout-best-practices.md │ │ │ │ └── troubleshoot.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influx │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── apply │ │ │ │ │ └── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── active.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── inactive.md │ │ │ │ │ └── list.md │ │ │ │ │ ├── backup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── bucket-schema │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── bucket │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── completion │ │ │ │ │ └── _index.md │ │ │ │ │ ├── config │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── set.md │ │ │ │ │ ├── dashboards │ │ │ │ │ └── _index.md │ │ │ │ │ ├── delete │ │ │ │ │ └── _index.md │ │ │ │ │ ├── export │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── all.md │ │ │ │ │ └── stack.md │ │ │ │ │ ├── help │ │ │ │ │ └── _index.md │ │ │ │ │ ├── org │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── members │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── add.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── ping │ │ │ │ │ └── _index.md │ │ │ │ │ ├── query │ │ │ │ │ └── _index.md │ │ │ │ │ ├── remote │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── replication │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── restore │ │ │ │ │ └── index.md │ │ │ │ │ ├── scripts │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invoke.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── retrieve.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── secret │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── setup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── stacks │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── init.md │ │ │ │ │ ├── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── task │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── log │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── list.md │ │ │ │ │ ├── retry-failed.md │ │ │ │ │ ├── run │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── retry.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── telegrafs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── template │ │ │ │ │ ├── _index.md │ │ │ │ │ └── validate.md │ │ │ │ │ ├── transpile │ │ │ │ │ └── _index.md │ │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── password.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── v1 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ ├── set-active.md │ │ │ │ │ │ ├── set-inactive.md │ │ │ │ │ │ └── set-password.md │ │ │ │ │ ├── dbrp │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── update.md │ │ │ │ │ └── shell.md │ │ │ │ │ ├── version │ │ │ │ │ └── _index.md │ │ │ │ │ └── write │ │ │ │ │ ├── _index.md │ │ │ │ │ └── dryrun.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── flight │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp-flight.md │ │ │ │ │ ├── go-flight.md │ │ │ │ │ ├── java-flightsql.md │ │ │ │ │ ├── python-flight.md │ │ │ │ │ └── python-flightsql-dbapi.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ ├── v2 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── dart.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ └── nodejs │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── install.md │ │ │ │ │ │ │ └── write.md │ │ │ │ │ ├── kotlin.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── r.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── scala.md │ │ │ │ │ └── swift.md │ │ │ │ └── v3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ └── python.md │ │ │ ├── glossary.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── feature-support.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── date-time.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── group-by.md │ │ │ │ ├── internals.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── math-operators.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── quoting.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── show.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── arrow-flightsql.md │ │ │ │ ├── data-retention.md │ │ │ │ ├── durability.md │ │ │ │ └── query-plan.md │ │ │ ├── policies │ │ │ │ ├── _index.md │ │ │ │ └── end-of-life.md │ │ │ ├── regions.md │ │ │ ├── sample-data.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── data-types.md │ │ │ │ ├── explain.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregate.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── binary-string.md │ │ │ │ │ ├── conditional.md │ │ │ │ │ ├── hashing.md │ │ │ │ │ ├── map.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── regular-expression.md │ │ │ │ │ ├── selector.md │ │ │ │ │ ├── string.md │ │ │ │ │ ├── struct.md │ │ │ │ │ ├── time-and-date.md │ │ │ │ │ └── window.md │ │ │ │ ├── group-by.md │ │ │ │ ├── having.md │ │ │ │ ├── information-schema.md │ │ │ │ ├── join.md │ │ │ │ ├── limit.md │ │ │ │ ├── operators │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arithmetic.md │ │ │ │ │ ├── bitwise.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── logical.md │ │ │ │ │ └── other.md │ │ │ │ ├── order-by.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── table-value-constructor.md │ │ │ │ ├── union.md │ │ │ │ └── where.md │ │ │ └── syntax │ │ │ │ ├── _index.md │ │ │ │ ├── annotated-csv │ │ │ │ ├── _index.md │ │ │ │ └── extended.md │ │ │ │ ├── delete-predicate.md │ │ │ │ └── line-protocol.md │ │ ├── sign-up.md │ │ ├── visualize-data │ │ │ └── powerbi.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── api │ │ │ └── v1-http.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ │ ├── csv │ │ │ ├── _index.md │ │ │ ├── influx-cli.md │ │ │ ├── telegraf.md │ │ │ └── user-interface.md │ │ │ ├── delete-data.md │ │ │ ├── line-protocol │ │ │ ├── _index.md │ │ │ └── client-libraries.md │ │ │ ├── troubleshoot.md │ │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure │ │ │ └── _index.md │ │ │ └── dual-write.md │ ├── clustered │ │ ├── .vale.ini │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── backup-restore.md │ │ │ ├── bypass-identity-provider.md │ │ │ ├── custom-partitions │ │ │ │ ├── _index.md │ │ │ │ ├── best-practices.md │ │ │ │ ├── define-custom-partitions.md │ │ │ │ ├── partition-templates.md │ │ │ │ └── view-partitions.md │ │ │ ├── databases │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── list.md │ │ │ │ ├── rename.md │ │ │ │ ├── undelete.md │ │ │ │ └── update.md │ │ │ ├── env-vars.md │ │ │ ├── identify-version.md │ │ │ ├── licensing.md │ │ │ ├── query-system-data.md │ │ │ ├── scale-cluster.md │ │ │ ├── tables │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── list.md │ │ │ │ ├── rename.md │ │ │ │ └── undelete.md │ │ │ ├── tokens │ │ │ │ ├── _index.md │ │ │ │ ├── database │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── revoke.md │ │ │ │ │ └── update.md │ │ │ │ └── management │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── revoke.md │ │ │ ├── upgrade.md │ │ │ └── users │ │ │ │ ├── _index.md │ │ │ │ ├── add.md │ │ │ │ └── remove.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ └── write.md │ │ ├── guides │ │ │ ├── _index.md │ │ │ ├── api-compatibility │ │ │ │ ├── _index.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ └── v2 │ │ │ │ │ └── _index.md │ │ │ └── migrate-data │ │ │ │ ├── _index.md │ │ │ │ ├── migrate-1x-to-clustered.md │ │ │ │ └── migrate-tsm-to-clustered.md │ │ ├── install │ │ │ ├── _index.md │ │ │ ├── customize-cluster │ │ │ │ ├── _index.md │ │ │ │ ├── config.md │ │ │ │ └── scale.md │ │ │ ├── optimize-cluster │ │ │ │ ├── _index.md │ │ │ │ ├── design-schema.md │ │ │ │ ├── optimize-querying.md │ │ │ │ ├── simulate-load.md │ │ │ │ └── write-methods.md │ │ │ ├── secure-cluster │ │ │ │ ├── _index.md │ │ │ │ ├── auth.md │ │ │ │ └── tls.md │ │ │ ├── set-up-cluster │ │ │ │ ├── _index.md │ │ │ │ ├── configure-cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── directly.md │ │ │ │ │ └── use-helm.md │ │ │ │ ├── deploy.md │ │ │ │ ├── licensing.md │ │ │ │ ├── prerequisites.md │ │ │ │ └── test-cluster.md │ │ │ └── use-your-cluster.md │ │ ├── pages.md │ │ ├── process-data │ │ │ ├── _index.md │ │ │ ├── downsample │ │ │ │ ├── _index.md │ │ │ │ ├── downsample-client-libraries.md │ │ │ │ └── quix.md │ │ │ ├── send-alerts.md │ │ │ ├── summarize.md │ │ │ ├── tools │ │ │ │ ├── _index.md │ │ │ │ ├── pandas.md │ │ │ │ └── pyarrow.md │ │ │ └── visualize │ │ │ │ ├── _index.md │ │ │ │ ├── chronograf.md │ │ │ │ ├── grafana.md │ │ │ │ ├── superset.md │ │ │ │ └── tableau.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── client-libraries │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── go.md │ │ │ │ │ └── python.md │ │ │ │ ├── influxctl-cli.md │ │ │ │ ├── influxdb-v1-api.md │ │ │ │ └── visualization-tools.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── parameterized-queries.md │ │ │ │ └── troubleshoot.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── cast-types.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill-gaps.md │ │ │ │ └── parameterized-queries.md │ │ │ └── troubleshoot-and-optimize │ │ │ │ ├── _index.md │ │ │ │ ├── analyze-query-plan.md │ │ │ │ ├── flight-responses.md │ │ │ │ ├── optimize-queries.md │ │ │ │ ├── query-timeout-best-practices.md │ │ │ │ ├── report-query-performance-issues.md │ │ │ │ └── troubleshoot.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influxctl │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── login.md │ │ │ │ │ └── logout.md │ │ │ │ │ ├── cluster │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── database │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rename.md │ │ │ │ │ ├── undelete.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── help.md │ │ │ │ │ ├── management │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── revoke.md │ │ │ │ │ ├── query.md │ │ │ │ │ ├── table │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── iceberg │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── disable.md │ │ │ │ │ │ └── enable.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rename.md │ │ │ │ │ └── undelete.md │ │ │ │ │ ├── token │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── get.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── revoke.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invite.md │ │ │ │ │ └── list.md │ │ │ │ │ ├── version.md │ │ │ │ │ └── write.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── flight │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp-flight.md │ │ │ │ │ ├── go-flight.md │ │ │ │ │ ├── java-flightsql.md │ │ │ │ │ ├── python-flight.md │ │ │ │ │ └── python-flightsql-dbapi.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ ├── v2 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── dart.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ └── nodejs │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── install.md │ │ │ │ │ │ │ └── write.md │ │ │ │ │ ├── kotlin.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── r.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── scala.md │ │ │ │ │ └── swift.md │ │ │ │ └── v3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ └── python.md │ │ │ ├── glossary.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── feature-support.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── date-time.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── group-by.md │ │ │ │ ├── internals.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── math-operators.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── quoting.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── show.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── arrow-flightsql.md │ │ │ │ ├── data-retention.md │ │ │ │ ├── durability.md │ │ │ │ ├── query-plan.md │ │ │ │ ├── security.md │ │ │ │ └── storage-engine.md │ │ │ ├── naming-restrictions.md │ │ │ ├── release-notes │ │ │ │ ├── _index.md │ │ │ │ ├── clustered.md │ │ │ │ └── influxctl.md │ │ │ ├── sample-data.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── data-types.md │ │ │ │ ├── explain.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregate.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── binary-string.md │ │ │ │ │ ├── conditional.md │ │ │ │ │ ├── hashing.md │ │ │ │ │ ├── map.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── regular-expression.md │ │ │ │ │ ├── selector.md │ │ │ │ │ ├── string.md │ │ │ │ │ ├── struct.md │ │ │ │ │ ├── time-and-date.md │ │ │ │ │ └── window.md │ │ │ │ ├── group-by.md │ │ │ │ ├── having.md │ │ │ │ ├── information-schema.md │ │ │ │ ├── join.md │ │ │ │ ├── limit.md │ │ │ │ ├── operators │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arithmetic.md │ │ │ │ │ ├── bitwise.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── logical.md │ │ │ │ │ └── other.md │ │ │ │ ├── order-by.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── table-value-constructor.md │ │ │ │ ├── union.md │ │ │ │ └── where.md │ │ │ └── syntax │ │ │ │ ├── _index.md │ │ │ │ └── line-protocol.md │ │ ├── visualize-data │ │ │ └── powerbi.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── data-lifecycle.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ │ ├── csv │ │ │ ├── _index.md │ │ │ └── telegraf.md │ │ │ ├── line-protocol │ │ │ ├── _index.md │ │ │ ├── client-libraries.md │ │ │ └── influxctl-cli.md │ │ │ ├── troubleshoot.md │ │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure │ │ │ └── _index.md │ │ │ └── dual-write.md │ ├── core │ │ ├── .vale.ini │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── backup-restore.md │ │ │ ├── databases │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ └── list.md │ │ │ ├── distinct-value-cache │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── query.md │ │ │ │ └── show.md │ │ │ ├── identify-version.md │ │ │ ├── last-value-cache │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── query.md │ │ │ │ └── show.md │ │ │ ├── mcp-server.md │ │ │ ├── performance-tuning.md │ │ │ ├── query-system-data │ │ │ │ └── _index.md │ │ │ ├── tables │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ └── list.md │ │ │ ├── tokens │ │ │ │ ├── _index.md │ │ │ │ └── admin │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── preconfigured.md │ │ │ │ │ └── regenerate.md │ │ │ └── upgrade.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── process.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ └── write.md │ │ ├── install.md │ │ ├── object-storage │ │ │ ├── _index.md │ │ │ └── minio.md │ │ ├── plugins │ │ │ ├── _index.md │ │ │ ├── extend-plugin.md │ │ │ └── library │ │ │ │ ├── _index.md │ │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ └── wal-plugin.md │ │ │ │ └── official │ │ │ │ ├── _index.md │ │ │ │ ├── basic-transformation.md │ │ │ │ ├── downsampler.md │ │ │ │ ├── forecast-error-evaluator.md │ │ │ │ ├── influxdb-to-iceberg.md │ │ │ │ ├── mad-anomaly-detection.md │ │ │ │ ├── notifier.md │ │ │ │ ├── prophet-forecasting.md │ │ │ │ ├── state-change.md │ │ │ │ ├── stateless-adtk-detector.md │ │ │ │ ├── system-metrics.md │ │ │ │ └── threshold-deadman-checks.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── influxdb-v1-api.md │ │ │ │ ├── influxdb-v3-api.md │ │ │ │ └── influxdb3-cli.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── parameterized-queries.md │ │ │ │ └── troubleshoot.md │ │ │ └── sql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── cast-types.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill-gaps.md │ │ │ │ └── parameterized-queries.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influxdb3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ ├── distinct_cache.md │ │ │ │ │ ├── last_cache.md │ │ │ │ │ ├── table.md │ │ │ │ │ ├── token │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── admin.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── delete │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ ├── distinct_cache.md │ │ │ │ │ ├── last_cache.md │ │ │ │ │ ├── table.md │ │ │ │ │ ├── token.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── disable │ │ │ │ │ ├── _index.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── enable │ │ │ │ │ ├── _index.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── install │ │ │ │ │ ├── _index.md │ │ │ │ │ └── package.md │ │ │ │ │ ├── query.md │ │ │ │ │ ├── serve.md │ │ │ │ │ ├── show │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── databases.md │ │ │ │ │ ├── plugins.md │ │ │ │ │ ├── retention.md │ │ │ │ │ ├── system │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── summary.md │ │ │ │ │ │ ├── table-list.md │ │ │ │ │ │ └── table.md │ │ │ │ │ └── tokens.md │ │ │ │ │ ├── test │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── schedule_plugin.md │ │ │ │ │ └── wal_plugin.md │ │ │ │ │ ├── update │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ └── trigger.md │ │ │ │ │ └── write.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── flight │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp-flight.md │ │ │ │ │ ├── go-flight.md │ │ │ │ │ ├── java-flightsql.md │ │ │ │ │ ├── python-flight.md │ │ │ │ │ └── python-flightsql-dbapi.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ ├── v2 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── dart.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ └── nodejs │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── install.md │ │ │ │ │ │ │ └── write.md │ │ │ │ │ ├── kotlin.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── r.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── scala.md │ │ │ │ │ └── swift.md │ │ │ │ └── v3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ └── python.md │ │ │ ├── config-options.md │ │ │ ├── glossary.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── feature-support.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── date-time.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── group-by.md │ │ │ │ ├── internals.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── math-operators.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── quoting.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── show.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── authentication.md │ │ │ │ ├── data-retention.md │ │ │ │ └── durability │ │ │ │ │ └── _index.md │ │ │ ├── line-protocol.md │ │ │ ├── naming-restrictions.md │ │ │ ├── processing-engine.md │ │ │ ├── sample-data.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── data-types.md │ │ │ │ ├── explain.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregate.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── binary-string.md │ │ │ │ │ ├── cache.md │ │ │ │ │ ├── conditional.md │ │ │ │ │ ├── hashing.md │ │ │ │ │ ├── map.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── regular-expression.md │ │ │ │ │ ├── selector.md │ │ │ │ │ ├── string.md │ │ │ │ │ ├── struct.md │ │ │ │ │ ├── time-and-date.md │ │ │ │ │ └── window.md │ │ │ │ ├── group-by.md │ │ │ │ ├── having.md │ │ │ │ ├── information-schema.md │ │ │ │ ├── join.md │ │ │ │ ├── limit.md │ │ │ │ ├── operators │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arithmetic.md │ │ │ │ │ ├── bitwise.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── logical.md │ │ │ │ │ └── other.md │ │ │ │ ├── order-by.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── table-value-constructor.md │ │ │ │ ├── union.md │ │ │ │ └── where.md │ │ │ └── telemetry.md │ │ ├── release-notes │ │ │ └── _index.md │ │ ├── visualize-data │ │ │ ├── _index.md │ │ │ ├── grafana.md │ │ │ ├── powerbi.md │ │ │ ├── superset.md │ │ │ └── tableau.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ │ ├── client-libraries.md │ │ │ ├── http-api │ │ │ ├── _index.md │ │ │ ├── compatibility-apis.md │ │ │ └── v3-write-lp.md │ │ │ ├── influxdb3-cli.md │ │ │ ├── troubleshoot.md │ │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure.md │ │ │ ├── csv.md │ │ │ └── dual-write.md │ ├── enterprise │ │ ├── _index.md │ │ ├── admin │ │ │ ├── _index.md │ │ │ ├── backup-restore.md │ │ │ ├── clustering.md │ │ │ ├── databases │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ └── list.md │ │ │ ├── distinct-value-cache │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── query.md │ │ │ │ └── show.md │ │ │ ├── file-index │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ └── delete.md │ │ │ ├── identify-version.md │ │ │ ├── last-value-cache │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── query.md │ │ │ │ └── show.md │ │ │ ├── license.md │ │ │ ├── mcp-server.md │ │ │ ├── object-storage │ │ │ │ ├── _index.md │ │ │ │ └── minio.md │ │ │ ├── performance-tuning.md │ │ │ ├── query-system-data │ │ │ │ └── _index.md │ │ │ ├── tables │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ └── list.md │ │ │ ├── tokens │ │ │ │ ├── _index.md │ │ │ │ ├── admin │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── preconfigured.md │ │ │ │ │ └── regenerate.md │ │ │ │ └── resource │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── preconfigured.md │ │ │ └── upgrade.md │ │ ├── get-started │ │ │ ├── _index.md │ │ │ ├── multi-server.md │ │ │ ├── process.md │ │ │ ├── query.md │ │ │ ├── setup.md │ │ │ └── write.md │ │ ├── install │ │ │ └── _index.md │ │ ├── plugins │ │ │ ├── _index.md │ │ │ ├── extend-plugin.md │ │ │ └── library │ │ │ │ ├── _index.md │ │ │ │ ├── examples │ │ │ │ ├── _index.md │ │ │ │ └── wal-plugin.md │ │ │ │ └── official │ │ │ │ ├── _index.md │ │ │ │ ├── basic-transformation.md │ │ │ │ ├── downsampler.md │ │ │ │ ├── forecast-error-evaluator.md │ │ │ │ ├── influxdb-to-iceberg.md │ │ │ │ ├── mad-anomaly-detection.md │ │ │ │ ├── notifier.md │ │ │ │ ├── prophet-forecasting.md │ │ │ │ ├── state-change.md │ │ │ │ ├── stateless-adtk-detector.md │ │ │ │ ├── system-metrics.md │ │ │ │ └── threshold-deadman-checks.md │ │ ├── query-data │ │ │ ├── _index.md │ │ │ ├── execute-queries │ │ │ │ ├── _index.md │ │ │ │ ├── influxdb-v1-api.md │ │ │ │ ├── influxdb-v3-api.md │ │ │ │ └── influxdb3-cli.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── parameterized-queries.md │ │ │ │ └── troubleshoot.md │ │ │ └── sql │ │ │ │ ├── _index.md │ │ │ │ ├── aggregate-select.md │ │ │ │ ├── basic-query.md │ │ │ │ ├── cast-types.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill-gaps.md │ │ │ │ └── parameterized-queries.md │ │ ├── reference │ │ │ ├── _index.md │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ ├── _index.md │ │ │ │ └── influxdb3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ ├── distinct_cache.md │ │ │ │ │ ├── file_index.md │ │ │ │ │ ├── last_cache.md │ │ │ │ │ ├── table.md │ │ │ │ │ ├── token │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── admin.md │ │ │ │ │ │ └── permission.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── delete │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ ├── distinct_cache.md │ │ │ │ │ ├── file_index.md │ │ │ │ │ ├── last_cache.md │ │ │ │ │ ├── table.md │ │ │ │ │ ├── token.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── disable │ │ │ │ │ ├── _index.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── enable │ │ │ │ │ ├── _index.md │ │ │ │ │ └── trigger.md │ │ │ │ │ ├── install │ │ │ │ │ ├── _index.md │ │ │ │ │ └── package.md │ │ │ │ │ ├── query.md │ │ │ │ │ ├── serve.md │ │ │ │ │ ├── show │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── databases.md │ │ │ │ │ ├── license.md │ │ │ │ │ ├── nodes.md │ │ │ │ │ ├── plugins.md │ │ │ │ │ ├── retention.md │ │ │ │ │ ├── system │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── summary.md │ │ │ │ │ │ ├── table-list.md │ │ │ │ │ │ └── table.md │ │ │ │ │ └── tokens.md │ │ │ │ │ ├── stop │ │ │ │ │ ├── _index.md │ │ │ │ │ └── node.md │ │ │ │ │ ├── test │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── schedule_plugin.md │ │ │ │ │ └── wal_plugin.md │ │ │ │ │ ├── update │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── database.md │ │ │ │ │ ├── table.md │ │ │ │ │ └── trigger.md │ │ │ │ │ └── write.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── flight │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp-flight.md │ │ │ │ │ ├── go-flight.md │ │ │ │ │ ├── java-flightsql.md │ │ │ │ │ ├── python-flight.md │ │ │ │ │ └── python-flightsql-dbapi.md │ │ │ │ ├── v1 │ │ │ │ │ └── _index.md │ │ │ │ ├── v2 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arduino.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── dart.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── browser.md │ │ │ │ │ │ └── nodejs │ │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ │ ├── install.md │ │ │ │ │ │ │ └── write.md │ │ │ │ │ ├── kotlin.md │ │ │ │ │ ├── php.md │ │ │ │ │ ├── python.md │ │ │ │ │ ├── r.md │ │ │ │ │ ├── ruby.md │ │ │ │ │ ├── scala.md │ │ │ │ │ └── swift.md │ │ │ │ └── v3 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── csharp.md │ │ │ │ │ ├── go.md │ │ │ │ │ ├── java.md │ │ │ │ │ ├── javascript.md │ │ │ │ │ └── python.md │ │ │ ├── config-options.md │ │ │ ├── glossary.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── feature-support.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── date-time.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── group-by.md │ │ │ │ ├── internals.md │ │ │ │ ├── limit-and-slimit.md │ │ │ │ ├── math-operators.md │ │ │ │ ├── offset-and-soffset.md │ │ │ │ ├── order-by.md │ │ │ │ ├── quoting.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── select.md │ │ │ │ ├── show.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── time-and-timezone.md │ │ │ │ └── where.md │ │ │ ├── internals │ │ │ │ ├── _index.md │ │ │ │ ├── authentication.md │ │ │ │ ├── data-retention.md │ │ │ │ └── durability │ │ │ │ │ └── _index.md │ │ │ ├── line-protocol.md │ │ │ ├── naming-restrictions.md │ │ │ ├── processing-engine.md │ │ │ ├── sample-data.md │ │ │ ├── sql │ │ │ │ ├── _index.md │ │ │ │ ├── data-types.md │ │ │ │ ├── explain.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregate.md │ │ │ │ │ ├── array.md │ │ │ │ │ ├── binary-string.md │ │ │ │ │ ├── cache.md │ │ │ │ │ ├── conditional.md │ │ │ │ │ ├── hashing.md │ │ │ │ │ ├── map.md │ │ │ │ │ ├── math.md │ │ │ │ │ ├── misc.md │ │ │ │ │ ├── regular-expression.md │ │ │ │ │ ├── selector.md │ │ │ │ │ ├── string.md │ │ │ │ │ ├── struct.md │ │ │ │ │ ├── time-and-date.md │ │ │ │ │ └── window.md │ │ │ │ ├── group-by.md │ │ │ │ ├── having.md │ │ │ │ ├── information-schema.md │ │ │ │ ├── join.md │ │ │ │ ├── limit.md │ │ │ │ ├── operators │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── arithmetic.md │ │ │ │ │ ├── bitwise.md │ │ │ │ │ ├── comparison.md │ │ │ │ │ ├── logical.md │ │ │ │ │ └── other.md │ │ │ │ ├── order-by.md │ │ │ │ ├── select.md │ │ │ │ ├── subqueries.md │ │ │ │ ├── table-value-constructor.md │ │ │ │ ├── union.md │ │ │ │ └── where.md │ │ │ └── telemetry.md │ │ ├── release-notes │ │ │ └── _index.md │ │ ├── visualize-data │ │ │ ├── _index.md │ │ │ ├── grafana.md │ │ │ ├── powerbi.md │ │ │ ├── superset.md │ │ │ └── tableau.md │ │ └── write-data │ │ │ ├── _index.md │ │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ │ ├── client-libraries.md │ │ │ ├── compatibility-apis.md │ │ │ ├── http-api │ │ │ ├── _index.md │ │ │ ├── compatibility-apis.md │ │ │ └── v3-write-lp.md │ │ │ ├── influxdb3-cli.md │ │ │ ├── troubleshoot.md │ │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure.md │ │ │ ├── csv.md │ │ │ └── dual-write.md │ └── explorer │ │ ├── _index.md │ │ ├── about │ │ └── _index.md │ │ ├── get-started.md │ │ ├── install.md │ │ ├── manage-caches │ │ ├── _index.md │ │ ├── distinct-value-caches.md │ │ └── last-value-caches.md │ │ ├── manage-databases.md │ │ ├── manage-plugins │ │ ├── _index.md │ │ └── plugin-library.md │ │ └── manage-tokens.md ├── kapacitor │ └── v1 │ │ ├── _index.md │ │ ├── administration │ │ ├── _index.md │ │ ├── auth │ │ │ ├── _index.md │ │ │ ├── influxdb-enterprise-auth.md │ │ │ └── kapacitor-auth.md │ │ ├── configuration.md │ │ ├── security.md │ │ ├── subscription-management.md │ │ └── upgrading.md │ │ ├── guides │ │ ├── _index.md │ │ ├── anomaly_detection.md │ │ ├── continuous_queries.md │ │ ├── event-handler-setup.md │ │ ├── hierarchical-alert-suppression.md │ │ ├── join_backfill.md │ │ ├── live_leaderboard.md │ │ ├── load_directory.md │ │ ├── reference_scripts.md │ │ ├── scheduled-downtime.md │ │ ├── socket_udf.md │ │ └── two-measurement-alert.md │ │ ├── introduction │ │ ├── _index.md │ │ ├── getting-started.md │ │ ├── install-docker.md │ │ └── installation.md │ │ ├── reference │ │ ├── _index.md │ │ ├── about_the_project │ │ │ ├── _index.md │ │ │ ├── cla.md │ │ │ ├── contributing.md │ │ │ ├── license.md │ │ │ └── release-notes.md │ │ ├── cli │ │ │ ├── _index.md │ │ │ ├── kapacitor │ │ │ │ ├── _index.md │ │ │ │ ├── backup.md │ │ │ │ ├── define-template.md │ │ │ │ ├── define-topic-handler.md │ │ │ │ ├── define.md │ │ │ │ ├── delete.md │ │ │ │ ├── disable.md │ │ │ │ ├── enable.md │ │ │ │ ├── flux │ │ │ │ │ ├── _index.md │ │ │ │ │ └── task │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ ├── log │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── list.md │ │ │ │ │ │ ├── retry-failed.md │ │ │ │ │ │ ├── run │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── retry.md │ │ │ │ │ │ └── update.md │ │ │ │ ├── help.md │ │ │ │ ├── level.md │ │ │ │ ├── list.md │ │ │ │ ├── logs.md │ │ │ │ ├── record │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── batch.md │ │ │ │ │ ├── query.md │ │ │ │ │ └── stream.md │ │ │ │ ├── reload.md │ │ │ │ ├── replay-live │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── batch.md │ │ │ │ │ └── query.md │ │ │ │ ├── replay.md │ │ │ │ ├── service-tests.md │ │ │ │ ├── show-template.md │ │ │ │ ├── show-topic-handler.md │ │ │ │ ├── show-topic.md │ │ │ │ ├── show.md │ │ │ │ ├── stats.md │ │ │ │ ├── vars.md │ │ │ │ ├── version.md │ │ │ │ └── watch.md │ │ │ └── kapacitord │ │ │ │ ├── _index.md │ │ │ │ ├── config.md │ │ │ │ ├── downgrade.md │ │ │ │ ├── help.md │ │ │ │ ├── run.md │ │ │ │ └── version.md │ │ ├── event_handlers │ │ │ ├── _index.md │ │ │ ├── aggregate.md │ │ │ ├── alerta.md │ │ │ ├── bigpanda.md │ │ │ ├── discord.md │ │ │ ├── email.md │ │ │ ├── exec.md │ │ │ ├── hipchat.md │ │ │ ├── kafka.md │ │ │ ├── log.md │ │ │ ├── microsoftteams.md │ │ │ ├── mqtt.md │ │ │ ├── opsgenie │ │ │ │ ├── v1.md │ │ │ │ └── v2.md │ │ │ ├── pagerduty │ │ │ │ ├── v1.md │ │ │ │ └── v2.md │ │ │ ├── post.md │ │ │ ├── publish.md │ │ │ ├── pushover.md │ │ │ ├── sensu.md │ │ │ ├── servicenow.md │ │ │ ├── slack.md │ │ │ ├── snmptrap.md │ │ │ ├── tcp.md │ │ │ ├── telegram.md │ │ │ ├── victorops.md │ │ │ └── zenoss.md │ │ ├── nodes │ │ │ ├── _index.md │ │ │ ├── alert_node.md │ │ │ ├── barrier_node.md │ │ │ ├── batch_node.md │ │ │ ├── change_detect_node.md │ │ │ ├── combine_node.md │ │ │ ├── default_node.md │ │ │ ├── delete_node.md │ │ │ ├── derivative_node.md │ │ │ ├── ec2_autoscale_node.md │ │ │ ├── eval_node.md │ │ │ ├── flatten_node.md │ │ │ ├── from_node.md │ │ │ ├── group_by_node.md │ │ │ ├── http_out_node.md │ │ │ ├── http_post_node.md │ │ │ ├── influx_d_b_out_node.md │ │ │ ├── influx_q_l_node.md │ │ │ ├── join_node.md │ │ │ ├── k8s_autoscale_node.md │ │ │ ├── kapacitor_loopback_node.md │ │ │ ├── log_node.md │ │ │ ├── no_op_node.md │ │ │ ├── query_flux_node.md │ │ │ ├── query_node.md │ │ │ ├── sample_node.md │ │ │ ├── shift_node.md │ │ │ ├── sideload_node.md │ │ │ ├── state_count_node.md │ │ │ ├── state_duration_node.md │ │ │ ├── stats_node.md │ │ │ ├── stream_node.md │ │ │ ├── swarm_autoscale_node.md │ │ │ ├── trickle_node.md │ │ │ ├── u_d_f_node.md │ │ │ ├── union_node.md │ │ │ ├── where_node.md │ │ │ └── window_node.md │ │ ├── tick │ │ │ ├── _index.md │ │ │ ├── expr.md │ │ │ ├── introduction.md │ │ │ ├── spec.md │ │ │ └── syntax.md │ │ └── user-types-permissions.md │ │ ├── troubleshooting │ │ ├── _index.md │ │ └── frequently-asked-questions.md │ │ └── working │ │ ├── _index.md │ │ ├── alerts.md │ │ ├── api.md │ │ ├── cli_client.md │ │ ├── custom_alert.md │ │ ├── custom_output.md │ │ ├── flux │ │ ├── _index.md │ │ └── manage │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── list.md │ │ │ ├── retry-failed.md │ │ │ ├── task-runs.md │ │ │ ├── update.md │ │ │ └── view-task-logs.md │ │ ├── kapa-and-chrono.md │ │ ├── scraping-and-discovery.md │ │ ├── template_tasks.md │ │ └── using_alert_topics.md ├── platform │ ├── _index.md │ ├── faq.md │ ├── getting-started.md │ ├── identify-version.md │ ├── monitoring │ │ ├── _index.md │ │ ├── containers │ │ │ ├── _index.md │ │ │ └── kubernetes.md │ │ └── influxdata-platform │ │ │ ├── _index.md │ │ │ ├── external-monitor-setup.md │ │ │ ├── internal-vs-external.md │ │ │ ├── monitoring-dashboards.md │ │ │ └── tools │ │ │ ├── _index.md │ │ │ ├── kapacitor-measurements.md │ │ │ ├── measurements-internal.md │ │ │ ├── show-diagnostics.md │ │ │ └── show-stats.md │ └── troubleshoot │ │ ├── _index.md │ │ ├── disk-usage.md │ │ └── oom-loops.md ├── resources │ ├── _index.md │ ├── how-to-guides │ │ ├── _index.md │ │ ├── alert-to-zapier.md │ │ ├── assigning-more-than-four-states.md │ │ ├── late-arriving-data.md │ │ ├── reduce-to-construct-JSON.md │ │ ├── select-hours-from-data.md │ │ └── state-changes-across-task-executions.md │ └── videos │ │ ├── API-Invokable-Scripts.md │ │ ├── Aggregator-&-Processor-Plugins-in-Telegraf.md │ │ ├── Architecture-Overview-for-IoT-and-InfluxDB.md │ │ ├── Basics-of-Geo-temporal-data-and-InfluxDB.md │ │ ├── Batching-Data-with-the-Python-Client-Library.md │ │ ├── Checks-&-Notification-in-Action.md │ │ ├── Edge-Data-Replication.md │ │ ├── Explicit-Schemas-in-InfluxDB.md │ │ ├── Flux-Data-Structure.md │ │ ├── Flux-Functions.md │ │ ├── Flux-and-S2-Geometry.md │ │ ├── Getting-Started-with-the-Node-js-Client-Library-in-InfluxDB.md │ │ ├── InfluxDB-in-the-IoT-stack.md │ │ ├── Intro-to-Check-&-Notifications.md │ │ ├── Intro-to-Client-Libraries.md │ │ ├── Invocable-Scripts-and-Tasks.md │ │ ├── Invocable-Scripts-for-Alerting.md │ │ ├── Optimizing-Flux-Functions.md │ │ ├── Querying-Data-with-the-Python-Client-Library.md │ │ ├── Retaining-Data-Shape-When-Downsampling-To-Cloud.md │ │ ├── Using-Flux-to-query-geo-temporal-data.md │ │ ├── Using-MQTT-and-InfluxDB-for-IoT.md │ │ ├── Using-Pandas-Dataframes-in-InfluxDB-with-Python.md │ │ ├── Using-Scripts-in-InfluxDB.md │ │ ├── Using-the-InfluxDB-Python-Client-Library-Administrative-API.md │ │ ├── _index.md │ │ ├── basics-of-time-series-data.md │ │ ├── configure-telegraf-plugin.md │ │ ├── configuring-replications-for-downsampling-to-cloud.md │ │ ├── data-model-building-blocks.md │ │ ├── geolocation-and-influxdb.md │ │ ├── influxdb-edge.md │ │ ├── influxdb-tasks.md │ │ ├── influxql-oss-and-cloud.md │ │ ├── ingest-data.md │ │ ├── intro-to-telegraf.md │ │ ├── iot-monitoring-with-influxdb.md │ │ ├── joins-in-flux.md │ │ ├── pivots-in-flux.md │ │ ├── spirit-of-open-source.md │ │ ├── telegraf-agent-config-best-practice.md │ │ ├── telegraf-data-ingest-plugin.md │ │ ├── telegraf-plugin-system-overview.md │ │ ├── time-series-design-decisions.md │ │ ├── tsm-engine.md │ │ └── what-is-time-to-awesome.md ├── shared │ ├── README.md │ ├── _index.md │ ├── identify-version.md │ ├── influxctl │ │ ├── database │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── list.md │ │ │ ├── rename.md │ │ │ ├── undelete.md │ │ │ └── update.md │ │ ├── release-notes.md │ │ └── table │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── iceberg │ │ │ ├── _index.md │ │ │ ├── disable.md │ │ │ └── enable.md │ │ │ ├── list.md │ │ │ ├── rename.md │ │ │ └── undelete.md │ ├── influxdb-client-libraries-reference │ │ ├── _index.md │ │ ├── flight │ │ │ ├── _index.md │ │ │ ├── csharp-flight.md │ │ │ ├── go-flight.md │ │ │ ├── java-flightsql.md │ │ │ ├── python-flight.md │ │ │ └── python-flightsql-dbapi.md │ │ ├── v1 │ │ │ └── _index.md │ │ ├── v2 │ │ │ ├── _index.md │ │ │ ├── arduino.md │ │ │ ├── csharp.md │ │ │ ├── dart.md │ │ │ ├── go.md │ │ │ ├── java.md │ │ │ ├── javascript │ │ │ │ ├── _index.md │ │ │ │ ├── browser.md │ │ │ │ └── nodejs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── install.md │ │ │ │ │ └── write.md │ │ │ ├── kotlin.md │ │ │ ├── php.md │ │ │ ├── python.md │ │ │ ├── r.md │ │ │ ├── ruby.md │ │ │ ├── scala.md │ │ │ └── swift.md │ │ └── v3 │ │ │ ├── _index.md │ │ │ ├── csharp.md │ │ │ ├── go.md │ │ │ ├── java.md │ │ │ ├── javascript.md │ │ │ └── python.md │ ├── influxdb-v2 │ │ ├── admin │ │ │ ├── buckets │ │ │ │ └── delete-bucket.md │ │ │ └── tokens │ │ │ │ ├── create-token.md │ │ │ │ ├── delete-token.md │ │ │ │ ├── update-tokens.md │ │ │ │ ├── use-tokens.md │ │ │ │ └── view-tokens.md │ │ ├── api-guide │ │ │ ├── api_intro.md │ │ │ ├── client-libraries │ │ │ │ ├── _index.md │ │ │ │ ├── arduino.md │ │ │ │ ├── browserjs.md │ │ │ │ ├── csharp.md │ │ │ │ ├── dart.md │ │ │ │ ├── go.md │ │ │ │ ├── java.md │ │ │ │ ├── kotlin.md │ │ │ │ ├── nodejs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── install.md │ │ │ │ │ ├── query.md │ │ │ │ │ └── write.md │ │ │ │ ├── php.md │ │ │ │ ├── python.md │ │ │ │ ├── r.md │ │ │ │ ├── ruby.md │ │ │ │ ├── scala.md │ │ │ │ └── swift.md │ │ │ ├── influxdb-1x │ │ │ │ └── _index.md │ │ │ └── tutorials │ │ │ │ ├── _index.md │ │ │ │ ├── nodejs.md │ │ │ │ └── python.md │ │ ├── get-started │ │ │ ├── process.md │ │ │ ├── query.md │ │ │ ├── visualize.md │ │ │ └── write.md │ │ ├── monitor-alert │ │ │ ├── _index.md │ │ │ ├── checks │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── custom-checks.md │ │ │ ├── notification-endpoints │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── notification-rules │ │ │ │ ├── create.md │ │ │ │ ├── delete.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ │ ├── send-email.md │ │ │ └── templates │ │ │ │ ├── infrastructure │ │ │ │ ├── aws.md │ │ │ │ ├── docker.md │ │ │ │ ├── raspberry-pi.md │ │ │ │ ├── vshpere.md │ │ │ │ └── windows.md │ │ │ │ ├── monitor.md │ │ │ │ └── networks │ │ │ │ └── haproxy.md │ │ ├── process-data │ │ │ ├── get-started.md │ │ │ ├── manage-tasks │ │ │ │ ├── create-task.md │ │ │ │ ├── delete-task.md │ │ │ │ ├── run-task.md │ │ │ │ ├── task-run-history.md │ │ │ │ └── update-task.md │ │ │ └── task-options.md │ │ ├── query-data │ │ │ ├── common-queries │ │ │ │ ├── _index.md │ │ │ │ ├── compare-values.md │ │ │ │ ├── iot-common-queries.md │ │ │ │ ├── multiple-fields-in-calculations.md │ │ │ │ └── operate-on-columns.md │ │ │ ├── execute-queries │ │ │ │ ├── data-explorer.md │ │ │ │ ├── flux-repl.md │ │ │ │ ├── influx-api.md │ │ │ │ └── influx-query.md │ │ │ ├── flux │ │ │ │ ├── _index.md │ │ │ │ ├── calculate-percentages.md │ │ │ │ ├── conditional-logic.md │ │ │ │ ├── cumulativesum.md │ │ │ │ ├── custom-functions │ │ │ │ │ ├── _index.md │ │ │ │ │ └── custom-aggregate.md │ │ │ │ ├── exists.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── fill.md │ │ │ │ ├── first-last.md │ │ │ │ ├── flux-version.md │ │ │ │ ├── geo │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── filter-by-region.md │ │ │ │ │ ├── group-geo-data.md │ │ │ │ │ └── shape-geo-data.md │ │ │ │ ├── group-data.md │ │ │ │ ├── histograms.md │ │ │ │ ├── increase.md │ │ │ │ ├── join.md │ │ │ │ ├── mathematic-operations.md │ │ │ │ ├── median.md │ │ │ │ ├── monitor-states.md │ │ │ │ ├── moving-average.md │ │ │ │ ├── operate-on-timestamps.md │ │ │ │ ├── percentile-quantile.md │ │ │ │ ├── query-fields.md │ │ │ │ ├── rate.md │ │ │ │ ├── regular-expressions.md │ │ │ │ ├── scalar-values.md │ │ │ │ ├── sort-limit.md │ │ │ │ ├── sql.md │ │ │ │ └── window-aggregate.md │ │ │ ├── get-started │ │ │ │ ├── _index.md │ │ │ │ ├── query-influxdb.md │ │ │ │ └── transform-data.md │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── dbrp.md │ │ │ │ ├── explore-data │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── group-by.md │ │ │ │ │ ├── limit-and-slimit.md │ │ │ │ │ ├── offset-and-soffset.md │ │ │ │ │ ├── order-by.md │ │ │ │ │ ├── regular-expressions.md │ │ │ │ │ ├── select.md │ │ │ │ │ ├── subqueries.md │ │ │ │ │ ├── time-and-timezone.md │ │ │ │ │ └── where.md │ │ │ │ ├── explore-schema.md │ │ │ │ ├── functions │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── aggregates.md │ │ │ │ │ ├── selectors.md │ │ │ │ │ ├── technical-analysis.md │ │ │ │ │ └── transformations.md │ │ │ │ ├── manage-data.md │ │ │ │ └── math-operators.md │ │ │ └── optimize-queries.md │ │ ├── reference │ │ │ ├── api │ │ │ │ └── _index.md │ │ │ ├── cli │ │ │ │ └── influx │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── apply │ │ │ │ │ └── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── active.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── inactive.md │ │ │ │ │ └── list.md │ │ │ │ │ ├── backup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── bucket-schema │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── bucket │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── completion │ │ │ │ │ └── _index.md │ │ │ │ │ ├── config │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── set.md │ │ │ │ │ ├── dashboards │ │ │ │ │ └── _index.md │ │ │ │ │ ├── delete │ │ │ │ │ └── _index.md │ │ │ │ │ ├── export │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── all.md │ │ │ │ │ └── stack.md │ │ │ │ │ ├── help │ │ │ │ │ └── _index.md │ │ │ │ │ ├── org │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── members │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── add.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── ping │ │ │ │ │ └── _index.md │ │ │ │ │ ├── query │ │ │ │ │ └── _index.md │ │ │ │ │ ├── remote │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── replication │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── restore │ │ │ │ │ └── index.md │ │ │ │ │ ├── scripts │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── invoke.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── retrieve.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── secret │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── setup │ │ │ │ │ └── _index.md │ │ │ │ │ ├── stacks │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── init.md │ │ │ │ │ ├── remove.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── task │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── log │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ └── list.md │ │ │ │ │ ├── retry-failed.md │ │ │ │ │ ├── run │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── retry.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── telegrafs │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── rm.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── template │ │ │ │ │ ├── _index.md │ │ │ │ │ └── validate.md │ │ │ │ │ ├── transpile │ │ │ │ │ └── _index.md │ │ │ │ │ ├── user │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── create.md │ │ │ │ │ ├── delete.md │ │ │ │ │ ├── list.md │ │ │ │ │ ├── password.md │ │ │ │ │ └── update.md │ │ │ │ │ ├── v1 │ │ │ │ │ ├── _index.md │ │ │ │ │ ├── auth │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ ├── set-active.md │ │ │ │ │ │ ├── set-inactive.md │ │ │ │ │ │ └── set-password.md │ │ │ │ │ ├── dbrp │ │ │ │ │ │ ├── _index.md │ │ │ │ │ │ ├── create.md │ │ │ │ │ │ ├── delete.md │ │ │ │ │ │ ├── list.md │ │ │ │ │ │ └── update.md │ │ │ │ │ └── shell.md │ │ │ │ │ ├── version │ │ │ │ │ └── _index.md │ │ │ │ │ └── write │ │ │ │ │ ├── _index.md │ │ │ │ │ └── dryrun.md │ │ │ ├── faq.md │ │ │ ├── glossary.md │ │ │ ├── key-concepts │ │ │ │ ├── data-elements.md │ │ │ │ ├── data-schema.md │ │ │ │ └── design-principles.md │ │ │ ├── prometheus-metrics.md │ │ │ ├── release-notes │ │ │ │ └── influx-cli.md │ │ │ ├── sample-data.md │ │ │ └── syntax │ │ │ │ ├── _index.md │ │ │ │ ├── annotated-csv │ │ │ │ ├── _index.md │ │ │ │ └── extended.md │ │ │ │ ├── delete-predicate.md │ │ │ │ ├── flux │ │ │ │ ├── _index.md │ │ │ │ └── flux-vs-influxql.md │ │ │ │ ├── influxql │ │ │ │ ├── _index.md │ │ │ │ ├── internals.md │ │ │ │ └── spec.md │ │ │ │ └── line-protocol.md │ │ ├── tools │ │ │ ├── chronograf.md │ │ │ ├── flux-repl.md │ │ │ ├── flux-vim-lsp.md │ │ │ ├── flux-vscode.md │ │ │ ├── grafana.md │ │ │ ├── influx-cli.md │ │ │ ├── influxdb-templates │ │ │ │ └── use.md │ │ │ ├── influxql-shell.md │ │ │ ├── kapacitor.md │ │ │ ├── notebooks │ │ │ │ ├── _index.md │ │ │ │ ├── clean-data.md │ │ │ │ ├── create-notebook.md │ │ │ │ ├── downsample.md │ │ │ │ ├── manage-notebooks.md │ │ │ │ ├── overview.md │ │ │ │ └── troubleshoot-notebooks.md │ │ │ └── telegraf-configs │ │ │ │ ├── _index.md │ │ │ │ ├── clone.md │ │ │ │ ├── create.md │ │ │ │ ├── remove.md │ │ │ │ ├── update.md │ │ │ │ └── view.md │ │ ├── visualize-data │ │ │ └── visualization-types │ │ │ │ ├── band.md │ │ │ │ ├── gauge.md │ │ │ │ ├── graph-single-stat.md │ │ │ │ ├── graph.md │ │ │ │ ├── heatmap.md │ │ │ │ ├── histogram.md │ │ │ │ ├── mosaic.md │ │ │ │ ├── scatter.md │ │ │ │ ├── single-stat.md │ │ │ │ └── table.md │ │ └── write-data │ │ │ ├── best-practices │ │ │ ├── resolve-high-cardinality.md │ │ │ └── schema-design.md │ │ │ ├── delete-data.md │ │ │ ├── developer-tools │ │ │ ├── csv.md │ │ │ └── scrape-prometheus-metrics.md │ │ │ ├── migrate-data │ │ │ ├── migrate-cloud-to-oss.md │ │ │ └── migrate-oss.md │ │ │ ├── no-code │ │ │ ├── load-data.md │ │ │ └── use-telegraf │ │ │ │ └── dual-write.md │ │ │ ├── oss-to-cloud.md │ │ │ ├── replication │ │ │ ├── _index.md │ │ │ └── replicate-data.md │ │ │ └── troubleshoot.md │ ├── influxdb3-admin │ │ ├── _index.md │ │ ├── backup-restore.md │ │ ├── databases │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ └── list.md │ │ ├── distinct-value-cache │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── query.md │ │ │ └── show.md │ │ ├── last-value-cache │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ ├── query.md │ │ │ └── show.md │ │ ├── mcp-server.md │ │ ├── object-storage │ │ │ ├── _index.md │ │ │ └── minio.md │ │ ├── performance-tuning.md │ │ ├── query-system-data │ │ │ └── _index.md │ │ ├── tables │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ ├── delete.md │ │ │ └── list.md │ │ ├── tokens │ │ │ ├── _index.md │ │ │ └── admin │ │ │ │ ├── _index.md │ │ │ │ ├── create.md │ │ │ │ ├── list.md │ │ │ │ ├── preconfigured.md │ │ │ │ └── regenerate.md │ │ └── upgrade.md │ ├── influxdb3-api-reference │ │ └── _index.md │ ├── influxdb3-cli │ │ ├── config-options.md │ │ ├── create │ │ │ ├── _index.md │ │ │ ├── database.md │ │ │ ├── distinct_cache.md │ │ │ ├── file_index.md │ │ │ ├── last_cache.md │ │ │ ├── table.md │ │ │ ├── token │ │ │ │ ├── _index.md │ │ │ │ └── admin.md │ │ │ └── trigger.md │ │ ├── delete │ │ │ ├── _index.md │ │ │ ├── database.md │ │ │ ├── distinct_cache.md │ │ │ ├── file_index.md │ │ │ ├── last_cache.md │ │ │ ├── table.md │ │ │ ├── token.md │ │ │ └── trigger.md │ │ ├── disable │ │ │ ├── _index.md │ │ │ └── trigger.md │ │ ├── enable │ │ │ ├── _index.md │ │ │ └── trigger.md │ │ ├── install │ │ │ ├── _index.md │ │ │ └── package.md │ │ ├── query.md │ │ ├── show │ │ │ ├── _index.md │ │ │ ├── databases.md │ │ │ ├── nodes.md │ │ │ ├── plugins.md │ │ │ ├── retention.md │ │ │ ├── system │ │ │ │ ├── _index.md │ │ │ │ ├── summary.md │ │ │ │ ├── table-list.md │ │ │ │ └── table.md │ │ │ └── tokens.md │ │ ├── stop │ │ │ ├── _index.md │ │ │ └── node.md │ │ ├── test │ │ │ ├── _index.md │ │ │ ├── schedule_plugin.md │ │ │ └── wal_plugin.md │ │ ├── update │ │ │ ├── _index.md │ │ │ ├── database │ │ │ │ └── _index.md │ │ │ ├── table │ │ │ │ └── _index.md │ │ │ └── trigger.md │ │ └── write.md │ ├── influxdb3-get-started │ │ ├── _index.md │ │ ├── processing-engine.md │ │ ├── query.md │ │ ├── setup.md │ │ └── write.md │ ├── influxdb3-internals-reference │ │ ├── _index.md │ │ ├── authentication.md │ │ └── durability.md │ ├── influxdb3-internals │ │ └── data-retention.md │ ├── influxdb3-plugins │ │ ├── _index.md │ │ ├── extended-plugin-api.md │ │ └── plugins-library │ │ │ ├── _index.md │ │ │ ├── examples │ │ │ ├── _index.md │ │ │ └── wal-plugin.md │ │ │ └── official │ │ │ ├── _index.md │ │ │ ├── basic-transformation.md │ │ │ ├── downsampler.md │ │ │ ├── forecast-error-evaluator.md │ │ │ ├── influxdb-to-iceberg.md │ │ │ ├── mad-check.md │ │ │ ├── notifier.md │ │ │ ├── prophet-forecasting.md │ │ │ ├── state-change.md │ │ │ ├── stateless-adtk-detector.md │ │ │ ├── system-metrics.md │ │ │ └── threshold-deadman-checks.md │ ├── influxdb3-query-guides │ │ ├── _index.md │ │ ├── execute-queries │ │ │ ├── _index.md │ │ │ ├── influxdb-v1-api.md │ │ │ ├── influxdb3-api.md │ │ │ └── influxdb3-cli.md │ │ ├── influxql │ │ │ ├── _index.md │ │ │ ├── aggregate-select.md │ │ │ ├── basic-query.md │ │ │ ├── explore-schema.md │ │ │ ├── parameterized-queries.md │ │ │ └── troubleshoot.md │ │ ├── query-timeout-best-practices.md │ │ ├── snapshots │ │ │ └── snowflake.md │ │ └── sql │ │ │ ├── _index.md │ │ │ ├── aggregate-select.md │ │ │ ├── basic-query.md │ │ │ ├── cast-types.md │ │ │ ├── compare-values.md │ │ │ ├── explore-schema.md │ │ │ ├── fill-gaps.md │ │ │ └── parameterized-queries.md │ ├── influxdb3-reference │ │ ├── glossary.md │ │ ├── influxdb3-processing-engine.md │ │ ├── naming-restrictions.md │ │ └── telemetry.md │ ├── influxdb3-sample-data │ │ ├── sample-data-dist.md │ │ └── sample-data.md │ ├── influxdb3-visualize │ │ ├── powerbi.md │ │ ├── superset.md │ │ └── tableau.md │ ├── influxdb3-write-guides │ │ ├── _index.md │ │ ├── best-practices │ │ │ ├── _index.md │ │ │ ├── optimize-writes.md │ │ │ └── schema-design.md │ │ ├── client-libraries.md │ │ ├── http-api │ │ │ ├── _index.md │ │ │ ├── compatibility-apis.md │ │ │ └── v3-write-lp.md │ │ ├── influxdb3-cli.md │ │ ├── troubleshoot-distributed.md │ │ ├── troubleshoot.md │ │ └── use-telegraf │ │ │ ├── _index.md │ │ │ ├── configure.md │ │ │ ├── csv.md │ │ │ └── dual-write.md │ ├── influxdb3 │ │ ├── _index.md │ │ └── install.md │ ├── influxql-v3-reference │ │ ├── _index.md │ │ ├── feature-support.md │ │ ├── functions │ │ │ ├── _index.md │ │ │ ├── aggregates.md │ │ │ ├── date-time.md │ │ │ ├── misc.md │ │ │ ├── selectors.md │ │ │ ├── technical-analysis.md │ │ │ └── transformations.md │ │ ├── group-by.md │ │ ├── internals.md │ │ ├── limit-and-slimit.md │ │ ├── math-operators.md │ │ ├── offset-and-soffset.md │ │ ├── order-by.md │ │ ├── quoting.md │ │ ├── regular-expressions.md │ │ ├── select.md │ │ ├── show.md │ │ ├── subqueries.md │ │ ├── time-and-timezone.md │ │ └── where.md │ ├── sql-reference │ │ ├── _index.md │ │ ├── data-types.md │ │ ├── explain.md │ │ ├── functions │ │ │ ├── _index.md │ │ │ ├── aggregate.md │ │ │ ├── array.md │ │ │ ├── binary-string.md │ │ │ ├── cache.md │ │ │ ├── conditional.md │ │ │ ├── hashing.md │ │ │ ├── map.md │ │ │ ├── math.md │ │ │ ├── misc.md │ │ │ ├── regular-expression.md │ │ │ ├── selector.md │ │ │ ├── string.md │ │ │ ├── struct.md │ │ │ ├── time-and-date.md │ │ │ └── window.md │ │ ├── group-by.md │ │ ├── having.md │ │ ├── information-schema.md │ │ ├── join.md │ │ ├── limit.md │ │ ├── operators │ │ │ ├── _index.md │ │ │ ├── arithmetic.md │ │ │ ├── bitwise.md │ │ │ ├── comparison.md │ │ │ ├── logical.md │ │ │ └── other.md │ │ ├── order-by.md │ │ ├── select.md │ │ ├── subqueries.md │ │ ├── table-value-constructor.md │ │ ├── union.md │ │ └── where.md │ ├── v3-core-enterprise-release-notes │ │ └── _index.md │ ├── v3-distributed-admin-custom-partitions │ │ ├── _index.md │ │ ├── best-practices.md │ │ ├── define-custom-partitions.md │ │ ├── partition-templates.md │ │ └── view-partitions.md │ ├── v3-distributed-internals-reference │ │ └── durability.md │ ├── v3-line-protocol.md │ └── v3-process-data │ │ └── visualize │ │ └── grafana.md ├── telegraf │ └── v1 │ │ ├── _index.md │ │ ├── aggregator-plugins │ │ ├── _index.md │ │ ├── basicstats │ │ │ └── _index.md │ │ ├── derivative │ │ │ └── _index.md │ │ ├── final │ │ │ └── _index.md │ │ ├── histogram │ │ │ └── _index.md │ │ ├── merge │ │ │ └── _index.md │ │ ├── minmax │ │ │ └── _index.md │ │ ├── quantile │ │ │ └── _index.md │ │ ├── starlark │ │ │ └── _index.md │ │ └── valuecounter │ │ │ └── _index.md │ │ ├── commands │ │ ├── _index.md │ │ ├── config │ │ │ ├── _index.md │ │ │ ├── create.md │ │ │ └── migrate.md │ │ ├── plugins │ │ │ ├── _index.md │ │ │ ├── aggregators.md │ │ │ ├── inputs.md │ │ │ ├── outputs.md │ │ │ ├── parsers.md │ │ │ ├── processors.md │ │ │ ├── secretstores.md │ │ │ └── serializers.md │ │ ├── secrets │ │ │ ├── _index.md │ │ │ ├── get.md │ │ │ ├── list.md │ │ │ └── set.md │ │ └── version.md │ │ ├── configuration.md │ │ ├── configure_plugins │ │ ├── _index.md │ │ ├── aggregator_processor │ │ │ └── _index.md │ │ ├── external_plugins │ │ │ ├── _index.md │ │ │ ├── shim.md │ │ │ └── write_external_plugin.md │ │ ├── input_plugins │ │ │ ├── _index.md │ │ │ └── using_http.md │ │ ├── output_plugins │ │ │ └── _index.md │ │ ├── template-patterns.md │ │ └── troubleshoot.md │ │ ├── contribute.md │ │ ├── data_formats │ │ ├── _index.md │ │ ├── input │ │ │ ├── _index.md │ │ │ ├── avro.md │ │ │ ├── binary.md │ │ │ ├── collectd.md │ │ │ ├── csv.md │ │ │ ├── dropwizard.md │ │ │ ├── form_urlencoded.md │ │ │ ├── graphite.md │ │ │ ├── grok.md │ │ │ ├── influx.md │ │ │ ├── json.md │ │ │ ├── json_v2.md │ │ │ ├── logfmt.md │ │ │ ├── nagios.md │ │ │ ├── opentsdb.md │ │ │ ├── prometheus-remote-write.md │ │ │ ├── value.md │ │ │ ├── wavefront.md │ │ │ ├── xml.md │ │ │ ├── xpath_json.md │ │ │ ├── xpath_msgpack.md │ │ │ └── xpath_protobuf.md │ │ └── output │ │ │ ├── _index.md │ │ │ ├── carbon2.md │ │ │ ├── graphite.md │ │ │ ├── influx.md │ │ │ ├── json.md │ │ │ ├── messagepack.md │ │ │ ├── nowmetric.md │ │ │ └── splunkmetric.md │ │ ├── get-started.md │ │ ├── glossary.md │ │ ├── input-plugins │ │ ├── _index.md │ │ ├── activemq │ │ │ └── _index.md │ │ ├── aerospike │ │ │ └── _index.md │ │ ├── aliyuncms │ │ │ └── _index.md │ │ ├── amd_rocm_smi │ │ │ └── _index.md │ │ ├── amqp_consumer │ │ │ └── _index.md │ │ ├── apache │ │ │ └── _index.md │ │ ├── apcupsd │ │ │ └── _index.md │ │ ├── aurora │ │ │ └── _index.md │ │ ├── azure_monitor │ │ │ └── _index.md │ │ ├── azure_storage_queue │ │ │ └── _index.md │ │ ├── bcache │ │ │ └── _index.md │ │ ├── beanstalkd │ │ │ └── _index.md │ │ ├── beat │ │ │ └── _index.md │ │ ├── bind │ │ │ └── _index.md │ │ ├── bond │ │ │ └── _index.md │ │ ├── burrow │ │ │ └── _index.md │ │ ├── ceph │ │ │ └── _index.md │ │ ├── cgroup │ │ │ └── _index.md │ │ ├── chrony │ │ │ └── _index.md │ │ ├── cisco_telemetry_mdt │ │ │ └── _index.md │ │ ├── clickhouse │ │ │ └── _index.md │ │ ├── cloud_pubsub │ │ │ └── _index.md │ │ ├── cloud_pubsub_push │ │ │ └── _index.md │ │ ├── cloudwatch │ │ │ └── _index.md │ │ ├── cloudwatch_metric_streams │ │ │ └── _index.md │ │ ├── conntrack │ │ │ └── _index.md │ │ ├── consul │ │ │ └── _index.md │ │ ├── consul_agent │ │ │ └── _index.md │ │ ├── couchbase │ │ │ └── _index.md │ │ ├── couchdb │ │ │ └── _index.md │ │ ├── cpu │ │ │ └── _index.md │ │ ├── csgo │ │ │ └── _index.md │ │ ├── ctrlx_datalayer │ │ │ └── _index.md │ │ ├── dcos │ │ │ └── _index.md │ │ ├── directory_monitor │ │ │ └── _index.md │ │ ├── disk │ │ │ └── _index.md │ │ ├── diskio │ │ │ └── _index.md │ │ ├── disque │ │ │ └── _index.md │ │ ├── dmcache │ │ │ └── _index.md │ │ ├── dns_query │ │ │ └── _index.md │ │ ├── docker │ │ │ └── _index.md │ │ ├── docker_log │ │ │ └── _index.md │ │ ├── dovecot │ │ │ └── _index.md │ │ ├── dpdk │ │ │ └── _index.md │ │ ├── ecs │ │ │ └── _index.md │ │ ├── elasticsearch │ │ │ └── _index.md │ │ ├── elasticsearch_query │ │ │ └── _index.md │ │ ├── ethtool │ │ │ └── _index.md │ │ ├── eventhub_consumer │ │ │ └── _index.md │ │ ├── exec │ │ │ └── _index.md │ │ ├── execd │ │ │ └── _index.md │ │ ├── fail2ban │ │ │ └── _index.md │ │ ├── fibaro │ │ │ └── _index.md │ │ ├── file │ │ │ └── _index.md │ │ ├── filecount │ │ │ └── _index.md │ │ ├── filestat │ │ │ └── _index.md │ │ ├── fireboard │ │ │ └── _index.md │ │ ├── firehose │ │ │ └── _index.md │ │ ├── fluentd │ │ │ └── _index.md │ │ ├── fritzbox │ │ │ └── _index.md │ │ ├── github │ │ │ └── _index.md │ │ ├── gnmi │ │ │ └── _index.md │ │ ├── google_cloud_storage │ │ │ └── _index.md │ │ ├── graylog │ │ │ └── _index.md │ │ ├── haproxy │ │ │ └── _index.md │ │ ├── hddtemp │ │ │ └── _index.md │ │ ├── http │ │ │ └── _index.md │ │ ├── http_listener_v2 │ │ │ └── _index.md │ │ ├── http_response │ │ │ └── _index.md │ │ ├── huebridge │ │ │ └── _index.md │ │ ├── hugepages │ │ │ └── _index.md │ │ ├── icinga2 │ │ │ └── _index.md │ │ ├── infiniband │ │ │ └── _index.md │ │ ├── influxdb │ │ │ └── _index.md │ │ ├── influxdb_listener │ │ │ └── _index.md │ │ ├── influxdb_v2_listener │ │ │ └── _index.md │ │ ├── intel_baseband │ │ │ └── _index.md │ │ ├── intel_dlb │ │ │ └── _index.md │ │ ├── intel_pmt │ │ │ └── _index.md │ │ ├── intel_pmu │ │ │ └── _index.md │ │ ├── intel_powerstat │ │ │ └── _index.md │ │ ├── intel_rdt │ │ │ └── _index.md │ │ ├── internal │ │ │ └── _index.md │ │ ├── internet_speed │ │ │ └── _index.md │ │ ├── interrupts │ │ │ └── _index.md │ │ ├── ipmi_sensor │ │ │ └── _index.md │ │ ├── ipset │ │ │ └── _index.md │ │ ├── iptables │ │ │ └── _index.md │ │ ├── ipvs │ │ │ └── _index.md │ │ ├── jenkins │ │ │ └── _index.md │ │ ├── jolokia2_agent │ │ │ └── _index.md │ │ ├── jolokia2_proxy │ │ │ └── _index.md │ │ ├── jti_openconfig_telemetry │ │ │ └── _index.md │ │ ├── kafka_consumer │ │ │ └── _index.md │ │ ├── kapacitor │ │ │ └── _index.md │ │ ├── kernel │ │ │ └── _index.md │ │ ├── kernel_vmstat │ │ │ └── _index.md │ │ ├── kibana │ │ │ └── _index.md │ │ ├── kinesis_consumer │ │ │ └── _index.md │ │ ├── knx_listener │ │ │ └── _index.md │ │ ├── kube_inventory │ │ │ └── _index.md │ │ ├── kubernetes │ │ │ └── _index.md │ │ ├── lanz │ │ │ └── _index.md │ │ ├── ldap │ │ │ └── _index.md │ │ ├── leofs │ │ │ └── _index.md │ │ ├── libvirt │ │ │ └── _index.md │ │ ├── linux_cpu │ │ │ └── _index.md │ │ ├── linux_sysctl_fs │ │ │ └── _index.md │ │ ├── logql │ │ │ └── _index.md │ │ ├── logstash │ │ │ └── _index.md │ │ ├── lustre2 │ │ │ └── _index.md │ │ ├── lvm │ │ │ └── _index.md │ │ ├── mailchimp │ │ │ └── _index.md │ │ ├── marklogic │ │ │ └── _index.md │ │ ├── mavlink │ │ │ └── _index.md │ │ ├── mcrouter │ │ │ └── _index.md │ │ ├── mdstat │ │ │ └── _index.md │ │ ├── mem │ │ │ └── _index.md │ │ ├── memcached │ │ │ └── _index.md │ │ ├── mesos │ │ │ └── _index.md │ │ ├── minecraft │ │ │ └── _index.md │ │ ├── mock │ │ │ └── _index.md │ │ ├── modbus │ │ │ └── _index.md │ │ ├── mongodb │ │ │ └── _index.md │ │ ├── monit │ │ │ └── _index.md │ │ ├── mqtt_consumer │ │ │ └── _index.md │ │ ├── multifile │ │ │ └── _index.md │ │ ├── mysql │ │ │ └── _index.md │ │ ├── nats │ │ │ └── _index.md │ │ ├── nats_consumer │ │ │ └── _index.md │ │ ├── neoom_beaam │ │ │ └── _index.md │ │ ├── neptune_apex │ │ │ └── _index.md │ │ ├── net │ │ │ └── _index.md │ │ ├── net_response │ │ │ └── _index.md │ │ ├── netflow │ │ │ └── _index.md │ │ ├── netstat │ │ │ └── _index.md │ │ ├── nfsclient │ │ │ └── _index.md │ │ ├── nftables │ │ │ └── _index.md │ │ ├── nginx │ │ │ └── _index.md │ │ ├── nginx_plus │ │ │ └── _index.md │ │ ├── nginx_plus_api │ │ │ └── _index.md │ │ ├── nginx_sts │ │ │ └── _index.md │ │ ├── nginx_upstream_check │ │ │ └── _index.md │ │ ├── nginx_vts │ │ │ └── _index.md │ │ ├── nomad │ │ │ └── _index.md │ │ ├── nsd │ │ │ └── _index.md │ │ ├── nsdp │ │ │ └── _index.md │ │ ├── nsq │ │ │ └── _index.md │ │ ├── nsq_consumer │ │ │ └── _index.md │ │ ├── nstat │ │ │ └── _index.md │ │ ├── ntpq │ │ │ └── _index.md │ │ ├── nvidia_smi │ │ │ └── _index.md │ │ ├── opcua │ │ │ └── _index.md │ │ ├── opcua_listener │ │ │ └── _index.md │ │ ├── openldap │ │ │ └── _index.md │ │ ├── openntpd │ │ │ └── _index.md │ │ ├── opensearch_query │ │ │ └── _index.md │ │ ├── opensmtpd │ │ │ └── _index.md │ │ ├── openstack │ │ │ └── _index.md │ │ ├── opentelemetry │ │ │ └── _index.md │ │ ├── openweathermap │ │ │ └── _index.md │ │ ├── p4runtime │ │ │ └── _index.md │ │ ├── passenger │ │ │ └── _index.md │ │ ├── pf │ │ │ └── _index.md │ │ ├── pgbouncer │ │ │ └── _index.md │ │ ├── phpfpm │ │ │ └── _index.md │ │ ├── ping │ │ │ └── _index.md │ │ ├── postfix │ │ │ └── _index.md │ │ ├── postgresql │ │ │ └── _index.md │ │ ├── postgresql_extensible │ │ │ └── _index.md │ │ ├── powerdns │ │ │ └── _index.md │ │ ├── powerdns_recursor │ │ │ └── _index.md │ │ ├── processes │ │ │ └── _index.md │ │ ├── procstat │ │ │ └── _index.md │ │ ├── prometheus │ │ │ └── _index.md │ │ ├── promql │ │ │ └── _index.md │ │ ├── proxmox │ │ │ └── _index.md │ │ ├── puppetagent │ │ │ └── _index.md │ │ ├── rabbitmq │ │ │ └── _index.md │ │ ├── radius │ │ │ └── _index.md │ │ ├── raindrops │ │ │ └── _index.md │ │ ├── ras │ │ │ └── _index.md │ │ ├── ravendb │ │ │ └── _index.md │ │ ├── redfish │ │ │ └── _index.md │ │ ├── redis │ │ │ └── _index.md │ │ ├── redis_sentinel │ │ │ └── _index.md │ │ ├── rethinkdb │ │ │ └── _index.md │ │ ├── riak │ │ │ └── _index.md │ │ ├── riemann_listener │ │ │ └── _index.md │ │ ├── s7comm │ │ │ └── _index.md │ │ ├── salesforce │ │ │ └── _index.md │ │ ├── sensors │ │ │ └── _index.md │ │ ├── sflow │ │ │ └── _index.md │ │ ├── slab │ │ │ └── _index.md │ │ ├── slurm │ │ │ └── _index.md │ │ ├── smart │ │ │ └── _index.md │ │ ├── smartctl │ │ │ └── _index.md │ │ ├── snmp │ │ │ └── _index.md │ │ ├── snmp_trap │ │ │ └── _index.md │ │ ├── socket_listener │ │ │ └── _index.md │ │ ├── socketstat │ │ │ └── _index.md │ │ ├── solr │ │ │ └── _index.md │ │ ├── sql │ │ │ └── _index.md │ │ ├── sqlserver │ │ │ └── _index.md │ │ ├── stackdriver │ │ │ └── _index.md │ │ ├── statsd │ │ │ └── _index.md │ │ ├── supervisor │ │ │ └── _index.md │ │ ├── suricata │ │ │ └── _index.md │ │ ├── swap │ │ │ └── _index.md │ │ ├── synproxy │ │ │ └── _index.md │ │ ├── syslog │ │ │ └── _index.md │ │ ├── sysstat │ │ │ └── _index.md │ │ ├── system │ │ │ └── _index.md │ │ ├── systemd_units │ │ │ └── _index.md │ │ ├── tacacs │ │ │ └── _index.md │ │ ├── tail │ │ │ └── _index.md │ │ ├── teamspeak │ │ │ └── _index.md │ │ ├── temp │ │ │ └── _index.md │ │ ├── tengine │ │ │ └── _index.md │ │ ├── timex │ │ │ └── _index.md │ │ ├── tomcat │ │ │ └── _index.md │ │ ├── trig │ │ │ └── _index.md │ │ ├── turbostat │ │ │ └── _index.md │ │ ├── twemproxy │ │ │ └── _index.md │ │ ├── unbound │ │ │ └── _index.md │ │ ├── upsd │ │ │ └── _index.md │ │ ├── uwsgi │ │ │ └── _index.md │ │ ├── varnish │ │ │ └── _index.md │ │ ├── vault │ │ │ └── _index.md │ │ ├── vsphere │ │ │ └── _index.md │ │ ├── webhooks │ │ │ └── _index.md │ │ ├── whois │ │ │ └── _index.md │ │ ├── win_eventlog │ │ │ └── _index.md │ │ ├── win_perf_counters │ │ │ └── _index.md │ │ ├── win_services │ │ │ └── _index.md │ │ ├── win_wmi │ │ │ └── _index.md │ │ ├── wireguard │ │ │ └── _index.md │ │ ├── wireless │ │ │ └── _index.md │ │ ├── x509_cert │ │ │ └── _index.md │ │ ├── xtremio │ │ │ └── _index.md │ │ ├── zfs │ │ │ └── _index.md │ │ ├── zipkin │ │ │ └── _index.md │ │ └── zookeeper │ │ │ └── _index.md │ │ ├── install.md │ │ ├── metrics.md │ │ ├── output-plugins │ │ ├── _index.md │ │ ├── amon │ │ │ └── _index.md │ │ ├── amqp │ │ │ └── _index.md │ │ ├── application_insights │ │ │ └── _index.md │ │ ├── arc │ │ │ └── _index.md │ │ ├── azure_data_explorer │ │ │ └── _index.md │ │ ├── azure_monitor │ │ │ └── _index.md │ │ ├── bigquery │ │ │ └── _index.md │ │ ├── clarify │ │ │ └── _index.md │ │ ├── cloud_pubsub │ │ │ └── _index.md │ │ ├── cloudwatch │ │ │ └── _index.md │ │ ├── cloudwatch_logs │ │ │ └── _index.md │ │ ├── cratedb │ │ │ └── _index.md │ │ ├── datadog │ │ │ └── _index.md │ │ ├── discard │ │ │ └── _index.md │ │ ├── dynatrace │ │ │ └── _index.md │ │ ├── elasticsearch │ │ │ └── _index.md │ │ ├── event_hubs │ │ │ └── _index.md │ │ ├── exec │ │ │ └── _index.md │ │ ├── execd │ │ │ └── _index.md │ │ ├── file │ │ │ └── _index.md │ │ ├── graphite │ │ │ └── _index.md │ │ ├── graylog │ │ │ └── _index.md │ │ ├── groundwork │ │ │ └── _index.md │ │ ├── health │ │ │ └── _index.md │ │ ├── heartbeat │ │ │ └── _index.md │ │ ├── http │ │ │ └── _index.md │ │ ├── influxdb │ │ │ └── _index.md │ │ ├── influxdb_v2 │ │ │ └── _index.md │ │ ├── inlong │ │ │ └── _index.md │ │ ├── instrumental │ │ │ └── _index.md │ │ ├── iotdb │ │ │ └── _index.md │ │ ├── kafka │ │ │ └── _index.md │ │ ├── kinesis │ │ │ └── _index.md │ │ ├── librato │ │ │ └── _index.md │ │ ├── logzio │ │ │ └── _index.md │ │ ├── loki │ │ │ └── _index.md │ │ ├── microsoft_fabric │ │ │ └── _index.md │ │ ├── mongodb │ │ │ └── _index.md │ │ ├── mqtt │ │ │ └── _index.md │ │ ├── nats │ │ │ └── _index.md │ │ ├── nebius_cloud_monitoring │ │ │ └── _index.md │ │ ├── newrelic │ │ │ └── _index.md │ │ ├── nsq │ │ │ └── _index.md │ │ ├── opensearch │ │ │ └── _index.md │ │ ├── opentelemetry │ │ │ └── _index.md │ │ ├── opentsdb │ │ │ └── _index.md │ │ ├── parquet │ │ │ └── _index.md │ │ ├── postgresql │ │ │ └── _index.md │ │ ├── prometheus_client │ │ │ └── _index.md │ │ ├── quix │ │ │ └── _index.md │ │ ├── redistimeseries │ │ │ └── _index.md │ │ ├── remotefile │ │ │ └── _index.md │ │ ├── riemann │ │ │ └── _index.md │ │ ├── sensu │ │ │ └── _index.md │ │ ├── signalfx │ │ │ └── _index.md │ │ ├── socket_writer │ │ │ └── _index.md │ │ ├── sql │ │ │ └── _index.md │ │ ├── stackdriver │ │ │ └── _index.md │ │ ├── stomp │ │ │ └── _index.md │ │ ├── sumologic │ │ │ └── _index.md │ │ ├── syslog │ │ │ └── _index.md │ │ ├── timestream │ │ │ └── _index.md │ │ ├── warp10 │ │ │ └── _index.md │ │ ├── wavefront │ │ │ └── _index.md │ │ ├── websocket │ │ │ └── _index.md │ │ ├── yandex_cloud_monitoring │ │ │ └── _index.md │ │ └── zabbix │ │ │ └── _index.md │ │ ├── plugins.md │ │ ├── processor-plugins │ │ ├── _index.md │ │ ├── aws_ec2 │ │ │ └── _index.md │ │ ├── batch │ │ │ └── _index.md │ │ ├── clone │ │ │ └── _index.md │ │ ├── converter │ │ │ └── _index.md │ │ ├── cumulative_sum │ │ │ └── _index.md │ │ ├── date │ │ │ └── _index.md │ │ ├── dedup │ │ │ └── _index.md │ │ ├── defaults │ │ │ └── _index.md │ │ ├── enum │ │ │ └── _index.md │ │ ├── execd │ │ │ └── _index.md │ │ ├── filepath │ │ │ └── _index.md │ │ ├── filter │ │ │ └── _index.md │ │ ├── ifname │ │ │ └── _index.md │ │ ├── lookup │ │ │ └── _index.md │ │ ├── noise │ │ │ └── _index.md │ │ ├── override │ │ │ └── _index.md │ │ ├── parser │ │ │ └── _index.md │ │ ├── pivot │ │ │ └── _index.md │ │ ├── port_name │ │ │ └── _index.md │ │ ├── printer │ │ │ └── _index.md │ │ ├── regex │ │ │ └── _index.md │ │ ├── rename │ │ │ └── _index.md │ │ ├── reverse_dns │ │ │ └── _index.md │ │ ├── round │ │ │ └── _index.md │ │ ├── s2geo │ │ │ └── _index.md │ │ ├── scale │ │ │ └── _index.md │ │ ├── snmp_lookup │ │ │ └── _index.md │ │ ├── split │ │ │ └── _index.md │ │ ├── starlark │ │ │ └── _index.md │ │ ├── strings │ │ │ └── _index.md │ │ ├── tag_limit │ │ │ └── _index.md │ │ ├── template │ │ │ └── _index.md │ │ ├── timestamp │ │ │ └── _index.md │ │ ├── topk │ │ │ └── _index.md │ │ └── unpivot │ │ │ └── _index.md │ │ └── release-notes.md └── test-version-detector.md ├── cypress.config.js ├── cypress ├── e2e │ ├── content │ │ ├── api-reference.cy.js │ │ ├── ask-ai.cy.js │ │ ├── index.cy.js │ │ ├── influxdb-version-detector.cy.js │ │ ├── llm-format-selector.cy.js │ │ ├── markdown-content-validation.cy.js │ │ ├── page-context.cy.js │ │ └── stable-version-callout.cy.js │ ├── page-context.cy.js │ └── topnav.cy.js ├── plugins │ └── index.js └── support │ ├── commands.js │ ├── e2e.js │ ├── hugo-server.js │ ├── influxdb-version-detector-commands.js │ ├── map-files-to-urls.js │ ├── markdown-validator.js │ └── run-e2e-specs.js ├── data ├── clockface.yml ├── flux_influxdb_minor_versions.yml ├── flux_influxdb_versions.yml ├── flux_stdlib_frontmatter.yml ├── influxd_flags.yml ├── influxdb_urls.yml ├── list_filters.yml ├── notifications.yaml ├── products.yml ├── query_examples.yml └── telegraf_plugins.yml ├── deploy ├── README.md ├── ci-install-s3deploy.sh ├── docs-website.yml └── edge.js ├── docs.code-workspace ├── docs └── plans │ └── 2025-01-10-docs-cli-workflow-design.md ├── eslint.config.js ├── flux-build-scripts ├── inject-flux-stdlib-frontmatter.cjs └── update-flux-versions.cjs ├── helper-scripts ├── README.md ├── build-agent-instructions.js ├── cloud-serverless │ └── README.md ├── common │ ├── README.md │ ├── config │ │ ├── influxdb-v1.json │ │ ├── influxdb-v2.json │ │ └── influxdb3-core-enterprise.json │ ├── core-enterprise-config.json │ ├── generate-release-notes.js │ ├── generate-release-notes.md │ ├── lib │ │ └── docker-utils.sh │ ├── update-product-version.sh │ └── validate-tags.js ├── influxdb3-distributed │ ├── README.md │ └── clustered-release-artifacts.sh └── influxdb3-plugins │ ├── README.md │ ├── docs_mapping.yaml │ └── port_to_docs.js ├── hugo_stats.json ├── install-influxdb3-core.sh ├── install_influxdb3.sh ├── layouts ├── 404.html ├── _default │ ├── LLMS-TXT-README.md │ ├── _markup │ │ ├── render-blockquote.html │ │ └── render-codeblock.html │ ├── api.html │ ├── landing-influxdb.html │ ├── landing-influxdb.llmstxt.txt │ ├── list.html │ ├── page-list.json │ ├── section.html │ ├── single.html │ └── tags-landing.html ├── index.html ├── index.llmstxt.txt ├── partials │ ├── article.html │ ├── article │ │ ├── append.html │ │ ├── content.html │ │ ├── contributors.html │ │ ├── feedback.html │ │ ├── flux-contrib.html │ │ ├── flux-experimental.html │ │ ├── format-selector.html │ │ ├── page-meta.html │ │ ├── prepend.html │ │ ├── related.html │ │ ├── special-state.html │ │ ├── stable-version.html │ │ ├── supported-versions.html │ │ └── tags.html │ ├── footer.html │ ├── footer │ │ ├── feature-callout.html │ │ ├── fullscreen-code.html │ │ ├── javascript.html │ │ ├── modals.html │ │ ├── modals │ │ │ ├── flux-influxdb-versions.html │ │ │ ├── influxdb-gs-date-select.html │ │ │ ├── influxdb-url.html │ │ │ ├── influxdb-version-detector.html │ │ │ └── page-feedback.html │ │ ├── notifications.html │ │ ├── search.html │ │ ├── v3-wayfinding.html │ │ ├── widgets.html │ │ └── widgets │ │ │ ├── ask-ai-trigger.html │ │ │ └── custom-time-trigger.html │ ├── header.html │ ├── header │ │ ├── canonical.html │ │ ├── coveo-meta-data.html │ │ ├── google-analytics-body.html │ │ ├── google-analytics-head.html │ │ ├── google-fonts.html │ │ ├── javascript.html │ │ ├── marketing.html │ │ ├── search-attributes.html │ │ ├── stylesheets.html │ │ └── title.html │ ├── sidebar.html │ ├── sidebar │ │ ├── nested-menu.html │ │ └── sidebar-toggle.html │ ├── svgs │ │ ├── book.svg │ │ ├── hatch.svg │ │ ├── hive.svg │ │ ├── influxdbu.svg │ │ └── video-arrow.svg │ ├── topnav.html │ └── topnav │ │ └── product-selector.html ├── robots.txt ├── section │ └── landing-influxdb.llms.txt ├── shortcodes │ ├── admin-ui-access.html │ ├── api-endpoint.html │ ├── api │ │ ├── browser-token-warning.html │ │ ├── cloud │ │ │ └── curl │ │ │ │ └── auth.sh │ │ ├── iot-starter-intro │ │ ├── url-encode-note │ │ ├── v1-compat │ │ │ ├── basic-auth-clients.html │ │ │ ├── basic-auth-syntax.html │ │ │ └── cloud │ │ │ │ └── authentication.html │ │ └── v2dot0 │ │ │ ├── curl │ │ │ ├── auth.sh │ │ │ ├── write-compressed.sh │ │ │ └── write.sh │ │ │ └── nodejs │ │ │ └── learn-more.md │ ├── ask-ai-link.html │ ├── bucket-schema-requires.html │ ├── bucket-schema │ │ └── type.html │ ├── caps.html │ ├── caption.html │ ├── children.html │ ├── cite.html │ ├── cli │ │ ├── influx-creds-note.html │ │ ├── influxd-flags.html │ │ └── mapped.html │ ├── cloud-token-auth.html │ ├── cloud_regions.html │ ├── code-callout.html │ ├── code-placeholder-key.html │ ├── code-placeholders.html │ ├── code-tab-content.html │ ├── code-tabs-wrapper.html │ ├── code-tabs.html │ ├── columns.html │ ├── cta-link.html │ ├── current-version.html │ ├── datetime │ │ ├── current-date.html │ │ ├── current-time.html │ │ ├── current-timestamp.html │ │ └── enterprise-eol-date.html │ ├── diagram.html │ ├── enterprise-warning-authn-b4-authz.md │ ├── expand-wrapper.html │ ├── expand.html │ ├── filesystem-diagram.html │ ├── flex-content.html │ ├── flex.html │ ├── flux │ │ ├── data-model.html │ │ ├── group-key-demo.html │ │ ├── group-key.html │ │ ├── influxdb-versions.html │ │ ├── list-all-functions.html │ │ ├── sample-example-intro.md │ │ ├── sample.md │ │ └── table-ops.html │ ├── get-leaf-text.html │ ├── get-shared-text.html │ ├── hide-in.html │ ├── html-diagram │ │ ├── data-retention.html │ │ ├── influxql-windows.html │ │ ├── query-plan.html │ │ ├── quix-downsample-pipeline.html │ │ ├── scaling-strategy.html │ │ ├── shards.html │ │ └── sso-auth-flow.html │ ├── icon.html │ ├── img-hd.html │ ├── influxdb-version-detector.html │ ├── influxdb │ │ ├── custom-timestamps-span.html │ │ ├── custom-timestamps.html │ │ ├── enterprise-eol-date.html │ │ ├── host.html │ │ ├── install-old-versions.html │ │ ├── line-protocol.html │ │ ├── points-series-flux.html │ │ └── points-series-sql.html │ ├── influxdb3 │ │ ├── home-sample-link.html │ │ └── limit.html │ ├── influxdbu.html │ ├── influxql │ │ ├── table-meta.html │ │ └── v1-v3-data-model-note.md │ ├── keep-url.html │ ├── keybind.html │ ├── latest-cli.html │ ├── latest-influxctl.html │ ├── latest-patch.html │ ├── list-filters.html │ ├── nav-icon.html │ ├── note.html │ ├── page-nav.html │ ├── product-key.html │ ├── product-name.html │ ├── release-toc.html │ ├── req.html │ ├── resources │ │ ├── video-cards.html │ │ └── video-content.html │ ├── show-in.html │ ├── sql │ │ ├── sql-schema-intro.md │ │ └── window-frame-units..html │ ├── svg.html │ ├── tab-content.html │ ├── tabs-wrapper.html │ ├── tabs.html │ ├── telegraf │ │ ├── plugins.html │ │ └── verify.md │ ├── token-link.md │ ├── tooltip.html │ ├── truncate.html │ ├── ui │ │ └── timestamp-formats.html │ ├── warn.html │ └── youtube.html └── sitemap.xml ├── lefthook.yml ├── package.json ├── scripts ├── README.md ├── add-placeholders.js ├── build-llm-markdown.js ├── deploy-staging.sh ├── docs-cli.js ├── docs-create.js ├── docs-edit.js ├── html-to-markdown.js ├── lib │ ├── content-scaffolding.js │ ├── content-utils.js │ ├── file-operations.js │ ├── markdown-converter.cjs │ └── url-parser.js ├── rust-markdown-converter │ ├── .gitignore │ ├── Cargo.toml │ ├── build.rs │ ├── package.json │ ├── src │ │ └── lib.rs │ └── yarn.lock ├── schemas │ ├── scaffold-context.schema.json │ └── scaffold-proposal.schema.json ├── setup-local-bin.js └── templates │ ├── chatgpt-prompt.md │ └── copilot-prompt.md ├── shared └── text │ ├── api │ ├── cloud-dedicated │ │ ├── bearer-auth-v1-query.sh │ │ ├── bearer-auth-v1-write.sh │ │ ├── bearer-auth-v2-write.sh │ │ ├── token-auth-v1-query.sh │ │ ├── token-auth-v1-write.sh │ │ └── token-auth-v2-write.sh │ ├── cloud-serverless │ │ └── auth │ │ │ ├── token-create.sh │ │ │ ├── tokens-create-with-user.sh │ │ │ ├── tokens-view-filter.sh │ │ │ └── tokens-view.sh │ ├── v1-compat │ │ └── auth │ │ │ ├── cloud │ │ │ ├── basic-auth.js │ │ │ ├── basic-auth.sh │ │ │ ├── querystring-auth.js │ │ │ └── querystring-auth.sh │ │ │ └── oss │ │ │ ├── basic-auth.js │ │ │ ├── basic-auth.sh │ │ │ ├── querystring-auth.js │ │ │ ├── querystring-auth.sh │ │ │ ├── token-auth.js │ │ │ └── token-auth.sh │ └── v2.0 │ │ ├── api-invokable-scripts │ │ ├── create-flux-script.sh │ │ ├── find.sh │ │ ├── invoke-post.sh │ │ ├── invoke_with_params.sh │ │ ├── list.sh │ │ └── update-flux-script.sh │ │ ├── auth │ │ └── oss │ │ │ ├── token-auth.js │ │ │ ├── token-auth.sh │ │ │ ├── token-create.sh │ │ │ ├── tokens-create-with-user.sh │ │ │ ├── tokens-view-filter.sh │ │ │ └── tokens-view.sh │ │ ├── buckets │ │ └── oss │ │ │ ├── create.js │ │ │ └── create.sh │ │ ├── client-library-examples │ │ └── nodejs │ │ │ └── server │ │ │ └── devices │ │ │ ├── _devices.js │ │ │ └── create.js │ │ ├── query │ │ └── query.mjs │ │ ├── write-compressed.sh │ │ └── write │ │ ├── write-compress.sh │ │ ├── write.mjs │ │ └── write.sh │ ├── bucket-schema │ ├── bucket-schema-columns.sh │ ├── bucket-schema-type.sh │ ├── sensor.ndjson │ ├── usage-cpu.json │ └── usage-resources.csv │ └── flux │ └── noaa-ndbc-sample-task.md ├── static ├── downloads │ ├── InfluxDB.pqx │ ├── air-sensor-data.rb │ ├── air-sensors-dashboard.json │ ├── apache-arrow-flight-sql-odbc-1.0.0-win64.msi │ ├── bay-area-weather.lp │ ├── bitcoin.lp │ ├── clustered-release-artifacts │ │ ├── 20230922-650371 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20231004-666907 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20231024-711448 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20231115-746129 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20231117-750011 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20231213-791734 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240111-824437 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240214-863513 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240227-883344 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240326-922145 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240418-955990 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240430-976585 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240605-1035562 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240717-1117630 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20240819-1176644 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20241024-1354148 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20241217-1494922 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250212-1570743 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250508-1719206 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250613-1754010 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250618-1758428 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250707-1777929 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250721-1796368 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250814-1819052 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ ├── 20250925-1878107 │ │ │ ├── app-instance-schema.json │ │ │ └── example-customer.yml │ │ └── InfluxDB Clustered README EULA July 2024.txt │ ├── eu-wind-data.lp │ ├── home-sensor-data.csv │ ├── home-sensor-data.json │ ├── home-sensor-data.lp │ ├── influxdb-enterprise-monitor-dashboard.json │ ├── influxdb-k8-minikube.yaml │ ├── influxdb-oss-monitor-dashboard.json │ ├── kapacitor-monitor-dashboard.json │ ├── pages.zip │ ├── pages.zip.md5 │ ├── pages.zip.sha256 │ ├── random-numbers.lp │ ├── sample-sensor-info.csv │ └── tik-docker-tutorial.tar.gz ├── fonts │ ├── alert-icons.eot │ ├── alert-icons.svg │ ├── alert-icons.ttf │ ├── alert-icons.woff │ ├── icomoon-v2.eot │ ├── icomoon-v2.svg │ ├── icomoon-v2.ttf │ ├── icomoon-v2.woff │ ├── icomoon-v3.eot │ ├── icomoon-v3.svg │ ├── icomoon-v3.ttf │ ├── icomoon-v3.woff │ ├── icomoon-v3.woff2 │ ├── icomoon-v4.eot │ ├── icomoon-v4.ttf │ ├── icomoon-v4.woff │ ├── icomoon-v4.woff2 │ ├── iconmoon-v4.svg │ ├── proxima-nova-bold.otf │ ├── proxima-nova-medium.otf │ ├── proxima-nova-semibold.otf │ └── proxima-nova.otf ├── img │ ├── bg-texture-new.png │ ├── chronograf │ │ ├── 1-6-admin-usermanagement-oss.png │ │ ├── 1-6-alerts-conditions.png │ │ ├── 1-6-annotations-example.png │ │ ├── 1-6-clone-cell-cell-copy.png │ │ ├── 1-6-clone-cell-click-button.png │ │ ├── 1-6-clone-dashboard-clone.png │ │ ├── 1-6-clone-dashboard.png │ │ ├── 1-6-cluster-de.png │ │ ├── 1-6-cluster-diagram.png │ │ ├── 1-6-cluster-hostlist.png │ │ ├── 1-6-cluster-predash.gif │ │ ├── 1-6-cluster-welcome.png │ │ ├── 1-6-connection-kapacitor.png │ │ ├── 1-6-connection-landing-page.png │ │ ├── 1-6-custom-meta-query-filtering.gif │ │ ├── 1-6-dashboard-export.png │ │ ├── 1-6-dashboard-import-reconcile.png │ │ ├── 1-6-dashboard-import.gif │ │ ├── 1-6-faq-cluster-connection.png │ │ ├── 1-6-g-dashboard-builder.png │ │ ├── 1-6-g-dashboard-possibilities.png │ │ ├── 1-6-g-dashboard-visualization.png │ │ ├── 1-6-intro-gs-diagram.png │ │ ├── 1-6-logs-log-viewer-config-options.png │ │ ├── 1-6-logs-nav-log-viewer.png │ │ ├── 1-6-logs-severity-fmt-dot-text.png │ │ ├── 1-6-logs-severity-fmt-dot.png │ │ ├── 1-6-logs-severity-fmt-text.png │ │ ├── 1-6-presentation-mode.png │ │ ├── 1-6-template-vars-custom-meta-query.png │ │ ├── 1-6-template-vars-date-picker.png │ │ ├── 1-6-template-vars-fieldkey.png │ │ ├── 1-6-template-vars-interval-dropdown.png │ │ ├── 1-6-template-vars-map-dropdown.png │ │ ├── 1-6-template-vars-measurement-var.png │ │ ├── 1-6-template-vars-time-dropdown.png │ │ ├── 1-6-template-vars-use.gif │ │ ├── 1-6-viz-bar-graph-controls.png │ │ ├── 1-6-viz-bar-graph-example.png │ │ ├── 1-6-viz-bar-graph-selector.png │ │ ├── 1-6-viz-gauge-controls.png │ │ ├── 1-6-viz-gauge-example.png │ │ ├── 1-6-viz-gauge-selector.png │ │ ├── 1-6-viz-line-graph-controls.png │ │ ├── 1-6-viz-line-graph-example.png │ │ ├── 1-6-viz-line-graph-selector.png │ │ ├── 1-6-viz-line-graph-single-stat-controls.png │ │ ├── 1-6-viz-line-graph-single-stat-example.png │ │ ├── 1-6-viz-line-graph-single-stat-selector.png │ │ ├── 1-6-viz-single-stat-selector.png │ │ ├── 1-6-viz-stacked-graph-controls.png │ │ ├── 1-6-viz-stacked-graph-example.png │ │ ├── 1-6-viz-stacked-graph-selector.png │ │ ├── 1-6-viz-step-plot-graph-controls.png │ │ ├── 1-6-viz-step-plot-graph-example.png │ │ ├── 1-6-viz-step-plot-graph-selector.png │ │ ├── 1-6-viz-table-controls.png │ │ ├── 1-6-viz-table-example.png │ │ ├── 1-6-viz-table-selector.png │ │ ├── 1-6-viz-types-selector.png │ │ ├── 1-7-data-explorer-icon.png │ │ ├── 1-7-kapacitor-connection-config.png │ │ ├── 1-7-log-viewer-dashboard.gif │ │ ├── 1-7-log-viewer-overview.png │ │ ├── 1-7-log-viewer-search-filter.gif │ │ ├── 1-7-log-viewer-specific-time.gif │ │ ├── 1-7-protoboard-kubernetes.png │ │ ├── 1-7-protoboard-mysql.png │ │ ├── 1-7-protoboard-select.png │ │ ├── 1-7-protoboard-system.png │ │ ├── 1-7-protoboard-vsphere.png │ │ ├── 1-7-viz-note-controls.png │ │ ├── 1-7-viz-note-example.png │ │ ├── 1-7-viz-note-selector.png │ │ ├── 1-8-ha-architecture.svg │ │ ├── 1-8-influxdb-v1-connection-config.png │ │ ├── 1-8-influxdb-v2-connection-config.png │ │ ├── 1-9-dashboard-cell-add-data.png │ │ ├── 1-9-template-var-title.png │ │ ├── 1-9-write-data.png │ │ ├── 1-9-write-db-rp.png │ │ └── 1-9-write-precision.png │ ├── cloudformation1.png │ ├── cloudformation2.png │ ├── enterprise │ │ ├── 1-6-flapping-dashboard.gif │ │ ├── 1-6-gcp-intro-1.png │ │ ├── 1-6-gcp-intro-2.png │ │ ├── 1-6-gcp-intro-3.png │ │ ├── 1-6-gcp-intro-4.png │ │ └── 1-8-network-diagram.png │ ├── favicon.png │ ├── flux │ │ ├── 0-x-prometheus-counter-aggregate-rate-output.png │ │ ├── 0-x-prometheus-counter-derivative-output.png │ │ ├── 0-x-prometheus-counter-difference-output.png │ │ ├── 0-x-prometheus-counter-increase-input.png │ │ ├── 0-x-prometheus-counter-increase-output.png │ │ ├── 0-x-prometheus-counter-normalized-input.png │ │ ├── 0-x-prometheus-gauge-aggregate-rate-output.png │ │ ├── 0-x-prometheus-gauge-derivative-output.png │ │ ├── 0-x-prometheus-gauge-input.png │ │ ├── 0-x-prometheus-histogram-multiple-quantiles.png │ │ ├── 0-x-prometheus-histogram-quantile.png │ │ ├── 0-x-prometheus-summary-quantiles.png │ │ ├── 0-x-water-process-dark.svg │ │ ├── 0-x-water-process-light.svg │ │ ├── grouping-by-cpu-time.png │ │ ├── grouping-by-time.png │ │ ├── grouping-data-set.png │ │ ├── simple-unwindowed-data.png │ │ ├── simple-windowed-aggregate-data.png │ │ ├── simple-windowed-data.png │ │ ├── windowed-aggregates-ungrouped.png │ │ ├── windowed-aggregates.png │ │ └── windowed-data.png │ ├── grafana │ │ ├── enterprise-influxdb-v1-grafana-flux.png │ │ ├── enterprise-influxdb-v1-grafana-influxql.png │ │ ├── grafana-sql-insecure-connection.png │ │ ├── influxdb-cloud-grafana-flux.png │ │ ├── influxdb-cloud-grafana-influxql.png │ │ ├── influxdb-v1-grafana-flux.png │ │ ├── influxdb-v1-grafana-influxql.png │ │ ├── influxdb-v2-grafana-influxql-flux.png │ │ ├── influxdb-v2-grafana-influxql.png │ │ ├── influxdb3-cloud-dedicated-grafana-influxql.png │ │ ├── influxdb3-cloud-dedicated-grafana-sql.png │ │ ├── influxdb3-cloud-serverless-grafana-influxql.png │ │ ├── influxdb3-cloud-serverless-grafana-sql.png │ │ ├── influxdb3-clustered-grafana-influxql.png │ │ ├── influxdb3-clustered-grafana-sql.png │ │ ├── influxdb3-core-grafana-influxql.png │ │ ├── influxdb3-core-grafana-sql.png │ │ ├── influxdb3-enterprise-grafana-influxql.png │ │ └── influxdb3-enterprise-grafana-sql.png │ ├── influx-logo-cubo-dark.png │ ├── influx-logo-cubo-white.png │ ├── influxdb │ │ ├── 1-3-hw-first-step-1-2.png │ │ ├── 1-3-hw-raw-data-1-2.png │ │ ├── 1-3-hw-second-step-1-2.png │ │ ├── 1-3-hw-third-step-1-2.png │ │ ├── 1-5-calc-percentage-apple-variety.png │ │ ├── 1-5-calc-percentage-hourly-apple-variety.png │ │ ├── 1-7-flux-dashboard-add-filter.png │ │ ├── 1-7-flux-dashboard-cell.png │ │ ├── 1-7-flux-dashboard-view-raw.png │ │ ├── 1-8-tools-vsflux-explore-schema.png │ │ ├── 2-0-controls-dark-light-mode.png │ │ ├── 2-0-controls-time-range.png │ │ ├── 2-0-controls-timezone.png │ │ ├── 2-0-data-explorer.png │ │ ├── 2-0-sql-dashboard-variable.png │ │ ├── 2-0-tools-chronograf-v2-auth.png │ │ ├── 2-0-tools-vsflux-errors-warnings.png │ │ ├── 2-0-tools-vsflux-explore-schema.png │ │ ├── 2-0-variables-data-explorer-view.png │ │ ├── 2-0-visualizations-Band-example.png │ │ ├── 2-0-visualizations-dropdown.png │ │ ├── 2-0-visualizations-gauge-example-8.png │ │ ├── 2-0-visualizations-gauge-example.png │ │ ├── 2-0-visualizations-gauge-pressure-8.png │ │ ├── 2-0-visualizations-graph-linear-static.png │ │ ├── 2-0-visualizations-graph-single-stat-mem-8.png │ │ ├── 2-0-visualizations-graph-smooth-hover.png │ │ ├── 2-0-visualizations-heatmap-correlation.png │ │ ├── 2-0-visualizations-heatmap-example.png │ │ ├── 2-0-visualizations-heatmap-vs-scatter.png │ │ ├── 2-0-visualizations-histogram-errors.png │ │ ├── 2-0-visualizations-histogram-example.png │ │ ├── 2-0-visualizations-line-graph-example-8.png │ │ ├── 2-0-visualizations-line-graph-example.png │ │ ├── 2-0-visualizations-line-graph-single-stat-example-8.png │ │ ├── 2-0-visualizations-line-graph-single-stat-example.png │ │ ├── 2-0-visualizations-line-graph-step-example-8.png │ │ ├── 2-0-visualizations-map-circle-example.png │ │ ├── 2-0-visualizations-map-heat-example.png │ │ ├── 2-0-visualizations-map-point-example.png │ │ ├── 2-0-visualizations-mosaic-example.png │ │ ├── 2-0-visualizations-scatter-correlation.png │ │ ├── 2-0-visualizations-scatter-example.png │ │ ├── 2-0-visualizations-single-stat-example-8.png │ │ ├── 2-0-visualizations-single-stat-example.png │ │ ├── 2-0-visualizations-table-example.png │ │ ├── 2-0-visualizations-table-human-readable.png │ │ ├── 2-1-migration-dashboard.png │ │ ├── 2-1-tools-vsflux-add-connection.png │ │ ├── 2-1-tools-vsflux-influxdb-pane.png │ │ ├── 2-4-get-started-visualize-query-builder.png │ │ ├── 2-4-get-started-visualize-time-range.png │ │ ├── 2-4-get-started-visualize-variable-select.png │ │ ├── 2-4-influxql-holtwinters-1.png │ │ ├── 2-4-influxql-holtwinters-2.png │ │ ├── 2-4-influxql-holtwinters-3.png │ │ ├── 2-4-influxql-shell-table-format.png │ │ ├── 3-0-query-plan-tree.png │ │ ├── OSS-v1-grafana-product-dropdown-flux.png │ │ ├── OSS-v1-grafana-product-dropdown-influxql.png │ │ ├── cloud-controls-view-raw-data.png │ │ ├── cloud-internals-auth.png │ │ ├── cloud-internals-cluster.png │ │ ├── cloudformation1.png │ │ ├── cloudformation2.png │ │ ├── influxdb-3-enterprise-dedicated-compactor.png │ │ ├── influxdb-3-enterprise-high-availability.png │ │ ├── influxdb-3-enterprise-workload-isolation.png │ │ └── user-icon.png │ ├── influxdb3 │ │ ├── cloud-dedicated-admin-observability-dashboard.png │ │ ├── cloud-dedicated-admin-ui-account-switcher.png │ │ ├── cloud-dedicated-admin-ui-all-accounts.png │ │ ├── cloud-dedicated-admin-ui-all-clusters.png │ │ ├── cloud-dedicated-admin-ui-create-custom-partitioned-table.png │ │ ├── cloud-dedicated-admin-ui-create-database-token.png │ │ ├── cloud-dedicated-admin-ui-create-database.png │ │ ├── cloud-dedicated-admin-ui-create-management-token.png │ │ ├── cloud-dedicated-admin-ui-create-table-custom-partitioning.png │ │ ├── cloud-dedicated-admin-ui-create-table-default.png │ │ ├── cloud-dedicated-admin-ui-database-token-options-menu.png │ │ ├── cloud-dedicated-admin-ui-database-tokens.png │ │ ├── cloud-dedicated-admin-ui-databases.png │ │ ├── cloud-dedicated-admin-ui-delete-database.png │ │ ├── cloud-dedicated-admin-ui-edit-database-token.png │ │ ├── cloud-dedicated-admin-ui-help.png │ │ ├── cloud-dedicated-admin-ui-list-databases.png │ │ ├── cloud-dedicated-admin-ui-login.png │ │ ├── cloud-dedicated-admin-ui-management-tokens.png │ │ ├── cloud-dedicated-admin-ui-overview.png │ │ ├── cloud-dedicated-admin-ui-revoke-database-token.png │ │ ├── cloud-dedicated-admin-ui-tables.png │ │ ├── cloud-dedicated-admin-ui-users.png │ │ ├── cloud-serverless-migration-dashboard.png │ │ ├── cloud-serverless-superset-connect.png │ │ ├── cloud-serverless-superset-dashboard.png │ │ ├── cloud-serverless-superset-schema.png │ │ └── influxdb3-core-enterprise-ingest-path-flow.png │ ├── kapacitor │ │ ├── 1-4-chrono-add-kapacitor-connection01.png │ │ ├── 1-4-chrono-add-kapacitor-connection02.png │ │ ├── 1-4-chrono-add-kapacitor-connection03.png │ │ ├── 1-4-chrono-add-kapacitor-connection04.png │ │ ├── 1-4-chrono-configuration01.png │ │ ├── 1-4-chrono-configuration02.png │ │ ├── 1-4-chrono-configuration03.png │ │ ├── 1-4-chrono-configuration04.png │ │ ├── 1-4-chrono-configuration05.png │ │ ├── 1-4-chrono-create-alert01.png │ │ ├── 1-4-chrono-create-alert02.png │ │ ├── 1-4-chrono-create-alert03.png │ │ ├── 1-4-chrono-create-alert04.png │ │ ├── 1-4-chrono-create-alert05.png │ │ ├── 1-4-chrono-create-alert06.png │ │ ├── 1-4-chrono-create-alert07.png │ │ ├── 1-4-chrono-create-alert08.png │ │ ├── 1-4-chrono-delete-rule.png │ │ ├── 1-4-chrono-editable-task-in-chrono01.png │ │ ├── 1-4-chrono-editable-task-in-chrono02.png │ │ ├── 1-4-chrono-enable-disable-alerts01.png │ │ ├── 1-4-chrono-update-endpoints01.png │ │ ├── 1-4-chrono-update-endpoints02.png │ │ ├── 1-4-chrono-update-endpoints03.png │ │ ├── 1-4-chrono-update-endpoints04.png │ │ ├── 1-4-chrono-use-alerts-db01.png │ │ ├── 1-4-chrono-use-alerts-db02.png │ │ ├── 1-4-chrono-view-alert-history01.png │ │ ├── 1-4-chrono-view-alert-history02.png │ │ ├── 1-4-hipchat-token.png │ │ ├── 1-4-pull-metrics.png │ │ └── 1-5-comparing-two-measurements.png │ ├── platform │ │ ├── troubleshooting-disk-usage.png │ │ └── troubleshooting-oom-loop.png │ ├── resources │ │ └── late-arriving-data.png │ └── telegraf │ │ └── new-citibike-query.png └── svgs │ ├── apache-kafka-icon.svg │ ├── discord.svg │ ├── geo-non-strict.svg │ ├── geo-strict.svg │ ├── home-bg-circle-left.svg │ ├── home-bg-circle-right.svg │ ├── influxdb-logo-blue.svg │ ├── influxdb-logo-white.svg │ ├── influxdb3-ga-background.svg │ ├── influxdbu-full-white.svg │ ├── join-diagram.svg │ ├── join-vs-union.svg │ ├── quix-connector-plug.svg │ ├── quix-logo-white.svg │ ├── quix-python-heart.svg │ ├── reddit.svg │ ├── slack.svg │ ├── timed-moving-avg.svg │ └── v3-storage-architecture.svg ├── telegraf-build ├── README.md ├── scripts │ └── Dockerfile └── templates │ ├── aggregator_index.tmpl │ ├── aggregator_plugin.tmpl │ ├── input_index.tmpl │ ├── input_plugin.tmpl │ ├── output_index.tmpl │ ├── output_plugin.tmpl │ ├── plugin_list_entry.tmpl │ ├── processor_index.tmpl │ └── processor_plugin.tmpl ├── test ├── .dockerignore ├── .gitignore ├── Dockerfile.test-oss.centos ├── Dockerfile.test-oss.ubuntu ├── env.test.example ├── influxdb3 │ ├── auth.test.sh │ ├── database.test.sh │ └── engine.test.sh ├── pytest │ ├── conftest.py │ ├── pytest.ini │ └── requirements.txt └── scripts │ ├── get-container-info.sh │ ├── monitor-container-urls.sh │ ├── monitor-tests.sh │ ├── parse_yaml.sh │ ├── prepare-content.sh │ └── run-tests.sh ├── tsconfig.json └── yarn.lock /.ci/Dockerfile.remark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/Dockerfile.remark -------------------------------------------------------------------------------- /.ci/link-checker/default.lycherc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/link-checker/default.lycherc.toml -------------------------------------------------------------------------------- /.ci/link-checker/production.lycherc.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/link-checker/production.lycherc.toml -------------------------------------------------------------------------------- /.ci/remark-lint/.remark-lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/remark-lint/.remark-lint.js -------------------------------------------------------------------------------- /.ci/remark-lint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/remark-lint/package.json -------------------------------------------------------------------------------- /.ci/remark-lint/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/remark-lint/yarn.lock -------------------------------------------------------------------------------- /.ci/vale/styles/Clustered/Branding.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Clustered/Branding.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Clustered/v3Schema.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Clustered/v3Schema.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/AMPM.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/AMPM.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Acronyms.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Acronyms.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Colons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Colons.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Contractions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Contractions.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/DateFormat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/DateFormat.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Ellipses.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Ellipses.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/EmDash.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/EmDash.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Exclamation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Exclamation.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/FirstPerson.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/FirstPerson.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Gender.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Gender.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/GenderBias.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/GenderBias.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Headings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Headings.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Latin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Latin.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/LyHyphens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/LyHyphens.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/OptionalPlurals.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/OptionalPlurals.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Ordinal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Ordinal.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/OxfordComma.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/OxfordComma.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Parens.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Parens.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Passive.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Periods.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Periods.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Quotes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Quotes.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Ranges.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Ranges.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Semicolons.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Semicolons.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Slang.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Slang.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Spacing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Spacing.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Spelling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Spelling.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Units.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Units.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/We.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/We.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/Will.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/Will.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/WordList.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/WordList.yml -------------------------------------------------------------------------------- /.ci/vale/styles/Google/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/Google/meta.json -------------------------------------------------------------------------------- /.ci/vale/styles/Google/vocab.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ci/vale/styles/config/vocabularies/InfluxDataDocs/reject.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/Cliches.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/Cliches.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/E-Prime.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/E-Prime.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/Illusions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/Illusions.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/Passive.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/Passive.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/README.md -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/So.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/So.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/ThereIs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/ThereIs.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/TooWordy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/TooWordy.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/Weasel.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/Weasel.yml -------------------------------------------------------------------------------- /.ci/vale/styles/write-good/meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/styles/write-good/meta.json -------------------------------------------------------------------------------- /.ci/vale/vale.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.ci/vale/vale.sh -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.claude/agents/ci-automation-engineer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/ci-automation-engineer.md -------------------------------------------------------------------------------- /.claude/agents/hugo-ui-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/hugo-ui-dev.md -------------------------------------------------------------------------------- /.claude/agents/influxdb1-tech-writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/influxdb1-tech-writer.md -------------------------------------------------------------------------------- /.claude/agents/influxdb3-tech-writer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/influxdb3-tech-writer.md -------------------------------------------------------------------------------- /.claude/agents/ts-component-dev.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/ts-component-dev.md -------------------------------------------------------------------------------- /.claude/agents/ui-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/agents/ui-testing.md -------------------------------------------------------------------------------- /.claude/commands/analyze-api-source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/commands/analyze-api-source.md -------------------------------------------------------------------------------- /.claude/commands/enhance-release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/commands/enhance-release-notes.md -------------------------------------------------------------------------------- /.claude/commands/fix-github-issue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/commands/fix-github-issue.md -------------------------------------------------------------------------------- /.claude/commands/scaffold-content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/commands/scaffold-content.md -------------------------------------------------------------------------------- /.claude/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/settings.json -------------------------------------------------------------------------------- /.claude/skills/docs-cli-workflow/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/skills/docs-cli-workflow/SKILL.md -------------------------------------------------------------------------------- /.claude/skills/hugo-template-dev/SKILL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.claude/skills/hugo-template-dev/SKILL.md -------------------------------------------------------------------------------- /.context/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.context/README.md -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.frontmatter-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.frontmatter-schema.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/new-feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/ISSUE_TEMPLATE/new-feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/proposal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/ISSUE_TEMPLATE/proposal.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/actions/setup-docs-env/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/actions/setup-docs-env/action.yml -------------------------------------------------------------------------------- /.github/agents/typescript-hugo-agent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/agents/typescript-hugo-agent.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/scripts/cache-manager.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/cache-manager.cjs -------------------------------------------------------------------------------- /.github/scripts/cache-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/cache-manager.js -------------------------------------------------------------------------------- /.github/scripts/comment-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/comment-generator.js -------------------------------------------------------------------------------- /.github/scripts/incremental-validator.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/incremental-validator.cjs -------------------------------------------------------------------------------- /.github/scripts/incremental-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/incremental-validator.js -------------------------------------------------------------------------------- /.github/scripts/link-extractor.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/link-extractor.cjs -------------------------------------------------------------------------------- /.github/scripts/link-extractor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/link-extractor.js -------------------------------------------------------------------------------- /.github/scripts/matrix-generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/matrix-generator.js -------------------------------------------------------------------------------- /.github/scripts/utils/url-transformer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/scripts/utils/url-transformer.js -------------------------------------------------------------------------------- /.github/workflows/audit-documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/audit-documentation.yml -------------------------------------------------------------------------------- /.github/workflows/influxdb3-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/influxdb3-release.yml -------------------------------------------------------------------------------- /.github/workflows/pr-link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/pr-link-check.yml -------------------------------------------------------------------------------- /.github/workflows/prepare-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/prepare-release.yml -------------------------------------------------------------------------------- /.github/workflows/sync-plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/sync-plugins.yml -------------------------------------------------------------------------------- /.github/workflows/trigger-on-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.github/workflows/trigger-on-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/_/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/build -------------------------------------------------------------------------------- /.husky/_/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/pre-commit -------------------------------------------------------------------------------- /.husky/_/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/pre-push -------------------------------------------------------------------------------- /.husky/_/pre-push.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/pre-push.old -------------------------------------------------------------------------------- /.husky/_/prepare-commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/prepare-commit-msg -------------------------------------------------------------------------------- /.husky/_/scripts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/scripts -------------------------------------------------------------------------------- /.husky/_/serve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.husky/_/serve -------------------------------------------------------------------------------- /.mcp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.mcp.json -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v23.10.0 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.remarkrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.remarkrc.yaml -------------------------------------------------------------------------------- /.s3deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.s3deploy.yml -------------------------------------------------------------------------------- /.vale-instructions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.vale-instructions.ini -------------------------------------------------------------------------------- /.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.vale.ini -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/AGENTS.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /DOCS-CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/DOCS-CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCS-DEPLOYING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/DOCS-DEPLOYING.md -------------------------------------------------------------------------------- /DOCS-FRONTMATTER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/DOCS-FRONTMATTER.md -------------------------------------------------------------------------------- /DOCS-SHORTCODES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/DOCS-SHORTCODES.md -------------------------------------------------------------------------------- /DOCS-TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/DOCS-TESTING.md -------------------------------------------------------------------------------- /Dockerfile.pytest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/Dockerfile.pytest -------------------------------------------------------------------------------- /Dockerfile.tests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/Dockerfile.tests -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/LICENSE -------------------------------------------------------------------------------- /PLATFORM_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/PLATFORM_REFERENCE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/README.md -------------------------------------------------------------------------------- /api-docs/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/.config.yml -------------------------------------------------------------------------------- /api-docs/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/CLAUDE.md -------------------------------------------------------------------------------- /api-docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/README.md -------------------------------------------------------------------------------- /api-docs/generate-api-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/generate-api-docs.sh -------------------------------------------------------------------------------- /api-docs/getswagger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/getswagger.sh -------------------------------------------------------------------------------- /api-docs/influxdb/cloud/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb/cloud/.config.yml -------------------------------------------------------------------------------- /api-docs/influxdb/cloud/v2/ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb/cloud/v2/ref.yml -------------------------------------------------------------------------------- /api-docs/influxdb/v2/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb/v2/.config.yml -------------------------------------------------------------------------------- /api-docs/influxdb/v2/v2/content/info.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb/v2/v2/content/info.yml -------------------------------------------------------------------------------- /api-docs/influxdb/v2/v2/ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb/v2/v2/ref.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/clustered/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/clustered/.config.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/clustered/v2/ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/clustered/v2/ref.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/core/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/core/.config.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/core/v3/ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/core/v3/ref.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/enterprise/.config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/enterprise/.config.yml -------------------------------------------------------------------------------- /api-docs/influxdb3/enterprise/v3/ref.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/influxdb3/enterprise/v3/ref.yml -------------------------------------------------------------------------------- /api-docs/openapi/plugins/decorators/replace-urls.cjs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /api-docs/openapi/plugins/docs-content.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/openapi/plugins/docs-content.cjs -------------------------------------------------------------------------------- /api-docs/openapi/plugins/docs-plugin.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/openapi/plugins/docs-plugin.cjs -------------------------------------------------------------------------------- /api-docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/package.json -------------------------------------------------------------------------------- /api-docs/template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/template.hbs -------------------------------------------------------------------------------- /api-docs/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/api-docs/yarn.lock -------------------------------------------------------------------------------- /assets/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/CLAUDE.md -------------------------------------------------------------------------------- /assets/js/api-libs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/api-libs.js -------------------------------------------------------------------------------- /assets/js/ask-ai-trigger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/ask-ai-trigger.js -------------------------------------------------------------------------------- /assets/js/ask-ai.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/ask-ai.ts -------------------------------------------------------------------------------- /assets/js/code-controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/code-controls.js -------------------------------------------------------------------------------- /assets/js/code-placeholders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/code-placeholders.js -------------------------------------------------------------------------------- /assets/js/components/diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/components/diagram.js -------------------------------------------------------------------------------- /assets/js/components/doc-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/components/doc-search.js -------------------------------------------------------------------------------- /assets/js/components/format-selector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/components/format-selector.ts -------------------------------------------------------------------------------- /assets/js/components/sidebar-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/components/sidebar-search.js -------------------------------------------------------------------------------- /assets/js/content-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/content-interactions.js -------------------------------------------------------------------------------- /assets/js/custom-timestamps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/custom-timestamps.js -------------------------------------------------------------------------------- /assets/js/datetime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/datetime.js -------------------------------------------------------------------------------- /assets/js/feature-callouts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/feature-callouts.js -------------------------------------------------------------------------------- /assets/js/flux-group-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/flux-group-keys.js -------------------------------------------------------------------------------- /assets/js/flux-influxdb-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/flux-influxdb-versions.js -------------------------------------------------------------------------------- /assets/js/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/helpers.js -------------------------------------------------------------------------------- /assets/js/influxdb-url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/influxdb-url.js -------------------------------------------------------------------------------- /assets/js/influxdb-version-detector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/influxdb-version-detector.ts -------------------------------------------------------------------------------- /assets/js/jquery-3.5.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/jquery-3.5.0.min.js -------------------------------------------------------------------------------- /assets/js/keybindings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/keybindings.js -------------------------------------------------------------------------------- /assets/js/list-filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/list-filters.js -------------------------------------------------------------------------------- /assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/main.js -------------------------------------------------------------------------------- /assets/js/modals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/modals.js -------------------------------------------------------------------------------- /assets/js/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/notifications.js -------------------------------------------------------------------------------- /assets/js/page-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/page-context.ts -------------------------------------------------------------------------------- /assets/js/page-feedback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/page-feedback.js -------------------------------------------------------------------------------- /assets/js/release-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/release-toc.js -------------------------------------------------------------------------------- /assets/js/search-button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/search-button.js -------------------------------------------------------------------------------- /assets/js/services/influxdata-products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/services/influxdata-products.js -------------------------------------------------------------------------------- /assets/js/services/influxdb-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/services/influxdb-urls.js -------------------------------------------------------------------------------- /assets/js/services/local-storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/services/local-storage.js -------------------------------------------------------------------------------- /assets/js/sidebar-toggle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/sidebar-toggle.js -------------------------------------------------------------------------------- /assets/js/tabbed-content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/tabbed-content.js -------------------------------------------------------------------------------- /assets/js/theme-switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/theme-switch.js -------------------------------------------------------------------------------- /assets/js/theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/theme.js -------------------------------------------------------------------------------- /assets/js/utils/debug-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/utils/debug-helpers.js -------------------------------------------------------------------------------- /assets/js/utils/node-shim.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/utils/node-shim.ts -------------------------------------------------------------------------------- /assets/js/utils/product-mappings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/utils/product-mappings.ts -------------------------------------------------------------------------------- /assets/js/utils/search-interactions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/utils/search-interactions.js -------------------------------------------------------------------------------- /assets/js/utils/user-agent-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/utils/user-agent-platform.js -------------------------------------------------------------------------------- /assets/js/v3-wayfinding.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/v3-wayfinding.js -------------------------------------------------------------------------------- /assets/js/version-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/js/version-selector.js -------------------------------------------------------------------------------- /assets/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/jsconfig.json -------------------------------------------------------------------------------- /assets/styles/layouts/_api-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_api-overrides.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_article.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_article.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_code-controls.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_code-controls.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_datetime.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_datetime.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_error-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_error-page.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_footer-widgets.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_footer-widgets.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_global.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_homepage.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_inline-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_inline-icons.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_landing.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_landing.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_modals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_modals.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_notifications.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_notifications.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_sidebar-toggle.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_sidebar-toggle.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_sidebar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_sidebar.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_top-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_top-nav.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_v1-overrides.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_v1-overrides.scss -------------------------------------------------------------------------------- /assets/styles/layouts/_v3-wayfinding.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/_v3-wayfinding.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_badges.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_badges.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_blocks.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_blocks.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_code.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_code.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_expand.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_expand.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_flex.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_flex.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_flux.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_flux.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_lists.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_lists.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_svgs.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_svgs.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_tables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_tables.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_tags.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_tags.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_title.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_title.scss -------------------------------------------------------------------------------- /assets/styles/layouts/article/_video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/layouts/article/_video.scss -------------------------------------------------------------------------------- /assets/styles/sidebar-closed.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/sidebar-closed.scss -------------------------------------------------------------------------------- /assets/styles/sidebar-open.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/sidebar-open.scss -------------------------------------------------------------------------------- /assets/styles/styles-api.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/styles-api.scss -------------------------------------------------------------------------------- /assets/styles/styles-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/styles-dark.scss -------------------------------------------------------------------------------- /assets/styles/styles-default.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/styles-default.scss -------------------------------------------------------------------------------- /assets/styles/themes/_theme-dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/themes/_theme-dark.scss -------------------------------------------------------------------------------- /assets/styles/themes/_theme-light.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/themes/_theme-light.scss -------------------------------------------------------------------------------- /assets/styles/tools/_color-palette.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/_color-palette.scss -------------------------------------------------------------------------------- /assets/styles/tools/_datepicker.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/_datepicker.scss -------------------------------------------------------------------------------- /assets/styles/tools/_fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/_fonts.scss -------------------------------------------------------------------------------- /assets/styles/tools/_normalize.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/_normalize.scss -------------------------------------------------------------------------------- /assets/styles/tools/_tooltips.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/_tooltips.scss -------------------------------------------------------------------------------- /assets/styles/tools/media-queries.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/media-queries.scss -------------------------------------------------------------------------------- /assets/styles/tools/mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/assets/styles/tools/mixins.scss -------------------------------------------------------------------------------- /broken_links_report.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/compose.yaml -------------------------------------------------------------------------------- /config/_default/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/config/_default/hugo.yml -------------------------------------------------------------------------------- /config/production/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/config/production/config.yml -------------------------------------------------------------------------------- /config/production/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/config/production/hugo.yml -------------------------------------------------------------------------------- /config/staging/hugo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/config/staging/hugo.yml -------------------------------------------------------------------------------- /content/.remarkrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/.remarkrc.yaml -------------------------------------------------------------------------------- /content/CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/CLAUDE.md -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/_index.md -------------------------------------------------------------------------------- /content/chronograf/v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/chronograf/v1/_index.md -------------------------------------------------------------------------------- /content/chronograf/v1/guides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/chronograf/v1/guides/_index.md -------------------------------------------------------------------------------- /content/chronograf/v1/tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/chronograf/v1/tools/_index.md -------------------------------------------------------------------------------- /content/create.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/create.md -------------------------------------------------------------------------------- /content/enterprise_influxdb/v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/enterprise_influxdb/v1/_index.md -------------------------------------------------------------------------------- /content/example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/example.md -------------------------------------------------------------------------------- /content/flux/v0/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/_index.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/_index.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/_index.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/bool.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/bytes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/bytes.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/float.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/int.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/null.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/null.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/regexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/regexp.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/string.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/string.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/time.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/basic/uint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/basic/uint.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/dynamic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/dynamic.md -------------------------------------------------------------------------------- /content/flux/v0/data-types/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/data-types/union.md -------------------------------------------------------------------------------- /content/flux/v0/define-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/define-functions.md -------------------------------------------------------------------------------- /content/flux/v0/function-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/function-types.md -------------------------------------------------------------------------------- /content/flux/v0/future-of-flux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/future-of-flux.md -------------------------------------------------------------------------------- /content/flux/v0/get-started/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/get-started/_index.md -------------------------------------------------------------------------------- /content/flux/v0/get-started/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/get-started/data-model.md -------------------------------------------------------------------------------- /content/flux/v0/influxdb-versions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/influxdb-versions.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/_index.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/full-outer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/full-outer.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/inner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/inner.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/left-outer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/left-outer.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/right-outer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/right-outer.md -------------------------------------------------------------------------------- /content/flux/v0/join-data/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/join-data/time.md -------------------------------------------------------------------------------- /content/flux/v0/prometheus/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/prometheus/_index.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/_index.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/bigtable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/bigtable.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/csv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/csv.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/influxdb.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/_index.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/athena.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/athena.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/bigquery.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/bigquery.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/mariadb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/mariadb.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/mysql.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/percona.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/percona.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/sap-hana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/sap-hana.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/sqlite.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/sqlite.md -------------------------------------------------------------------------------- /content/flux/v0/query-data/sql/vertica.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/query-data/sql/vertica.md -------------------------------------------------------------------------------- /content/flux/v0/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/release-notes.md -------------------------------------------------------------------------------- /content/flux/v0/spec/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/_index.md -------------------------------------------------------------------------------- /content/flux/v0/spec/assignment-scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/assignment-scope.md -------------------------------------------------------------------------------- /content/flux/v0/spec/attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/attributes.md -------------------------------------------------------------------------------- /content/flux/v0/spec/blocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/blocks.md -------------------------------------------------------------------------------- /content/flux/v0/spec/data-model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/data-model.md -------------------------------------------------------------------------------- /content/flux/v0/spec/expressions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/expressions.md -------------------------------------------------------------------------------- /content/flux/v0/spec/lexical-elements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/lexical-elements.md -------------------------------------------------------------------------------- /content/flux/v0/spec/notation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/notation.md -------------------------------------------------------------------------------- /content/flux/v0/spec/operators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/operators.md -------------------------------------------------------------------------------- /content/flux/v0/spec/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/options.md -------------------------------------------------------------------------------- /content/flux/v0/spec/packages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/packages.md -------------------------------------------------------------------------------- /content/flux/v0/spec/representation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/representation.md -------------------------------------------------------------------------------- /content/flux/v0/spec/side-effects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/side-effects.md -------------------------------------------------------------------------------- /content/flux/v0/spec/statements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/statements.md -------------------------------------------------------------------------------- /content/flux/v0/spec/system-built-ins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/system-built-ins.md -------------------------------------------------------------------------------- /content/flux/v0/spec/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/types.md -------------------------------------------------------------------------------- /content/flux/v0/spec/variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/spec/variables.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/all-functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/all-functions.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/array/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/array/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/array/concat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/array/concat.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/array/filter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/array/filter.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/array/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/array/from.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/array/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/array/map.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/sand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/sand.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/sclear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/sclear.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/slshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/slshift.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/snot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/snot.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/sor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/sor.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/srshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/srshift.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/sxor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/sxor.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/uand.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/uand.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/uclear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/uclear.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/ulshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/ulshift.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/unot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/unot.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/uor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/uor.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/urshift.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/urshift.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/bitwise/uxor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/bitwise/uxor.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/contrib/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/contrib/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/csv/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/csv/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/csv/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/csv/from.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/add.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/hour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/hour.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/microsecond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/microsecond.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/millisecond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/millisecond.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/minute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/minute.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/month.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/month.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/monthday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/monthday.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/nanosecond.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/nanosecond.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/quarter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/quarter.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/scale.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/scale.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/second.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/second.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/sub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/sub.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/time.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/truncate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/truncate.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/week.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/week.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/weekday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/weekday.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/year.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/year.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/date/yearday.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/date/yearday.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/dict/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/dict/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/dict/fromlist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/dict/fromlist.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/dict/get.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/dict/get.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/dict/insert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/dict/insert.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/dict/remove.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/dict/remove.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/experimental/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/experimental/max.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/experimental/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/experimental/min.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/experimental/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/experimental/set.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/experimental/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/experimental/sum.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/experimental/to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/experimental/to.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/generate/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/generate/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/generate/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/generate/from.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/basicauth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/basicauth.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/endpoint.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/pathescape.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/pathescape.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/post.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/http/requests/do.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/http/requests/do.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/internal/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/internal/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/full.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/inner.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/inner.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/left.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/left.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/right.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/right.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/tables.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/join/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/join/time.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/json/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/json/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/json/encode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/json/encode.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/kafka/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/kafka/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/kafka/to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/kafka/to.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/abs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/abs.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/acos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/acos.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/acosh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/acosh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/asin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/asin.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/asinh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/asinh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/atan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/atan.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/atan2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/atan2.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/atanh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/atanh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/cbrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/cbrt.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/ceil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/ceil.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/copysign.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/copysign.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/cos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/cos.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/cosh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/cosh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/dim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/dim.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/erf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/erf.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/erfc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/erfc.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/erfcinv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/erfcinv.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/erfinv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/erfinv.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/exp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/exp.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/exp2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/exp2.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/expm1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/expm1.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/float64bits.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/float64bits.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/floor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/floor.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/frexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/frexp.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/gamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/gamma.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/hypot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/hypot.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/ilogb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/ilogb.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/isinf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/isinf.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/isnan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/isnan.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/j0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/j0.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/j1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/j1.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/jn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/jn.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/ldexp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/ldexp.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/lgamma.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/lgamma.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/log.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/log.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/log10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/log10.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/log1p.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/log1p.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/log2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/log2.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/logb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/logb.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/minf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/minf.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/mmax.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/mmax.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/mmin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/mmin.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/mod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/mod.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/modf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/modf.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/nan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/nan.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/nextafter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/nextafter.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/pow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/pow.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/pow10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/pow10.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/remainder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/remainder.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/round.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/round.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/roundtoeven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/roundtoeven.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/signbit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/signbit.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/sin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/sin.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/sincos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/sincos.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/sinh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/sinh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/sqrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/sqrt.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/tan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/tan.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/tanh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/tanh.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/trunc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/trunc.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/y0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/y0.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/y1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/y1.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/math/yn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/math/yn.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/pagerduty/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/pagerduty/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/planner/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/planner/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/profiler/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/profiler/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/regexp/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/regexp/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/regexp/compile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/regexp/compile.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/regexp/getstring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/regexp/getstring.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/regexp/quotemeta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/regexp/quotemeta.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/runtime/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/runtime/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/runtime/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/runtime/version.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sampledata/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sampledata/bool.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sampledata/float.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sampledata/float.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sampledata/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sampledata/int.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sampledata/uint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sampledata/uint.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/slack/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/slack/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/slack/endpoint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/slack/endpoint.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/slack/message.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/slack/message.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/socket/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/socket/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/socket/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/socket/from.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sql/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sql/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sql/from.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sql/from.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/sql/to.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/sql/to.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/compare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/compare.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/countstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/countstr.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/index-fn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/index-fn.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/indexany.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/indexany.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/isdigit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/isdigit.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/isletter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/isletter.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/islower.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/islower.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/isupper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/isupper.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/joinstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/joinstr.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/repeat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/repeat.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/replace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/replace.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/split.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/split.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/splitn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/splitn.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/title.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/title.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/strings/trim.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/strings/trim.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/system/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/system/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/system/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/system/time.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/testing/diff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/testing/diff.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/testing/load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/testing/load.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/types/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/types/_index.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/types/istype.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/types/istype.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/bool.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/bool.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/cov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/cov.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/die.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/die.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/drop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/drop.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/fill.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/int.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/int.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/join.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/keep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/keep.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/keys.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/keys.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/last.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/last.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/map.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/map.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/max.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/max.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/mean.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/mean.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/min.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/min.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/mode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/mode.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/now.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/now.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/set.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/skew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/skew.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/sort.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/sort.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/sum.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/sum.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/tail.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/tail.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/time.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/top.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/top.md -------------------------------------------------------------------------------- /content/flux/v0/stdlib/universe/uint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/stdlib/universe/uint.md -------------------------------------------------------------------------------- /content/flux/v0/write-data/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/write-data/_index.md -------------------------------------------------------------------------------- /content/flux/v0/write-data/influxdb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/write-data/influxdb.md -------------------------------------------------------------------------------- /content/flux/v0/write-data/sql/mysql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/flux/v0/write-data/sql/mysql.md -------------------------------------------------------------------------------- /content/influxdb/cloud/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/_index.md -------------------------------------------------------------------------------- /content/influxdb/cloud/admin/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/admin/_index.md -------------------------------------------------------------------------------- /content/influxdb/cloud/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/reference/faq.md -------------------------------------------------------------------------------- /content/influxdb/cloud/sign-up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/sign-up.md -------------------------------------------------------------------------------- /content/influxdb/cloud/tags/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/tags/_index.md -------------------------------------------------------------------------------- /content/influxdb/cloud/tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/tools/_index.md -------------------------------------------------------------------------------- /content/influxdb/cloud/tools/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/tools/grafana.md -------------------------------------------------------------------------------- /content/influxdb/cloud/tools/postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/cloud/tools/postman.md -------------------------------------------------------------------------------- /content/influxdb/v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/_index.md -------------------------------------------------------------------------------- /content/influxdb/v1/concepts/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/concepts/_index.md -------------------------------------------------------------------------------- /content/influxdb/v1/data_sources/carbon.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/influxdb/v1/data_sources/collectd.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/influxdb/v1/flux/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/flux/_index.md -------------------------------------------------------------------------------- /content/influxdb/v1/flux/guides/fill.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/flux/guides/fill.md -------------------------------------------------------------------------------- /content/influxdb/v1/flux/guides/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/flux/guides/join.md -------------------------------------------------------------------------------- /content/influxdb/v1/flux/guides/rate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/flux/guides/rate.md -------------------------------------------------------------------------------- /content/influxdb/v1/flux/guides/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/flux/guides/sql.md -------------------------------------------------------------------------------- /content/influxdb/v1/guides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/guides/_index.md -------------------------------------------------------------------------------- /content/influxdb/v1/tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/tools/_index.md -------------------------------------------------------------------------------- /content/influxdb/v1/tools/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/tools/api.md -------------------------------------------------------------------------------- /content/influxdb/v1/tools/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/tools/grafana.md -------------------------------------------------------------------------------- /content/influxdb/v1/tools/inch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v1/tools/inch.md -------------------------------------------------------------------------------- /content/influxdb/v2/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/.vale.ini -------------------------------------------------------------------------------- /content/influxdb/v2/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/admin/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/admin/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/admin/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/admin/logs.md -------------------------------------------------------------------------------- /content/influxdb/v2/api-guide/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/api-guide/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/install/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/install/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/reference/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/reference/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/reference/faq.md -------------------------------------------------------------------------------- /content/influxdb/v2/reference/urls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/reference/urls.md -------------------------------------------------------------------------------- /content/influxdb/v2/tags/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tags/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/_index.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/chronograf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/chronograf.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/flux-repl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/flux-repl.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/grafana.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/grafana.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/influx-cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/influx-cli.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/kapacitor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/kapacitor.md -------------------------------------------------------------------------------- /content/influxdb/v2/tools/postman.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb/v2/tools/postman.md -------------------------------------------------------------------------------- /content/influxdb3/clustered/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/clustered/.vale.ini -------------------------------------------------------------------------------- /content/influxdb3/clustered/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/clustered/_index.md -------------------------------------------------------------------------------- /content/influxdb3/clustered/pages.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/clustered/pages.md -------------------------------------------------------------------------------- /content/influxdb3/core/.vale.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/core/.vale.ini -------------------------------------------------------------------------------- /content/influxdb3/core/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/core/_index.md -------------------------------------------------------------------------------- /content/influxdb3/core/admin/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/core/admin/_index.md -------------------------------------------------------------------------------- /content/influxdb3/core/admin/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/core/admin/upgrade.md -------------------------------------------------------------------------------- /content/influxdb3/core/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/core/install.md -------------------------------------------------------------------------------- /content/influxdb3/enterprise/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/enterprise/_index.md -------------------------------------------------------------------------------- /content/influxdb3/explorer/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/explorer/_index.md -------------------------------------------------------------------------------- /content/influxdb3/explorer/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/influxdb3/explorer/install.md -------------------------------------------------------------------------------- /content/kapacitor/v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/kapacitor/v1/_index.md -------------------------------------------------------------------------------- /content/kapacitor/v1/guides/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/kapacitor/v1/guides/_index.md -------------------------------------------------------------------------------- /content/kapacitor/v1/working/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/kapacitor/v1/working/_index.md -------------------------------------------------------------------------------- /content/kapacitor/v1/working/alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/kapacitor/v1/working/alerts.md -------------------------------------------------------------------------------- /content/kapacitor/v1/working/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/kapacitor/v1/working/api.md -------------------------------------------------------------------------------- /content/platform/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/_index.md -------------------------------------------------------------------------------- /content/platform/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/faq.md -------------------------------------------------------------------------------- /content/platform/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/getting-started.md -------------------------------------------------------------------------------- /content/platform/identify-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/identify-version.md -------------------------------------------------------------------------------- /content/platform/monitoring/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/monitoring/_index.md -------------------------------------------------------------------------------- /content/platform/troubleshoot/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/platform/troubleshoot/_index.md -------------------------------------------------------------------------------- /content/resources/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/resources/_index.md -------------------------------------------------------------------------------- /content/resources/videos/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/resources/videos/_index.md -------------------------------------------------------------------------------- /content/resources/videos/ingest-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/resources/videos/ingest-data.md -------------------------------------------------------------------------------- /content/resources/videos/tsm-engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/resources/videos/tsm-engine.md -------------------------------------------------------------------------------- /content/shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/README.md -------------------------------------------------------------------------------- /content/shared/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/_index.md -------------------------------------------------------------------------------- /content/shared/identify-version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/identify-version.md -------------------------------------------------------------------------------- /content/shared/influxctl/table/list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/influxctl/table/list.md -------------------------------------------------------------------------------- /content/shared/influxdb3-cli/query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/influxdb3-cli/query.md -------------------------------------------------------------------------------- /content/shared/influxdb3-cli/write.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/influxdb3-cli/write.md -------------------------------------------------------------------------------- /content/shared/influxdb3-query-guides/snapshots/snowflake.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /content/shared/influxdb3/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/influxdb3/_index.md -------------------------------------------------------------------------------- /content/shared/influxdb3/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/influxdb3/install.md -------------------------------------------------------------------------------- /content/shared/sql-reference/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/_index.md -------------------------------------------------------------------------------- /content/shared/sql-reference/explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/explain.md -------------------------------------------------------------------------------- /content/shared/sql-reference/having.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/having.md -------------------------------------------------------------------------------- /content/shared/sql-reference/join.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/join.md -------------------------------------------------------------------------------- /content/shared/sql-reference/limit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/limit.md -------------------------------------------------------------------------------- /content/shared/sql-reference/select.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/select.md -------------------------------------------------------------------------------- /content/shared/sql-reference/union.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/union.md -------------------------------------------------------------------------------- /content/shared/sql-reference/where.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/sql-reference/where.md -------------------------------------------------------------------------------- /content/shared/v3-line-protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/shared/v3-line-protocol.md -------------------------------------------------------------------------------- /content/telegraf/v1/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/_index.md -------------------------------------------------------------------------------- /content/telegraf/v1/commands/_index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/commands/_index.md -------------------------------------------------------------------------------- /content/telegraf/v1/commands/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/commands/version.md -------------------------------------------------------------------------------- /content/telegraf/v1/configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/configuration.md -------------------------------------------------------------------------------- /content/telegraf/v1/contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/contribute.md -------------------------------------------------------------------------------- /content/telegraf/v1/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/get-started.md -------------------------------------------------------------------------------- /content/telegraf/v1/glossary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/glossary.md -------------------------------------------------------------------------------- /content/telegraf/v1/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/install.md -------------------------------------------------------------------------------- /content/telegraf/v1/metrics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/metrics.md -------------------------------------------------------------------------------- /content/telegraf/v1/plugins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/plugins.md -------------------------------------------------------------------------------- /content/telegraf/v1/release-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/telegraf/v1/release-notes.md -------------------------------------------------------------------------------- /content/test-version-detector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/content/test-version-detector.md -------------------------------------------------------------------------------- /cypress.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress.config.js -------------------------------------------------------------------------------- /cypress/e2e/content/api-reference.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/content/api-reference.cy.js -------------------------------------------------------------------------------- /cypress/e2e/content/ask-ai.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/content/ask-ai.cy.js -------------------------------------------------------------------------------- /cypress/e2e/content/index.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/content/index.cy.js -------------------------------------------------------------------------------- /cypress/e2e/content/page-context.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/content/page-context.cy.js -------------------------------------------------------------------------------- /cypress/e2e/page-context.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/page-context.cy.js -------------------------------------------------------------------------------- /cypress/e2e/topnav.cy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/e2e/topnav.cy.js -------------------------------------------------------------------------------- /cypress/plugins/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/plugins/index.js -------------------------------------------------------------------------------- /cypress/support/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/commands.js -------------------------------------------------------------------------------- /cypress/support/e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/e2e.js -------------------------------------------------------------------------------- /cypress/support/hugo-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/hugo-server.js -------------------------------------------------------------------------------- /cypress/support/map-files-to-urls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/map-files-to-urls.js -------------------------------------------------------------------------------- /cypress/support/markdown-validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/markdown-validator.js -------------------------------------------------------------------------------- /cypress/support/run-e2e-specs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/cypress/support/run-e2e-specs.js -------------------------------------------------------------------------------- /data/clockface.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/clockface.yml -------------------------------------------------------------------------------- /data/flux_influxdb_minor_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/flux_influxdb_minor_versions.yml -------------------------------------------------------------------------------- /data/flux_influxdb_versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/flux_influxdb_versions.yml -------------------------------------------------------------------------------- /data/flux_stdlib_frontmatter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/flux_stdlib_frontmatter.yml -------------------------------------------------------------------------------- /data/influxd_flags.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/influxd_flags.yml -------------------------------------------------------------------------------- /data/influxdb_urls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/influxdb_urls.yml -------------------------------------------------------------------------------- /data/list_filters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/list_filters.yml -------------------------------------------------------------------------------- /data/notifications.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/notifications.yaml -------------------------------------------------------------------------------- /data/products.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/products.yml -------------------------------------------------------------------------------- /data/query_examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/query_examples.yml -------------------------------------------------------------------------------- /data/telegraf_plugins.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/data/telegraf_plugins.yml -------------------------------------------------------------------------------- /deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/deploy/README.md -------------------------------------------------------------------------------- /deploy/ci-install-s3deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/deploy/ci-install-s3deploy.sh -------------------------------------------------------------------------------- /deploy/docs-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/deploy/docs-website.yml -------------------------------------------------------------------------------- /deploy/edge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/deploy/edge.js -------------------------------------------------------------------------------- /docs.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/docs.code-workspace -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/eslint.config.js -------------------------------------------------------------------------------- /helper-scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/helper-scripts/README.md -------------------------------------------------------------------------------- /helper-scripts/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/helper-scripts/common/README.md -------------------------------------------------------------------------------- /helper-scripts/common/validate-tags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/helper-scripts/common/validate-tags.js -------------------------------------------------------------------------------- /hugo_stats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/hugo_stats.json -------------------------------------------------------------------------------- /install-influxdb3-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/install-influxdb3-core.sh -------------------------------------------------------------------------------- /install_influxdb3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/install_influxdb3.sh -------------------------------------------------------------------------------- /layouts/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/404.html -------------------------------------------------------------------------------- /layouts/_default/LLMS-TXT-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/LLMS-TXT-README.md -------------------------------------------------------------------------------- /layouts/_default/api.html: -------------------------------------------------------------------------------- 1 | {{ .Content }} 2 | -------------------------------------------------------------------------------- /layouts/_default/landing-influxdb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/landing-influxdb.html -------------------------------------------------------------------------------- /layouts/_default/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/list.html -------------------------------------------------------------------------------- /layouts/_default/page-list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/page-list.json -------------------------------------------------------------------------------- /layouts/_default/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/section.html -------------------------------------------------------------------------------- /layouts/_default/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/single.html -------------------------------------------------------------------------------- /layouts/_default/tags-landing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/_default/tags-landing.html -------------------------------------------------------------------------------- /layouts/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/index.html -------------------------------------------------------------------------------- /layouts/index.llmstxt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/index.llmstxt.txt -------------------------------------------------------------------------------- /layouts/partials/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article.html -------------------------------------------------------------------------------- /layouts/partials/article/append.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/append.html -------------------------------------------------------------------------------- /layouts/partials/article/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/content.html -------------------------------------------------------------------------------- /layouts/partials/article/feedback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/feedback.html -------------------------------------------------------------------------------- /layouts/partials/article/page-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/page-meta.html -------------------------------------------------------------------------------- /layouts/partials/article/prepend.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/prepend.html -------------------------------------------------------------------------------- /layouts/partials/article/related.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/related.html -------------------------------------------------------------------------------- /layouts/partials/article/tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/article/tags.html -------------------------------------------------------------------------------- /layouts/partials/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/footer.html -------------------------------------------------------------------------------- /layouts/partials/footer/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/footer/javascript.html -------------------------------------------------------------------------------- /layouts/partials/footer/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/footer/modals.html -------------------------------------------------------------------------------- /layouts/partials/footer/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/footer/search.html -------------------------------------------------------------------------------- /layouts/partials/footer/widgets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/footer/widgets.html -------------------------------------------------------------------------------- /layouts/partials/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/header.html -------------------------------------------------------------------------------- /layouts/partials/header/canonical.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/header/canonical.html -------------------------------------------------------------------------------- /layouts/partials/header/javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/header/javascript.html -------------------------------------------------------------------------------- /layouts/partials/header/marketing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/header/marketing.html -------------------------------------------------------------------------------- /layouts/partials/header/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/header/title.html -------------------------------------------------------------------------------- /layouts/partials/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/sidebar.html -------------------------------------------------------------------------------- /layouts/partials/svgs/book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/svgs/book.svg -------------------------------------------------------------------------------- /layouts/partials/svgs/hatch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/svgs/hatch.svg -------------------------------------------------------------------------------- /layouts/partials/svgs/hive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/svgs/hive.svg -------------------------------------------------------------------------------- /layouts/partials/svgs/influxdbu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/svgs/influxdbu.svg -------------------------------------------------------------------------------- /layouts/partials/svgs/video-arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/svgs/video-arrow.svg -------------------------------------------------------------------------------- /layouts/partials/topnav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/partials/topnav.html -------------------------------------------------------------------------------- /layouts/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/robots.txt -------------------------------------------------------------------------------- /layouts/shortcodes/admin-ui-access.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/admin-ui-access.html -------------------------------------------------------------------------------- /layouts/shortcodes/api-endpoint.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/api-endpoint.html -------------------------------------------------------------------------------- /layouts/shortcodes/api/url-encode-note: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/api/url-encode-note -------------------------------------------------------------------------------- /layouts/shortcodes/api/v1-compat/basic-auth-clients.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /layouts/shortcodes/ask-ai-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/ask-ai-link.html -------------------------------------------------------------------------------- /layouts/shortcodes/caps.html: -------------------------------------------------------------------------------- 1 | {{ .Inner }} -------------------------------------------------------------------------------- /layouts/shortcodes/caption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/caption.html -------------------------------------------------------------------------------- /layouts/shortcodes/children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/children.html -------------------------------------------------------------------------------- /layouts/shortcodes/cite.html: -------------------------------------------------------------------------------- 1 | {{ .Inner }} -------------------------------------------------------------------------------- /layouts/shortcodes/cli/mapped.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/cli/mapped.html -------------------------------------------------------------------------------- /layouts/shortcodes/cloud_regions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/cloud_regions.html -------------------------------------------------------------------------------- /layouts/shortcodes/code-callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/code-callout.html -------------------------------------------------------------------------------- /layouts/shortcodes/code-placeholder-key.html: -------------------------------------------------------------------------------- 1 | {{.Inner}} -------------------------------------------------------------------------------- /layouts/shortcodes/code-tabs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/code-tabs.html -------------------------------------------------------------------------------- /layouts/shortcodes/columns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/columns.html -------------------------------------------------------------------------------- /layouts/shortcodes/cta-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/cta-link.html -------------------------------------------------------------------------------- /layouts/shortcodes/current-version.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/influxdata/docs-v2/HEAD/layouts/shortcodes/current-version.html -------------------------------------------------------------------------------- /layouts/shortcodes/datetime/enterprise-eol-date.html: -------------------------------------------------------------------------------- 1 | September 1, 2025 -------------------------------------------------------------------------------- /layouts/shortcodes/diagram.html: -------------------------------------------------------------------------------- 1 |