Commit Graph

6204 Commits (remove-clustered-release)

Author SHA1 Message Date
Paul Dix 2c66a5997f
Merge branch 'master' into pd/influxdb3-plugins-doc 2025-02-03 11:28:29 -05:00
Scott Anderson b51ece3aa7
Merge branch 'master' into ai-chat-widget 2025-02-03 09:28:25 -07:00
Scott Anderson d234e1ebda
influxctl 2.9.9 release notes and changes (#5815) 2025-02-03 09:27:50 -07:00
Scott Anderson ebf9b1bfd3
Add admin > database docs to Core and Enterprise (#5813)
* add influxdb3 database admin docs

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-02-03 09:25:41 -07:00
Jason Stirnaman dd8f78bb01 fix(3): Broken links to CLI reference 2025-02-03 10:11:26 -06:00
Jason Stirnaman f9f81ae8f9 Initial Kapa.ai chat integration.
Continue refactoring JavaScript into a component pattern and ESM.
Replaces some jQuery with native DOM API.

chore(ai): reference documentation and instructions for training AI

chore(ai): implement Kapa AI chat widget
- Move script tag to HTML template to make it obvious.
- Cleanup javascript to make it more component-like
- Set Kapa attributes, support setting userid

chore(js): add JS dependencies, previously referenced in script tags, to package.json for JS builds.

fix(api): indents

chore(js): package Mermaid diagram library

chore(js): refactor JS for AIChat and Theme as examples of using the component pattern for HTML/CSS/JS

chore(js): Use the new local-storage API in refactored module code and in code not yet ported. Cleanup syntax in local-storage and make functions available from window.LocalStorageAPI.

fix(js): theme.js name-change

chore(js): fix ai-chat.js file name

fix(js): refactor:
- componentNames are snakecase in HTML
- replace DOM selection method and jQuery eventhandler assignment
- remove old theme.js references

chore(ai): configure chat window overlay, size, and position:
- removes overlay and scroll lock
- positions chat to the right and bottom
- expands sample question width to 12 cols

chore(ai): edit disclaimer

fix(ai): size and position

chore(js): make ai-chat specific to configuration and and setting userid (for testing and future use).

fix(js): copy referrerHost variable to v3-wayfinding instead of relying on influxdb-url to assign it.

chore(ai): add a footer div at page bottom to contain modal triggers for custom-time and ask-ai. Still needs some CSS help. Moves tooltip text from CSS to HTML data attribute.

chore(ai): dynamically load AI script tag after DOMContentLoaded to avoid race conditions. Call initialization from the modal trigger module and pass the show trigger function to the onload handler.

fix(ai): fix modal triggers to viewport

fix(modal-triggers): stack the triggers into a single column.

restyle footer widgets

updated time selector modal to use correct storage term

minor style update

WIP(ai-chat): get product data

chore(js): Factor out pageContext module from influxdb-url.js

chore(js): Refactor helpers.js out of inflluxdb-url.js

WIP: refactor influxdburl - minimal changes for module conversions

feat(ai): Custom AI chat example questions product and version.
Ask AI example questions:
- Adds support for customizing example Ask AI questions per product or version.
- Configure questions in site `data/products.yml`; otherwise, it uses default questions from `ask-ai.js`

Context, page, and product data:
- Adds sample URLs for remaining versions in influxdb_urls
- `page-context.js` consolidates and exports constants for page context (protocol, host, path, referrer) and path-to-data mappings for product and influxdb_url site data

Module refactor:
- Refactors some JavaScript into ES6 modules, and refactors some of those further into a Component pattern--just vanilla JS and no shadow DOM stuff. The Component pattern that uses data attributes to "bind" JavaScript modules with CSS and HTML is a popular approach in modern web development. This pattern enhances modularity, reusability, and maintainability by associating behavior (JavaScript), structure (HTML), and style (CSS) through the use of data attributes.
- `assets/main.js` is the entrypoint
- Passes pageParams from the Hugo page to modules that import `@params`.
- Moves most external dependencies out of `script` tags and into package.json to be managed with `yarn`.
- Adds `eslint`.
- For modules that aren't yet components, wraps execution statements inside an `initialize()` function and calls the function from `main.js` on `DOMContentLoaded`.
- For components, if the page contains the `data-component="<component-name>"`, the matching element is passed to the component function on `DOMContentLoaded`.
- I tried to avoid changing logic where it wasn't necessary.

Update DOC_GPT_PROFILE.md

customize ai chat modal styles

fix(influxdb-url): Rename to cloud_dedicated in influxdb_urls.yml, remove newly added placeholder URL and use the extant default, refactor
- Rename  to  in influxdb_urls.yml
- Fix influxdb-url.js and data provision in local-storage.js to use the new name, mapping it to  to retain the existing local storage key

chore(api-lib): Use local-storage import instead of window global

chore(js): cleanup

fix(js): Ensure feature-callout initializes on page load

fix(theme): Load preferred theme before making the page visible. Execute a predefined function by specifying the function name in data-theme-callback

fix(search-toggle): Restores toggling the search field when sidebar is collapsed. Moves the event handler to a new search-button component

fix(ai): Fix custom attribute assignment. Rename property to ai_example_questions

Include the word `Bearer` or `Token`, a space, and your **token** value (all case-sensitive). Fix TOC links.
Fixes #5781

fix(api-docs): Update API reference directories and generation script for influxdb3 URL paths, update links and names in reference content

fix(api-ref): Update getswagger.sh destination paths to use the new directory structure when fetching spec files. Update the redocly  plugin module path.

hotfix: fix hlevel bug in children shortcode

Remove underline from custom time widget

add color to custom time widget styling
2025-02-03 08:31:55 -06:00
Scott Anderson d73e99dd41
Add CLI instructions for writing sample data (#5814)
* add cli instructions for writing sample data

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-31 08:50:05 -07:00
Paul Dix 9ed11bc770
Merge branch 'master' into pd/influxdb3-plugins-doc 2025-01-31 10:07:44 -05:00
Paul Dix df3e4ca014
Update content/influxdb3/enterprise/plugins.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-31 10:07:29 -05:00
Paul Dix 90775648cb
Update content/influxdb3/core/plugins.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-31 10:07:24 -05:00
Scott Anderson 43efe0c4c2
Add new influxdb3 show system commands (#5812)
* add new show system table commands

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* Update content/shared/influxdb3-cli/show/system/summary.md

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-30 15:19:48 -07:00
Scott Anderson 80a523d921
InfluxDB 3 Core and Enterprise write guides (#5811)
* WIP influxdb3 write guides

* get based content for write guides

* fixed some lint issues

* ported write guides as shared content to enterprise

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-30 12:37:12 -07:00
Paul Dix 9b57b1fb7a Update plugin docs 2025-01-28 20:24:36 -05:00
Jason Stirnaman f1d82f4b00 fix(api-docs): Update API reference directories and generation script for influxdb3 URL paths, update links and names in reference content 2025-01-28 10:53:07 -06:00
Jason Stirnaman eb3ca6a4fc
Merge branch 'master' into jstirnaman/issue5781 2025-01-27 15:19:22 -06:00
Scott Anderson f4c3332fbc
Add new influxdb3 write and query input methods (#5807)
* add new influxdb3 write and query input methods

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* updated table formatting

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-27 14:16:25 -07:00
Jason Stirnaman 17ce08db08
Merge branch 'master' into jstirnaman/issue5781 2025-01-27 15:13:03 -06:00
Scott Anderson 60a2268b96
Update content for 72 hour limit change (#5806)
* update content for 72 hour limit change

* Apply suggestions from code review

Co-authored-by: Paul Dix <paul@pauldix.net>

* updated query-file-limit content structure

---------

Co-authored-by: Paul Dix <paul@pauldix.net>
2025-01-27 08:30:19 -07:00
Jason Stirnaman d2c96a8795
Merge branch 'master' into jstirnaman/issue5781 2025-01-24 17:03:59 -06:00
Jason Stirnaman be2724ce7f
Merge branch 'master' into chore/fix-typo-in-clustered-bypass-identity-provider-section 2025-01-24 17:03:33 -06:00
Dustin Eaton 98d05870da
chore: fix typo in Clustered bypass identity provider section 2025-01-24 16:53:28 -06:00
Scott Anderson cdbdc0409c update all instances of writer-id to node-id 2025-01-24 10:49:09 -07:00
Scott Anderson 888263a6c7
Merge branch 'master' into pbarnett/writer_to_node_id 2025-01-24 10:45:12 -07:00
Peter Barnett d3625a52fb fix: updating writer-id to node-id 2025-01-24 12:40:08 -05:00
Jason Stirnaman 5f825101b9
Merge branch 'master' into jstirnaman/issue5781 2025-01-23 14:34:29 -06:00
Scott Anderson 86bee7caf6
Add InfluxDB 3 query guides (#5798)
* base content for influxdb3 query guides

* added enterprise versions of query guides

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* update template titles to use .RenderString

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2025-01-23 10:18:45 -07:00
Jackie Tien ecb9487d84
Update _index.md 2025-01-22 11:02:33 +08:00
peterbarnett03 092a48d4da
fix: updating last values cache CLI and usage (#5795) 2025-01-21 19:58:49 -07:00
Paul Dix b78162d24c Add plugin documentation for Core and Enterprise 2025-01-19 18:07:40 -05:00
Jason Stirnaman b679b635b9 Include the word `Bearer` or `Token`, a space, and your **token** value (all case-sensitive). Fix TOC links.
Fixes #5781
2025-01-19 13:44:35 -06:00
Paul Dix 07544cfa71 Correct install info on Core and Enterprise 2025-01-19 12:29:21 -05:00
Scott Anderson c0e3f4941f
Visualize data for InfluxDB 3 Core and Enterprise (#5785)
* add grafana for influxdb3 core and enterprise

* add superset docs for monolith

* added tableau to monolith

* mark tableau and superset as draft
2025-01-17 13:22:23 -07:00
Jennifer Moore a51603ef4c
Revert "Revert "docs: add dec 2024 clustered release notes"" 2025-01-17 13:40:18 -06:00
peterbarnett03 38b63ec51a
fix: remove incorrect licensing on Core (#5786) 2025-01-16 19:24:18 -07:00
Jane Losare-Lusby 865fda47c5
update influxql cli example flag 2025-01-16 13:49:09 -08:00
Jennifer Moore ab3dbc6ccb
Revert "docs: add dec 2024 clustered release notes (#5774)"
This reverts commit d5948dbfe5.
2025-01-16 10:02:10 -06:00
Jason Stirnaman 7527d4c27f
Update content/shared/v3-enterprise-get-started/_index.md 2025-01-15 14:36:38 -06:00
Jason Stirnaman df473820d8
Update content/shared/v3-core-get-started/_index.md 2025-01-15 14:36:32 -06:00
Jason Stirnaman d038d5cc80 fix(monolith): a little more help for partial writes 2025-01-15 14:27:16 -06:00
Jason Stirnaman 87c71f48a1 fix(monolith): write APIs and add examples 2025-01-15 14:20:03 -06:00
Jason Stirnaman ce8779142a fix(core): write apis and add examples 2025-01-15 14:20:03 -06:00
Peter Barnett 088735bda3 fix: updating API write endpoint 2025-01-15 14:20:03 -06:00
Jason Stirnaman 32d455a66a
Merge branch 'master' into fix/issue5772 2025-01-15 14:08:01 -06:00
Ben Tasker b667fd065b
Merge branch 'master' into fix/typo 2025-01-15 09:51:35 +00:00
Jason Stirnaman d25d48071e
Update content/shared/v3-enterprise-get-started/_index.md 2025-01-14 22:58:15 -06:00
Jason Stirnaman 9eb9a2e1e7
Update content/shared/v3-core-get-started/_index.md 2025-01-14 22:57:58 -06:00
Jason Stirnaman a19b8e48ff fix(monolith): get-started and broken install link:
- Use OS-specific tabs for download and install in Get started
- Cleanup of Processing engine instructions and descriptions.
- Fixed broken download link protocol.
- Add Docker instruction to create a volume when starting the container.
2025-01-14 22:53:51 -06:00
Bill O'Connell d5948dbfe5
docs: add dec 2024 clustered release notes (#5774)
* docs: add dec 2024 clustered release notes

* just some docs-style updates

---------

Co-authored-by: Scott Anderson <scott@influxdata.com>
2025-01-14 15:19:31 -07:00
B Tasker a17d6d0b2a
fix: correct typo 2025-01-14 16:13:23 +00:00
Jason Stirnaman a65741153b fix(monolith): Multi-node cleanup, misc fixes 2025-01-13 11:42:34 -06:00
Scott Anderson 5b1348d01c hotfix: standardize download links and fix windows sha256 2025-01-13 10:27:41 -07:00
Jamie Strandboge f3a92cbef7
feat: add sha256 URLs alongside non-docker artifacts (#5769) 2025-01-13 10:06:59 -07:00
Jamie Strandboge 708c5f089c
fix: add missing quotes to parameterized queries from python (#5768) 2025-01-13 09:57:59 -07:00
Peter Barnett ef1736fbe0 chore: clarify s3 default region 2025-01-13 11:20:21 -05:00
Jason Stirnaman 674f497074 hotfix: Win download link 2025-01-13 10:02:09 -06:00
Jason Stirnaman 6f563a8cf5
Merge branch 'master' into pbarnett/update_core_info_on_enterprise 2025-01-13 09:39:33 -06:00
Peter Barnett 50978edcb6 chore: clarity on Enterprise vs. Core 2025-01-13 10:21:17 -05:00
peterbarnett03 13b450b0bb
chore: update Discord invite link (#5762)
* chore: update Discord invite link

* Apply suggestions from code review

---------

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2025-01-13 07:46:20 -07:00
Scott Anderson c4ed194fb0 Merge branch 'master' of github.com:influxdata/docs-v2 2025-01-13 07:41:19 -07:00
Scott Anderson 81e11c5288 hotfix: update core and enterprise install instructions 2025-01-13 07:41:15 -07:00
peterbarnett03 d9ba71c58a
chore: add clarity on Windows (#5761)
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2025-01-13 07:37:47 -07:00
Scott Anderson 72c5295eed
InfluxDB 3 Core & InfluxDB 3 Enterprise alpha release (#5760)
* WIP monolith docs

* WIP monolith

* updated alpha shortcode

* template updates for v3 and pro

* SQL & InfluxQL reference docs for Pro and OSS v3 (#5718)

* point to shared influxql source files

* add sql and influxql references to pro and oss v3 docs

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* ported changes to distributed influxql refs

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* Influxdb3 restructure (#5744)

* WIP monolith naming restructure

* rebuild homepage

* updated broken home links

* stabs in the dark

* fixed duplicate-oss shortcode

* move clustered and cloud-dedicated

* clean-up serverless cruft

* add distributed product redirects

* standarize productPathData

* switch back to findRE for productPathData

* remove debugging code

* move cloud dedicated content

* new product dropdown

* Jstirnaman/influxdb3 restructure (#5743)

* LDAPS and LDAP Client Certificate Docs

Add documentation via LDAP sample configuration for LDAPS and LDAP client certificates. These are new features in the yet-to-be released Enterprise 1.11.7

* Update bucket-schema.md

ndjson.org goes to some sort of sports betting site.

https://jsonlines.org/ is probably a better site.

* fix(partitioning): improve clarity and consistency in partitioning, apply suggestions from @reidkaufmann

* update shared links to use ambiguous version

* WIP monolith docs

* template updates for v3 and pro

* move clustered and cloud-dedicated

* switch back to findRE for productPathData

* move cloud dedicated content

* chore(influxdb3): port cloud-dedicated URLs from recent commit

* chore(influxdb3/clustered): fix and update links

* removed merge cruft

---------

Co-authored-by: Geoffrey Wossum <gwossum@influxdata.com>
Co-authored-by: Daniel Lo <wilburlo@gmail.com>
Co-authored-by: Scott Anderson <scott@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
Co-authored-by: Geoffrey Wossum <gwossum@influxdata.com>
Co-authored-by: Daniel Lo <wilburlo@gmail.com>

* added and styled alpha banner, updated producted selector styles and js

* updated alpha link styles

* updated discord link text

* updated alpha message

* fix page title

* Initial Files

* Initial Files

* InfluxDB 3 Enterprise CLI docs (#5745)

* WIP influxdb3 cli

* fix page title

* influxdb3 enterprise cli

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* fix(js): initialize CodePlaceholder on content loaded, small refactor toward component pattern.

* updated URL modal for core and enterprise

* remove testing code on install page

* InfuxDB 3 Enterprise configuration options (#5749)

* fix page title

* add enterprise 3 configuration options

* revert command updates to avoid conflicts

* updated config option name

* CLI updates, reorg, and photos

* updated host-id option to writer-id

* InfluxDB 3 Core CLI (#5750)

* WIP make influxdb3 docs shared

* finish making influxdb3 enterprise cli shared

* add influxdb3 core cli docs

* update config option name

* updated host-id to writer-id

* updated a few more host-id options to writer-id

* InfluxDB 3 Core configuration options (#5752)

* added missing enterprise config options

* add influxdb3 core config options, update enterprise options

* minor fixes in core config options

* update search integration data (#5753)

* Add shared v3 line protocol doc to Core and Enterprise (#5754)

* add shared v3 line protocol doc to core and enterprise

* Update content/shared/v3-line-protocol.md

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* feat: update getting started guides

* Update content/influxdb3/core/_index.md

* Update content/influxdb3/core/_index.md

* update use of 3.0 and v3 to just 3

* add basic download/install instructions (#5756)

* chore(monolith): port Enterprise and Core get-started guides to shared for reuse as /index and /get-started

* fix(monolith): reapply previous description change

* Jts/update Get started for monolith (#5759)

* fix(monolith): get-started cleanup (spelling, style, APIs)
- Finished Enterprise for now, not ported to Core.

* fix(monolith): python sample columns

* fix(monolith): Ports edits to Core, misc. fixes

* update alpha message

* add state to product dropdown items

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
Co-authored-by: Geoffrey Wossum <gwossum@influxdata.com>
Co-authored-by: Daniel Lo <wilburlo@gmail.com>
Co-authored-by: Peter Barnett <peterbarnett@Peters-MacBook-Pro.local>
Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>
Co-authored-by: Paul Dix <paul@pauldix.net>
2025-01-13 07:21:11 -07:00
Jason Stirnaman 111faf9bca
Merge branch 'master' into gw-ldaps-docs 2025-01-10 09:37:12 -06:00
Jason Stirnaman 0a3b058a16
Merge branch 'master' into patch-1 2025-01-10 09:33:05 -06:00
Daniel Lo 0e5a967ea4
Update bucket-schema.md
ndjson.org goes to some sort of sports betting site.

https://jsonlines.org/ is probably a better site.
2025-01-09 22:53:59 -08:00
Scott Anderson 7fb58b280f update shared links to use ambiguous version 2025-01-09 19:35:59 -07:00
Jason Stirnaman 18f33c4336
Merge branch 'master' into jstirnaman/DAR-463 2025-01-09 20:20:32 -06:00
Jason Stirnaman d961c8eeae fix(partitioning): improve clarity and consistency in partitioning, apply suggestions from @reidkaufmann 2025-01-09 15:26:43 -06:00
Jason Stirnaman 2354285f77 Cloud Dedicated: update backup policy
Fixes #5716
- Update backup policy to 30 days
- Misc. cleanup
2025-01-09 14:17:23 -06:00
Jason Stirnaman 5ddffb242b fix(v3): add comment to support shortcode 2025-01-09 10:39:24 -06:00
Jason Stirnaman 29a335ec4f chore(v3): Migrate admin/custom-partitioning to shared content 2025-01-09 10:22:12 -06:00
Jason Stirnaman 8b5f31d9af fix(partitioning): add hyphen and links 2025-01-09 10:22:12 -06:00
Scott Anderson 80ffbf1ea3
Merge branch 'master' into jstirnaman/DAR-463 2025-01-09 07:19:41 -07:00
Jason Stirnaman b7b1947cea
Merge pull request #5738 from influxdata/jstirnaman/influxdb3-concepts
InfluxDB 3 glossary updates and fixes
2025-01-08 14:39:27 -06:00
Jason Stirnaman 6b7d78c751 fix(partitioning): hyphenate and link. Fix related and miscellaneous glossary updates.
- Based on internal docs, single-series is indeed defined by the tag set.
- I'm not sure if that applies directly to series key and cardinality so I'm leaving them alone for now.
2025-01-08 12:29:04 -06:00
Jason Stirnaman 97f084f0bb fix(partitioning): week is not supported 2025-01-08 11:28:36 -06:00
Jason Stirnaman c0651e9ea0 fix(partitioning): planning steps 2025-01-08 10:20:47 -06:00
Jason Stirnaman 7125e62a66
Apply suggestions from code review
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2025-01-08 10:05:16 -06:00
Jason Stirnaman 1bd7b0cfc4 docs(partitioning): enhance best practices and time part templates documentation
For Cloud Dedicated:

- Removes examples of unsupported partition timeframes
- Integrates @reidkaufmann recommendations for limiting the number of partitions and using retention policy
- Fixes https://github.com/influxdata/DAR/issues/463
- Part of #5584
- TODO: apply changes to Clustered
2025-01-07 18:27:35 -06:00
Jason Stirnaman de522a7c78 fix(v3): Python flight_client_options param, update list examples
- Fixes #5159
- Applies changes from pr/5723
2025-01-06 13:54:47 -06:00
meelahme 7e094dbfe9 Update to sign-up.md naming fix 2025-01-03 10:15:40 -08:00
meelahme b8509b7961 Removed Sign up section and replaced it with new InfluxDB cloud note 2025-01-02 14:55:29 -08:00
meelahme 1cdda86d33 Revert "Removed Sign Up section and repleaced it a note"
This reverts commit 8f7685e356.
2025-01-02 14:47:03 -08:00
meelahme 8f7685e356 Removed Sign Up section and repleaced it a note 2025-01-02 14:41:14 -08:00
meelahme cf2090102d Update content/influxdb/cloud/sign-up.md 2025-01-02 14:01:33 -08:00
meelahme bd26c2493d Revised sign up section 2025-01-02 13:46:15 -08:00
meelahme c46052c49e update to format and simplified deployment section (closes #5720) 2024-12-31 16:44:22 -08:00
Jameelah Mercer a77f3b9aa4
Merge branch 'master' into cloudv2/service-updates 2024-12-31 15:19:44 -08:00
meelahme c75e29df64 Added notes on v2 OSS (5720) 2024-12-31 15:14:22 -08:00
meelahme 0f5038f30d Noted new sign ups for version 3.0 (5720) 2024-12-31 15:03:48 -08:00
meelahme 564527eace removed start for free section 2024-12-31 14:45:16 -08:00
Jason Stirnaman c97e9b1592
Update content/influxdb/cloud-dedicated/reference/client-libraries/v3/python.md 2024-12-31 09:40:44 -06:00
Jameelah Mercer 420c65ed7c
Merge pull request #1 from influxdata/updates-to-python.md
fix(client-lib): commented code block for test setup #5711
2024-12-30 11:22:35 -08:00
Jason Stirnaman 868a7528de
Update content/influxdb/cloud-dedicated/reference/client-libraries/v3/python.md 2024-12-30 13:08:03 -06:00
Jason Stirnaman 326c9827c3 fix(client-lib): commented code block for test setup #5711
- Add CONTRIBUTING.md step for building the influxdata:docs-pytest image before running tests.
2024-12-30 11:44:21 -06:00
meelahme 103ba61436 closing tag at line 190 2024-12-28 14:59:12 -08:00
meelahme bcd6ee1dfd updates: closing tag at 190 2024-12-28 14:50:13 -08:00
meelahme 0ecbe89eef Reverted recent list_code_example additions 2024-12-28 13:52:52 -08:00
meelahme 560505d423 Added list_code_example to csharp.md 2024-12-26 18:30:39 -08:00
meelahme e28d3934f2 Added list_code_example to go.md 2024-12-26 18:16:11 -08:00
meelahme 2427fd1c62 Added list_code_example to java.md 2024-12-26 17:36:33 -08:00
meelahme a274c27259 updates to javascript.md list_code_example 2024-12-26 11:47:23 -08:00
meelahme e98002c795 Updates to lis_code_example and submodule removal 2024-12-24 10:04:08 -08:00
Jason Stirnaman 6cc07627db
Merge branch 'master' into telegraf-v1.33.0 2024-12-20 09:23:50 -06:00
Jason Stirnaman 6d63202518
Update content/telegraf/v1/release-notes.md 2024-12-20 09:23:33 -06:00
Jason Stirnaman 01cfcd40f6
Update content/telegraf/v1/release-notes.md 2024-12-20 09:22:23 -06:00
Jason Stirnaman 7529c6f05d
Update content/telegraf/v1/release-notes.md 2024-12-20 09:22:08 -06:00
Jason Stirnaman 7e90f18c95
Update content/telegraf/v1/release-notes.md 2024-12-20 09:21:57 -06:00
Jason Stirnaman 57e1ab8b07
Update content/telegraf/v1/release-notes.md 2024-12-20 09:21:34 -06:00
Sven Rebhan 4163b2ffd6
Update content/telegraf/v1/release-notes.md
Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>
2024-12-20 10:53:28 +01:00
Ben Tasker 2c609bd3e3
fix: fix broken link (#5717)
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2024-12-19 11:09:51 -07:00
Scott Anderson 5122847981
consolidate v3 InfluxQL docs into shared docs (#5715) 2024-12-16 16:59:39 -07:00
Jakub Bednář a4a1d8b433
Release Chronograf v1.10.6 (#5714)
* Release Chronograf v1.10.6

* Update content/chronograf/v1/about_the_project/release-notes.md

---------

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2024-12-16 13:19:25 -07:00
Scott Anderson f9ad60d7e2
Consolidate SQL reference docs (#5712)
* add source frontmatter for importing shared content

* update sql refrences docs to use shared source files

* updated note shortcodes to github-style alerts
2024-12-16 13:08:14 -07:00
Scott Anderson 53094a8a9d
Merge branch 'master' into telegraf-v1.33.0 2024-12-16 10:09:34 -07:00
karel rehor 456fa98b60 docs: update all references to influxdb3-go client library to influxdb3-go/v2 2024-12-13 11:14:31 +01:00
Jason Stirnaman 126473ed4f
Merge branch 'master' into jstirnaman/issue5695 2024-12-10 09:30:15 -06:00
Sven Rebhan 6b50cf93a1 Telegraf v1.33.0 2024-12-09 22:14:36 +01:00
Jacob Marble 4f1d8c30d0
fix: Clustered may use any PostgreSQL 13 or 14 (#5706) 2024-12-09 13:36:14 -07:00
Scott Anderson 1fed5b324f hotfix: update create-operator example 2024-12-09 13:04:27 -07:00
Jason Stirnaman 3b35e1dce8 fix(enterprise): code block fixes 2024-12-09 13:21:14 -06:00
Jason Stirnaman 3ba7982fda Single-node enterprise meta node flag missing in docs?
Fixes #5695
2024-12-09 13:20:21 -06:00
Jason Stirnaman 6f4f5fc561
Merge branch 'master' into jstirnaman/issue5687 2024-12-06 12:07:55 -06:00
Jason Stirnaman 4bbe62952d Fixes code block languages 2024-12-06 12:05:30 -06:00
Jason Stirnaman 2a86c875cd
Merge branch 'master' into issue5626-telegraf-install 2024-12-05 20:07:33 -06:00
Scott Anderson e924c0a82d
Add new date_bin_wallclock SQL functions (#5691)
* add new date_bin_wallclock sql fns

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* updates to address PR feedback

* Apply suggestions from code review

Co-authored-by: Chunchun Ye <14298407+appletreeisyellow@users.noreply.github.com>

* updates to address PR feedback

* fixed typos

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
Co-authored-by: Chunchun Ye <14298407+appletreeisyellow@users.noreply.github.com>
2024-12-05 17:10:19 -07:00
Jason Stirnaman 24e0306bec
Merge branch 'master' into issue5626-telegraf-install 2024-12-05 16:46:16 -06:00
Jason Stirnaman 7f3a9eed00 fix(telegraf): update and fix install instructions, reference
- Update latest patch
- Remove curly braces from  reference. Removed from the test Dockerfiles, but forgot this one.
- Update checksums in examples and fix AMD and ARM transposed examples
2024-12-05 16:43:17 -06:00
Jason Stirnaman 064a3009f3 fix(serverless): Clarify Flux status, move custom partitioning note to the Optimize Queries page. 2024-12-05 15:51:17 -06:00
Santo 829d5e8bb1 Apply suggestions from code review
Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>
2024-12-05 15:51:17 -06:00
Santo Leto f3bc5515e3 add a warning about lack of custom partitioning 2024-12-05 15:51:17 -06:00
Jason Stirnaman 4c03807f40
Merge branch 'master' into fix-dar-453-remove-trace 2024-12-05 15:13:56 -06:00
Jason Stirnaman a20f203361 fix(clustered): Optimize and troubleshoot queries (Closes #5143 and https://github.com/influxdata/DAR/issues/453) 2024-12-05 15:07:49 -06:00
Jason Stirnaman 1f64204df4 fix(serverless): Optimize and troubleshoot queries. 2024-12-05 14:54:19 -06:00
Jason Stirnaman a8d7a7c2ce fix(dedicated): Get help troubleshooting and tracing queries. 2024-12-05 14:29:51 -06:00
Ben Tasker c578abb998
docs: note that `option location` does not change the timezone used in `_time` (#5702)
* docs: note that `option location` does not change the timezone used in results

* Update content/flux/v0/spec/options.md

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>

* Update content/flux/v0/stdlib/timezone/location.md

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>

* Update content/flux/v0/stdlib/timezone/fixed.md

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>

* Apply suggestions from code review

---------

Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2024-12-05 10:27:33 -07:00
Jason Stirnaman 1704bef79a fix: link, codeblock lang, misc. 2024-12-04 16:31:17 -06:00
Jason Stirnaman 3d8709e8d3 fix: link syntax typos, skip tests 2024-12-04 16:22:05 -06:00
Jason Stirnaman 0648cd3f14
Merge branch 'master' into fix-dar-453-remove-trace 2024-12-04 09:13:08 -06:00
Jason Stirnaman 2275dce614
Merge branch 'master' into jstirnaman/issue5694 2024-12-04 09:09:56 -06:00
Jason Stirnaman 8440268af3
Update content/enterprise_influxdb/v1/administration/backup-and-restore.md
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2024-12-04 09:09:47 -06:00
Jason Stirnaman 7a49fd9cf2
Merge branch 'master' into fix/python-tutorial-authorization 2024-12-04 09:02:58 -06:00
karel rehor 8c9b414023 docs: update argument in python tutorial authorizations code. 2024-12-04 11:08:04 +01:00
Jason Stirnaman 3777cd2bf8 fix(ent): clarify how the incremental backup strategy works
- Verified with Edge team
- Closes 5694
2024-12-03 17:00:49 -06:00
Jason Stirnaman ef7caf3ea2
Merge branch 'master' into fix-dar-453-remove-trace 2024-12-03 14:14:14 -06:00
Jason Stirnaman f65841b220
Merge branch 'master' into fix-dar-449 2024-12-03 12:21:03 -06:00
Jason Stirnaman 460249c4fa fix(enterprise): typo 2024-12-03 11:36:54 -06:00
Jason Stirnaman 8b59f57053
Merge branch 'master' into fix-dar-449 2024-12-03 11:32:02 -06:00
Jason Stirnaman f2855849a5 fix(dedicated): Restructuring optimizing and troubleshooting queries 2024-12-03 11:04:53 -06:00
Jason Stirnaman 505e27d952
Merge branch 'master' into fix-dar-453-remove-trace 2024-12-02 17:24:38 -06:00
Jason Stirnaman 585280e3d5 chore(dedicated): Fixes DAR 453: customers can't enable tracing
Updates Cloud Dedicated docs to reflect current status of https://github.com/influxdata/EAR/issues/5677.
Fixes https://github.com/influxdata/DAR/issues/453.
  - Move trace to draft status
  - Remove trace-id from code sample
  - Use troubleshoot.md as alias for /influxdb/cloud-dedicated/query-data/troubleshoot-and-optimize/trace/
  - Add warning with note to contact support
  - Reorganize troubleshooting sections
2024-12-02 17:23:05 -06:00
Jason Stirnaman 4d6fd2c782 chore(v1): Closes DAR #449. Recommend against using LVM with Enterprise.
Closes https://github.com/influxdata/DAR/issues/449
Adds recommendation from @abalone23
2024-12-02 15:02:57 -06:00
Gunnar Aasen 2fc3234a26 Update release date 2024-12-02 12:41:57 -08:00
Gunnar Aasen bf4b639d8e InfluxDB OSS 2.7.11 2024-12-02 12:41:57 -08:00
Jason Stirnaman 23e6a4fc86 fix(v1): Describe import file sections, note DDL as optional, fix links. 2024-12-02 14:27:54 -06:00
Gunnar Aasen 71badd77dc Revert download links for Telegraf and InfluxDB v2 CLI 2024-12-02 14:27:53 -06:00
Jason Stirnaman 9855562732
Apply suggestions from code review
Co-authored-by: Scott Anderson <sanderson@users.noreply.github.com>
2024-11-27 21:23:00 -06:00
Jason Stirnaman 983319b17a
Merge branch 'master' into fix-dar-451 2024-11-27 17:33:01 -06:00
Jason Stirnaman 01df826bbc fix(v1): DAR 451: Fix import command examples and cleanup for v1
Fixes https://github.com/influxdata/DAR/issues/451
Fixes other examples that don't agree with their descriptions.
Cleanup in backup, influx, and influxd-inspect docs for InfluxDB v1 and influx CLI.
2024-11-27 17:27:23 -06:00
Jason Stirnaman 7991297460 fix(v1): DAR 451: Fix import command examples and cleanup for Enterprise
Fixes https://github.com/influxdata/DAR/issues/451
Fixes other examples that don't agree with their descriptions.
Cleanup in backup, influx, and influxd-inspect docs for Enterprise.
2024-11-27 17:20:52 -06:00
Scott Anderson 240873cd14
InfluxQL TZ clause and function (#5689)
* document influxql tz support, related to influxdb/influxdb_iox#12681

* updated deps
2024-11-27 11:58:37 -07:00
Jason Stirnaman 33ebe1c848 fix(v1): -database flag has no effect on import. 2024-11-25 10:09:22 -06:00
Jason Stirnaman 404c9a6504
Merge branch 'master' into patch-1 2024-11-19 16:51:43 -06:00
Gunnar Aasen f2295bc522 InfluxDB Enterprise v1.11.8 release notes 2024-11-16 14:47:16 -08:00
Gunnar Aasen 2733ec19bd InfluxDB OSS v1.11.8 release notes 2024-11-16 14:44:12 -08:00
Andrew a6c59e807e
Update enable-tls.md
Typo in link to self signed certificate usage
2024-11-16 16:06:11 -05:00
Jakub Bednar 80470f9959 docs(clients): new major version of Go v3 client 2024-11-15 09:58:09 +01:00
mdevy-influxdata 119c1ecf0d
Update prerequisites.md (#5680)
couple typos
2024-11-14 16:12:52 -07:00
Jason Stirnaman b53ff298d7
Merge branch 'master' into visualize-data-fixes 2024-11-14 15:05:36 -06:00
Santo 1a21a40d16
Apply suggestions from code review
Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>
2024-11-14 19:42:52 +00:00
Santo 5bdfba2bb9
Apply suggestions from code review
Co-authored-by: Jason Stirnaman <stirnamanj@gmail.com>
2024-11-14 19:39:57 +00:00
Santo Leto a377e2c328
clarify that bucket retention is set at bucket creation time 2024-11-12 19:35:13 +00:00
Santo Leto 5c245eb63f
Link the "Create a Bucket" page from the "data retention" page 2024-11-12 19:29:04 +00:00
Santo Leto 792f5b30e7
Link "data retention" page in the page "create a bucket" 2024-11-12 19:25:37 +00:00
Santo Leto 734b089662
add missing comma 2024-11-12 19:20:16 +00:00
Santo Leto 280e6a3948
fix bold issue 2024-11-12 19:18:57 +00:00
Santo Leto 84973ffd5d
fix indentation in a numbered list
was causing duplicate numbers.
2024-11-12 18:51:50 +00:00
Santo Leto abd9ea8bb1
fix some links
the problem was in the upper case letters
2024-11-11 22:27:20 +00:00
Santo Leto 0ef2d8160e
fix chronograf link 2024-11-11 22:19:28 +00:00
Santo Leto 661493ffc0
fix heading in dashboard page 2024-11-11 22:13:54 +00:00
Jason Stirnaman fe4b7412cb
Merge branch 'master' into install-improvements 2024-11-08 12:00:14 -06:00
Jason Stirnaman 206c81a50a
Merge branch 'master' into clustered/add-prometheus-resource-setting 2024-11-08 11:12:19 -06:00
wayne warren 01298c39ad chore(clustered): add prometheus as a component with configurable resources 2024-11-08 09:52:39 -07:00
Jason Stirnaman 6206d53d48
Merge branch 'master' into DAR-450-add-user-groups-for-dedicated 2024-11-08 10:07:24 -06:00
Jason Stirnaman 8914468c41
Merge branch 'master' into install-improvements 2024-11-08 10:01:06 -06:00
Santo Leto e5e13712c3
fix another link 2024-11-08 14:04:35 +00:00
Santo Leto 73f61c8379
fix the tab link in the Raspberry tab by..
..adding a new "install-linux" anchor in the Linux tab. Otherwise it will not select automatically the Linux tab. Also there are multiple Linux tabs.
2024-11-08 14:02:45 +00:00
Santo Leto 6d443d74c3
fix the influx-cli links 2024-11-08 13:35:55 +00:00
Santo Leto 7dc5c11d17
adds correct link 2024-11-08 03:07:15 +00:00
Santo Leto 3ef655c2c7
remove non-existing link (could not find it anywhere) 2024-11-08 02:32:46 +00:00
Santo Leto 29d55f94ad
mention the UI (for new users who run Influx for the first time) 2024-11-08 02:01:12 +00:00
Santo Leto 6046706e03
use a warning frame 2024-11-08 01:56:12 +00:00
Santo Leto 24df78841f
fix indentation in numbered list 2024-11-08 01:44:33 +00:00
Scott Anderson ddc921c4fc
Add support for GitHub style alerts (#5667)
* implement github style markdown alerts

* hide example doc

* swapped note and tip color schemes

* fixed broken v2 icons

* marked example as draft

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2024-11-07 14:54:01 -07:00
wayne 9e609cb606
Update content/influxdb/clustered/reference/release-notes/clustered.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2024-11-05 15:45:56 -07:00
wayne dc78e42fa0
Update content/influxdb/clustered/reference/release-notes/clustered.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2024-11-05 15:45:36 -07:00
wayne da19d4efe5
Update content/influxdb/clustered/reference/release-notes/clustered.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2024-11-05 15:45:21 -07:00
wayne 93a5991719
Update content/influxdb/clustered/reference/release-notes/clustered.md
Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
2024-11-05 15:45:04 -07:00
wayne warren 5959c21d93 fix(clustered): add Known Bugs section to release 2024-11-05 12:35:19 -07:00
Scott Anderson 4045a6c12e
Add timezone support to v3 SQL docs (#5581)
* updated timezone-related functions and operators

* updated deps

* Apply suggestions from code review

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>

* updates to address PR feedback

* chore: remove unnecessary ::timestamp casts (#5596)

* feat: Update for latest SQL timezone behavior (#5657)

* feat: Update for latest SQL timezone behavior

* fix: cleanup and improve wording

Co-authored-by: Scott Anderson <scott@influxdata.com>

---------

Co-authored-by: Scott Anderson <scott@influxdata.com>

---------

Co-authored-by: Jason Stirnaman <jstirnaman@influxdata.com>
Co-authored-by: Jeffrey Smith II <jsmith@influxdata.com>
2024-10-30 16:42:47 -06:00