diff --git a/.ci/vale/vale.sh b/.ci/vale/vale.sh
index e0f385f58..1ea3b422b 100755
--- a/.ci/vale/vale.sh
+++ b/.ci/vale/vale.sh
@@ -13,7 +13,7 @@ set -euo pipefail
# --minAlertLevel=suggestion \
# --config=content/influxdb/cloud-dedicated/.vale.ini
-VALE_VERSION="3.13.1"
+VALE_VERSION="3.14.0"
VALE_MAJOR_MIN=3
if command -v vale &>/dev/null; then
diff --git a/.claude/agents/influxdb1-tech-writer.md b/.claude/agents/influxdb1-tech-writer.md
index 2ec900b83..a65681fed 100644
--- a/.claude/agents/influxdb1-tech-writer.md
+++ b/.claude/agents/influxdb1-tech-writer.md
@@ -61,6 +61,15 @@ You are an expert InfluxDB v1 technical writer with deep knowledge of InfluxData
5. **Apply Standards:** Ensure compliance with style guidelines and documentation conventions
6. **Cross-Reference:** Verify consistency with related documentation and product variants
+## Release Documentation Workflow
+
+**Always create separate PRs for OSS v1 and Enterprise v1 releases.**
+
+- **OSS v1:** Publish immediately when the release tag is available on GitHub (`https://github.com/influxdata/influxdb/releases/tag/v1.x.x`).
+- **Enterprise v1:** Publish only after the release artifact is generally available (GA) in the InfluxData portal. Create the PR as a **draft** until the v1 codeowner signals readiness (e.g., applies a release label).
+- **`data/products.yml`:** Split version bumps per product. The OSS PR bumps `influxdb.latest_patches.v1`; the Enterprise PR bumps `enterprise_influxdb.latest_patches.v1`.
+- **PR template:** Use `.github/pull_request_template/influxdb_v1_release.md` and select the appropriate release type (OSS or Enterprise).
+
## Quality Assurance
- All code examples must be testable and include proper pytest-codeblocks annotations
diff --git a/.claude/commands/prepare-release-notes.md b/.claude/commands/prepare-release-notes.md
index e3e241fd2..c51350493 100644
--- a/.claude/commands/prepare-release-notes.md
+++ b/.claude/commands/prepare-release-notes.md
@@ -222,6 +222,29 @@ influxdb3_core, influxdb3_enterprise, telegraf
/influxdb3/core, /influxdb3/enterprise, /telegraf
```
+## v1 Release Workflow
+
+**InfluxDB v1 releases require separate PRs for OSS and Enterprise.**
+
+1. **OSS PR** — publish immediately when the GitHub release tag is available.
+2. **Enterprise PR** — create as a draft; merge only after the v1 codeowner signals readiness (e.g., applies a release label) and the release artifact is GA in the InfluxData portal.
+
+Each PR should bump only its own product version in `data/products.yml`:
+- OSS: `influxdb > latest_patches > v1`
+- Enterprise: `enterprise_influxdb > latest_patches > v1`
+
+Use the PR template `.github/pull_request_template/influxdb_v1_release.md` and select the appropriate release type.
+
+### Examples for v1
+
+```bash
+# Generate OSS v1 release notes
+docs release-notes v1.12.2 v1.12.3 --repos ~/github/influxdata/influxdb
+
+# Generate Enterprise v1 release notes (separate PR)
+# Use the Enterprise changelog at https://dl.influxdata.com/enterprise/nightlies/master/CHANGELOG.md
+```
+
## Related
- **docs-cli-workflow** skill - When to use CLI tools
diff --git a/.claude/skills/content-editing/SKILL.md b/.claude/skills/content-editing/SKILL.md
index 863b5c101..d34b1bd6b 100644
--- a/.claude/skills/content-editing/SKILL.md
+++ b/.claude/skills/content-editing/SKILL.md
@@ -364,7 +364,7 @@ The documentation MCP server is hosted at `https://influxdb-docs.mcp.kapa.ai`—
Already configured in [`.mcp.json`](/.mcp.json). Two server entries are available:
- **`influxdb-docs`** (API key) — Set `INFLUXDATA_DOCS_KAPA_API_KEY` env var. 60 req/min.
-- **`influxdb-docs-oauth`** (OAuth) — No setup. Authenticates via Google on first use. 40 req/hr, 200 req/day.
+- **`influxdb-docs-oauth`** (OAuth) — No setup. Authenticates via Google or GitHub on first use. 40 req/hr, 200 req/day.
### Available Tool
@@ -534,7 +534,7 @@ touch content/influxdb3/enterprise/path/to/file.md
**Troubleshooting steps:**
- **API key auth** (`influxdb-docs`): Verify `INFLUXDATA_DOCS_KAPA_API_KEY` is set. Rate limit: 60 req/min.
-- **OAuth auth** (`influxdb-docs-oauth`): Sign in with Google on first use. Rate limits: 40 req/hr, 200 req/day.
+- **OAuth auth** (`influxdb-docs-oauth`): Sign in with Google or GitHub on first use. Rate limits: 40 req/hr, 200 req/day.
- Verify your network allows connections to `*.kapa.ai`
- Check if you've exceeded rate limits (wait and retry)
diff --git a/.github/pull_request_template/influxdb_v1_release.md b/.github/pull_request_template/influxdb_v1_release.md
index cc341db77..cbfe0e6c4 100644
--- a/.github/pull_request_template/influxdb_v1_release.md
+++ b/.github/pull_request_template/influxdb_v1_release.md
@@ -1,27 +1,37 @@
## InfluxDB v1 Release Documentation
-**Release Version:** v1.x.x
-**Release Type:** [ ] OSS [ ] Enterprise [ ] Both
+**Release Version:** v1.x.x
+**Release Type:** [ ] OSS [ ] Enterprise
+
+> [!Important]
+> **Always create separate PRs for OSS and Enterprise releases.**
+> OSS can publish immediately when the GitHub release tag is available.
+> Enterprise must wait until the release artifact is GA in the InfluxData portal.
+> Never combine both products in a single release PR.
### Description
Brief description of the release and documentation changes.
+### Pre-merge Gate (Enterprise only)
+- [ ] **Confirm release artifact is GA in the InfluxData portal**
+- [ ] **v1 codeowner has signaled readiness** (e.g., applied a release label)
+
### Release Documentation Checklist
#### Release Notes
- [ ] Generate release notes from changelog
- - [ ] OSS: Use commit messages from GitHub release tag `https://github.com/influxdata/influxdb/releases/tag/v1.x.x`
- - [ ] Enterprise: Use `https://dl.influxdata.com/enterprise/nightlies/master/CHANGELOG.md`
- - [ ] **Note**: For Enterprise releases, include important updates, features, and fixes from the corresponding OSS tag
+ - OSS: Use commit messages from GitHub release tag `https://github.com/influxdata/influxdb/releases/tag/v1.x.x`
+ - Enterprise: Use `https://dl.influxdata.com/enterprise/nightlies/master/CHANGELOG.md`
+ - **Note**: For Enterprise releases, include important updates, features, and fixes from the corresponding OSS tag
- [ ] Update release notes in appropriate location
- - [ ] OSS: `/content/influxdb/v1/about_the_project/releasenotes-changelog.md`
- - [ ] Enterprise: `/content/enterprise_influxdb/v1/about-the-project/release-notes.md`
+ - OSS: `content/influxdb/v1/about_the_project/release-notes.md`
+ - Enterprise: `content/enterprise_influxdb/v1/about-the-project/release-notes.md`
- [ ] Ensure release notes follow documentation formatting standards
#### Version Updates
-- [ ] Update patch version in `/data/products.yml`
- - [ ] OSS: `influxdb > v1 > latest`
- - [ ] Enterprise: `enterprise_influxdb > v1 > latest`
+- [ ] Update patch version in `data/products.yml` (**only for this product**)
+ - OSS: `influxdb > latest_patches > v1`
+ - Enterprise: `enterprise_influxdb > latest_patches > v1`
- [ ] Update version references in documentation
- [ ] Installation guides
- [ ] Docker documentation
@@ -37,8 +47,9 @@ Brief description of the release and documentation changes.
#### Testing
- [ ] Build documentation locally and verify changes render correctly
- [ ] Test all updated links
-- [ ] Run link validation: `yarn test:links content/influxdb/v1/**/*.md`
-- [ ] Run link validation: `yarn test:links content/enterprise_influxdb/v1/**/*.md`
+- [ ] Run link validation for the product being released:
+ - OSS: `yarn test:links content/influxdb/v1/**/*.md`
+ - Enterprise: `yarn test:links content/enterprise_influxdb/v1/**/*.md`
### Related Resources
- DAR Issue: #
@@ -50,6 +61,3 @@ Brief description of the release and documentation changes.
- [ ] Verify documentation is deployed to production
- [ ] Announce in #docs channel
- [ ] Close related DAR issue(s)
-
----
-**Note:** For Enterprise releases, ensure you have access to the Enterprise changelog and coordinate with the release team for timing.
\ No newline at end of file
diff --git a/.github/scripts/detect-preview-pages.js b/.github/scripts/detect-preview-pages.js
index 12e255ac4..76ab1eac9 100644
--- a/.github/scripts/detect-preview-pages.js
+++ b/.github/scripts/detect-preview-pages.js
@@ -35,10 +35,10 @@ if (!/^origin\/[a-zA-Z0-9._\/-]+$/.test(BASE_REF)) {
*/
function getAllChangedFiles() {
try {
- const output = execSync(
- `git diff --name-only ${BASE_REF}...HEAD`,
- { encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] }
- );
+ const output = execSync(`git diff --name-only ${BASE_REF}...HEAD`, {
+ encoding: 'utf-8',
+ stdio: ['pipe', 'pipe', 'pipe'],
+ });
return output.trim().split('\n').filter(Boolean);
} catch (err) {
console.error(`Error detecting changes: ${err.message}`);
@@ -53,11 +53,13 @@ function getAllChangedFiles() {
*/
function categorizeChanges(files) {
return {
- content: files.filter(f => f.startsWith('content/') && f.endsWith('.md')),
- layouts: files.filter(f => f.startsWith('layouts/')),
- assets: files.filter(f => f.startsWith('assets/')),
- data: files.filter(f => f.startsWith('data/')),
- apiDocs: files.filter(f => f.startsWith('api-docs/') || f.startsWith('openapi/')),
+ content: files.filter((f) => f.startsWith('content/') && f.endsWith('.md')),
+ layouts: files.filter((f) => f.startsWith('layouts/')),
+ assets: files.filter((f) => f.startsWith('assets/')),
+ data: files.filter((f) => f.startsWith('data/')),
+ apiDocs: files.filter(
+ (f) => f.startsWith('api-docs/') || f.startsWith('openapi/')
+ ),
};
}
@@ -127,7 +129,7 @@ function main() {
const htmlPaths = mapContentToPublic(expandedContent, 'public');
// Convert HTML paths to URL paths
- pagesToDeploy = Array.from(htmlPaths).map(htmlPath => {
+ pagesToDeploy = Array.from(htmlPaths).map((htmlPath) => {
return '/' + htmlPath.replace('public/', '').replace('/index.html', '/');
});
console.log(` Found ${pagesToDeploy.length} affected pages\n`);
@@ -135,34 +137,53 @@ function main() {
// Strategy 2: Layout/asset changes - parse URLs from PR body
if (hasLayoutChanges) {
- console.log('🎨 Layout/asset changes detected, checking PR description for URLs...');
+ console.log(
+ '🎨 Layout/asset changes detected, checking PR description for URLs...'
+ );
+
+ // Auto-detect home page when the root template changes
+ if (changes.layouts.includes('layouts/index.html')) {
+ pagesToDeploy = [...new Set([...pagesToDeploy, '/'])];
+ console.log(
+ ' 🏠 Home page template (layouts/index.html) changed - auto-adding / to preview pages'
+ );
+ }
+
const prUrls = extractDocsUrls(PR_BODY);
if (prUrls.length > 0) {
console.log(` Found ${prUrls.length} URLs in PR description`);
// Merge with content pages (deduplicate)
pagesToDeploy = [...new Set([...pagesToDeploy, ...prUrls])];
- } else if (changes.content.length === 0) {
- // No content changes AND no URLs specified - need author input
- console.log(' ⚠️ No URLs found in PR description - author input needed');
+ } else if (pagesToDeploy.length === 0) {
+ // No content changes, no auto-detected pages, and no URLs specified - need author input
+ console.log(
+ ' ⚠️ No URLs found in PR description - author input needed'
+ );
setOutput('pages-to-deploy', '[]');
setOutput('has-layout-changes', 'true');
setOutput('needs-author-input', 'true');
- setOutput('change-summary', 'Layout/asset changes detected - please specify pages to preview');
+ setOutput(
+ 'change-summary',
+ 'Layout/asset changes detected - please specify pages to preview'
+ );
return;
}
}
// Apply page limit
if (pagesToDeploy.length > MAX_PAGES) {
- console.log(`⚠️ Limiting preview to ${MAX_PAGES} pages (found ${pagesToDeploy.length})`);
+ console.log(
+ `⚠️ Limiting preview to ${MAX_PAGES} pages (found ${pagesToDeploy.length})`
+ );
pagesToDeploy = pagesToDeploy.slice(0, MAX_PAGES);
}
// Generate summary
- const summary = pagesToDeploy.length > 0
- ? `${pagesToDeploy.length} page(s) will be previewed`
- : 'No pages to preview';
+ const summary =
+ pagesToDeploy.length > 0
+ ? `${pagesToDeploy.length} page(s) will be previewed`
+ : 'No pages to preview';
console.log(`\n✅ ${summary}`);
diff --git a/.github/scripts/parse-pr-urls.js b/.github/scripts/parse-pr-urls.js
index 7e844fe14..58205b3b1 100644
--- a/.github/scripts/parse-pr-urls.js
+++ b/.github/scripts/parse-pr-urls.js
@@ -63,6 +63,9 @@ function isValidUrlPath(path) {
// Must start with /
if (!path.startsWith('/')) return false;
+ // Allow root path (docs home page at /)
+ if (path === '/') return true;
+
// Must start with known product prefix (loaded from products.yml)
const validPrefixes = PRODUCT_NAMESPACES.map((ns) => `/${ns}/`);
@@ -101,7 +104,8 @@ export function extractDocsUrls(text) {
// Pattern 1: Full production URLs
// https://docs.influxdata.com/influxdb3/core/get-started/
- const prodUrlPattern = /https?:\/\/docs\.influxdata\.com(\/[^\s)\]>"']+)/g;
+ // https://docs.influxdata.com/ (home page)
+ const prodUrlPattern = /https?:\/\/docs\.influxdata\.com(\/[^\s)\]>"']*)/g;
let match;
while ((match = prodUrlPattern.exec(text)) !== null) {
const path = normalizeUrlPath(match[1]);
@@ -112,7 +116,8 @@ export function extractDocsUrls(text) {
// Pattern 2: Localhost dev URLs
// http://localhost:1313/influxdb3/core/
- const localUrlPattern = /https?:\/\/localhost:\d+(\/[^\s)\]>"']+)/g;
+ // http://localhost:1313/ (home page)
+ const localUrlPattern = /https?:\/\/localhost:\d+(\/[^\s)\]>"']*)/g;
while ((match = localUrlPattern.exec(text)) !== null) {
const path = normalizeUrlPath(match[1]);
if (isValidUrlPath(path)) {
diff --git a/.github/scripts/resolve-review-urls.js b/.github/scripts/resolve-review-urls.js
index 8869555d7..886679d35 100644
--- a/.github/scripts/resolve-review-urls.js
+++ b/.github/scripts/resolve-review-urls.js
@@ -10,6 +10,7 @@
*/
import { appendFileSync } from 'fs';
+import { execSync } from 'child_process';
import {
getChangedContentFiles,
mapContentToPublic,
@@ -27,11 +28,33 @@ if (!/^origin\/[a-zA-Z0-9._/-]+$/.test(BASE_REF)) {
const changed = getChangedContentFiles(BASE_REF);
const htmlPaths = mapContentToPublic(changed, 'public');
-const urls = Array.from(htmlPaths)
+const contentUrls = Array.from(htmlPaths)
.sort()
.map((p) => '/' + p.replace(/^public\//, '').replace(/\/index\.html$/, '/'))
.slice(0, MAX_PAGES);
+// Check if the home page template changed (layouts/index.html → /)
+let homePageUrls = [];
+try {
+ const homePageChanged = execSync(
+ `git diff --name-only ${BASE_REF}...HEAD -- layouts/index.html`,
+ { encoding: 'utf-8', stdio: ['pipe', 'pipe', 'pipe'] }
+ ).trim();
+ if (homePageChanged) {
+ homePageUrls = ['/'];
+ console.log(
+ 'Home page template (layouts/index.html) changed - adding / to review URLs'
+ );
+ }
+} catch {
+ // Ignore errors - fall back to content-only URLs
+}
+
+const urls = [...new Set([...homePageUrls, ...contentUrls])].slice(
+ 0,
+ MAX_PAGES
+);
+
appendFileSync(GITHUB_OUTPUT, `urls=${JSON.stringify(urls)}\n`);
appendFileSync(GITHUB_OUTPUT, `url-count=${urls.length}\n`);
diff --git a/.github/scripts/test-parse-pr-urls.js b/.github/scripts/test-parse-pr-urls.js
index 6470122ec..36fd98d7c 100644
--- a/.github/scripts/test-parse-pr-urls.js
+++ b/.github/scripts/test-parse-pr-urls.js
@@ -145,7 +145,11 @@ test('Special characters: backticks are delimiters', () => {
// This prevents command substitution injection
const text = '/influxdb3/`whoami`/';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/'], 'Should truncate at backtick delimiter');
+ assertEquals(
+ result,
+ ['/influxdb3/'],
+ 'Should truncate at backtick delimiter'
+ );
});
test('Special characters: single quotes truncate at extraction', () => {
@@ -257,31 +261,51 @@ test('Normalization: removes query string', () => {
test('Normalization: strips wildcard from path', () => {
const text = '/influxdb3/enterprise/*';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/enterprise/'], 'Should strip wildcard character');
+ assertEquals(
+ result,
+ ['/influxdb3/enterprise/'],
+ 'Should strip wildcard character'
+ );
});
test('Normalization: strips wildcard in middle of path', () => {
const text = '/influxdb3/*/admin/';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/admin/'], 'Should strip wildcard from middle of path');
+ assertEquals(
+ result,
+ ['/influxdb3/admin/'],
+ 'Should strip wildcard from middle of path'
+ );
});
test('Normalization: strips multiple wildcards', () => {
const text = '/influxdb3/*/admin/*';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/admin/'], 'Should strip all wildcard characters');
+ assertEquals(
+ result,
+ ['/influxdb3/admin/'],
+ 'Should strip all wildcard characters'
+ );
});
test('Wildcard in markdown-style notation', () => {
const text = '**InfluxDB 3 Enterprise pages** (`/influxdb3/enterprise/*`)';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/enterprise/'], 'Should extract and normalize path with wildcard in backticks');
+ assertEquals(
+ result,
+ ['/influxdb3/enterprise/'],
+ 'Should extract and normalize path with wildcard in backticks'
+ );
});
test('Wildcard in parentheses', () => {
const text = 'Affects pages under (/influxdb3/enterprise/*)';
const result = extractDocsUrls(text);
- assertEquals(result, ['/influxdb3/enterprise/'], 'Should extract and normalize path with wildcard in parentheses');
+ assertEquals(
+ result,
+ ['/influxdb3/enterprise/'],
+ 'Should extract and normalize path with wildcard in parentheses'
+ );
});
// Test deduplication
@@ -360,6 +384,31 @@ test('BASE_REF: rejects without origin/ prefix', () => {
assertEquals(isValid, false, 'Should require origin/ prefix');
});
+// Home page URL support
+test('Home page: production URL https://docs.influxdata.com/', () => {
+ const text = 'Preview: https://docs.influxdata.com/';
+ const result = extractDocsUrls(text);
+ assertEquals(result, ['/'], 'Should extract root path for docs home page');
+});
+
+test('Home page: localhost URL http://localhost:1313/', () => {
+ const text = 'Testing at http://localhost:1313/';
+ const result = extractDocsUrls(text);
+ assertEquals(result, ['/'], 'Should extract root path from localhost URL');
+});
+
+test('Home page: relative root path / in text', () => {
+ // Relative '/' alone is not extractable by the relative pattern (requires product prefix),
+ // but full URLs with / path are supported
+ const text = 'https://docs.influxdata.com/ and /influxdb3/core/';
+ const result = extractDocsUrls(text);
+ assertEquals(
+ result.sort(),
+ ['/', '/influxdb3/core/'].sort(),
+ 'Should extract both root path and product path'
+ );
+});
+
// Print summary
console.log('\n=== Test Summary ===');
console.log(`Total: ${totalTests}`);
diff --git a/.mcp.json b/.mcp.json
index f53854090..f18a0f326 100644
--- a/.mcp.json
+++ b/.mcp.json
@@ -11,7 +11,7 @@
}
},
"influxdb-docs-oauth": {
- "comment": "Hosted InfluxDB documentation search (OAuth). No API key needed--authenticates via Google OAuth on first use. Rate limits: 40 req/hr, 200 req/day.",
+ "comment": "Hosted InfluxDB documentation search (OAuth). No API key needed--authenticates via Google or GitHub OAuth on first use. Rate limits: 40 req/hr, 200 req/day.",
"type": "sse",
"url": "https://influxdb-docs.mcp.kapa.ai"
},
diff --git a/assets/js/code-controls.js b/assets/js/code-controls.js
index 59ca50ec7..d8ce5a9f9 100644
--- a/assets/js/code-controls.js
+++ b/assets/js/code-controls.js
@@ -7,10 +7,11 @@ function initialize() {
var appendHTML = `
-
-
- - Copy
- - Fill window
+
+
+
+
+
`;
@@ -27,12 +28,17 @@ function initialize() {
// Click outside of the code-controls to close them
$(document).click(function () {
- $('.code-controls').removeClass('open');
+ $('.code-controls.open').each(function () {
+ $(this).removeClass('open');
+ $(this).find('.code-controls-toggle').attr('aria-expanded', 'false');
+ });
});
// Click the code controls toggle to open code controls
$('.code-controls-toggle').click(function () {
- $(this).parent('.code-controls').toggleClass('open');
+ var $controls = $(this).parent('.code-controls');
+ var isOpen = $controls.toggleClass('open').hasClass('open');
+ $(this).attr('aria-expanded', String(isOpen));
});
// Stop event propagation for clicks inside of the code-controls div
@@ -235,6 +241,34 @@ function initialize() {
return info;
}
+ ////////////////////////////////// ASK AI ////////////////////////////////////
+
+ // Build a query from the code block and open Kapa via the ask-ai-open contract
+ $('.ask-ai-code').click(function () {
+ var codeElement = $(this)
+ .closest('.code-controls')
+ .prevAll('pre:has(code)')[0];
+ if (!codeElement) return;
+
+ var code = codeElement.innerText.trim();
+ // Use the data-ask-ai-query attribute if the template provided one,
+ // otherwise build a generic query from the code content
+ var query =
+ $(codeElement).attr('data-ask-ai-query') ||
+ 'Explain this code:\n```\n' + code.substring(0, 500) + '\n```';
+
+ // Delegate to the global ask-ai-open handler by synthesizing a click.
+ // Use native .click() instead of jQuery .trigger() so the event
+ // reaches the native document.addEventListener in ask-ai-trigger.js.
+ // No href — prevents scroll-to-top when the native click fires.
+ var triggerEl = document.createElement('a');
+ triggerEl.className = 'ask-ai-open';
+ triggerEl.dataset.query = query;
+ document.body.appendChild(triggerEl);
+ triggerEl.click();
+ triggerEl.remove();
+ });
+
/////////////////////////////// FULL WINDOW CODE ///////////////////////////////
/*
diff --git a/assets/styles/layouts/_code-controls.scss b/assets/styles/layouts/_code-controls.scss
index 36272a257..68353bed5 100644
--- a/assets/styles/layouts/_code-controls.scss
+++ b/assets/styles/layouts/_code-controls.scss
@@ -16,10 +16,12 @@
opacity: .5;
transition: opacity .2s;
border-radius: $radius;
+ border: none;
+ background: none;
line-height: 0;
- cursor: pointer;
+ cursor: pointer;
- &:hover {
+ &:hover, &:focus-visible {
opacity: 1;
background-color: rgba($article-text, .1);
backdrop-filter: blur(15px);
@@ -35,21 +37,26 @@
backdrop-filter: blur(15px);
display: none;
- li {
+ button {
+ display: block;
+ width: 100%;
+ text-align: left;
margin: 0;
padding: .4rem .5rem .6rem;
+ border: none;
+ background: none;
border-radius: $radius;
color: $article-bold;
font-size: .87rem;
line-height: 0;
- cursor: pointer;
+ cursor: pointer;
- &:hover {background-color: rgba($article-text, .07)}
-
- &.copy-code, &.fullscreen-toggle {
- .cf-icon {margin-right: .35rem;}
+ &:hover, &:focus-visible {
+ background-color: rgba($article-text, .07);
}
+ .cf-icon {margin-right: .35rem;}
+
&.copy-code {
.message {
text-shadow: 0px 0px 8px rgba($article-text, 0);
@@ -69,6 +76,8 @@
}
}
}
+
+ li {margin: 0;}
}
&.open {
diff --git a/content/influxdb/v1/about_the_project/release-notes.md b/content/influxdb/v1/about_the_project/release-notes.md
index 986ccfa81..b60c0aaac 100644
--- a/content/influxdb/v1/about_the_project/release-notes.md
+++ b/content/influxdb/v1/about_the_project/release-notes.md
@@ -14,6 +14,50 @@ alt_links:
---
+## v1.12.3 {date="2026-01-12"}
+
+### Features
+
+- Add [`https-insecure-certificate` configuration option](/influxdb/v1/administration/config/#https-insecure-certificate)
+ to skip file permission checking for TLS certificate and private key files.
+- Add [`advanced-expiration` TLS configuration option](/influxdb/v1/administration/config/#advanced-expiration)
+ to configure how far in advance to log warnings about TLS certificate expiration.
+- Add TLS certificate reloading on `SIGHUP`.
+- Add `config` and `cq` (continuous query) diagnostics to the `/debug/vars` endpoint.
+- Improve dropped point logging.
+- Show user when displaying or logging queries.
+- Add `time_format` parameter for the HTTP API.
+- Use dynamic logging levels (`zap.AtomicLevel`).
+- Report user query bytes.
+
+### Bug fixes
+
+- Fix `FUTURE LIMIT` and `PAST LIMIT`
+ [clause order](/influxdb/v1/query_language/manage-database/#future-limit)
+ in retention policy statements.
+- Add locking in `ClearBadShardList`.
+- Stop noisy logging about phantom shards that do not belong to a node.
+- Resolve `RLock()` leakage in `Store.DeleteSeries()`.
+- Fix condition check for optimization of array cursor (tsm1).
+- Run `init.sh` `buildtsi` as `influxdb` user.
+- Reduce unnecessary purger operations and logging.
+- Sort files for adjacency testing.
+- Fix operator in host detection (systemd).
+- Use correct path in open WAL error message.
+- Handle nested low-level files in compaction.
+- Correct error logic for writing empty index files.
+- Reduce lock contention and races in purger.
+- Fix bug with authorizer leakage in `SHOW QUERIES`.
+- Rename compact throughput logging keys.
+- Fix `https-insecure-certificate` not handled properly in httpd.
+- Prevent level regression when compacting mixed-level TSM files.
+
+### Other
+
+- Update Go to 1.24.13.
+
+---
+
## v1.12.2 {date="2025-09-15"}
### Features
@@ -340,7 +384,7 @@ reporting an earlier error.
- Use latest version of InfluxQL package.
- Add `-lponly` flag to [`influx export`](/influxdb/v2/reference/cli/influx/export/) sub-command.
-- Add the ability to [track number of values](/platform/monitoring/influxdata-platform/tools/measurements-internal/#valueswrittenok) written via the [/debug/vars HTTP endpoint](/influxdb/v1/tools/api/#debug-vars-http-endpoint).
+- Add the ability to [track number of values](/platform/monitoring/influxdata-platform/tools/measurements-internal/#valueswrittenok) written via the [`/debug/vars` HTTP endpoint](/influxdb/v1/tools/api/#debugvars-http-endpoint).
- Update UUID library from [github.com/satori/go.uuid](https://github.com/satori/go.uuid) to [github.com/gofrs/uuid](https://github.com/gofrs/uuid).
### Bug fixes
@@ -637,7 +681,7 @@ Support for the Flux language and queries has been added in this release. To beg
- Enable Flux using the new configuration setting
[`[http] flux-enabled = true`](/influxdb/v1/administration/config/#flux-enabled).
-- Use the new [`influx -type=flux`](/influxdb/v1/tools/shell/#type) option to enable the Flux REPL shell for creating Flux queries.
+- Use the new [`influx -type=flux`](/influxdb/v1/tools/influx-cli/) option to enable the Flux REPL shell for creating Flux queries.
- Read about Flux and the Flux language, enabling Flux, or jump into the getting started and other guides.
#### Time Series Index (TSI) query performance and throughputs improvements
diff --git a/content/influxdb/v1/administration/config.md b/content/influxdb/v1/administration/config.md
index 3930a5395..196d0cd3a 100644
--- a/content/influxdb/v1/administration/config.md
+++ b/content/influxdb/v1/administration/config.md
@@ -933,7 +933,7 @@ effect if [`auth-enabled`](#auth-enabled) is set to `false`.
User-supplied [HTTP response headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers).
Configure this section to return
-[security headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers#Security)
+[security headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers#security)
such as `X-Frame-Options` or `Content Security Policy` where needed.
Example:
@@ -964,9 +964,16 @@ specified, the `httpd` service will try to load the private key from the
`https-certificate` file. If a separate `https-private-key` file is specified,
the `httpd` service will load the private key from the `https-private-key` file.
-**Default**: `""`
+**Default**: `""`
**Environment variable**: `INFLUXDB_HTTP_HTTPS_PRIVATE_KEY`
+#### https-insecure-certificate {metadata="v1.12.3+"}
+
+Skips file permission checking for `https-certificate` and `https-private-key` when `true`.
+
+**Default**: `false`
+**Environment variable**: `INFLUXDB_HTTP_HTTPS_INSECURE_CERTIFICATE`
+
#### shared-secret
The shared secret used to validate public API requests using JWT tokens.
@@ -1638,5 +1645,12 @@ include: `tls1.0`, `tls1.1`, `tls1.2`, and `tls1.3`. If not specified,
In this example, `tls1.3` specifies the maximum version as TLS 1.3, which is
consistent with the behavior of previous InfluxDB releases.
-**Default**: `tls1.3`
+**Default**: `tls1.3`
**Environment variable**: `INFLUXDB_TLS_MAX_VERSION`
+
+#### advanced-expiration {metadata="v1.12.3+"}
+
+Sets how far in advance to log warnings about TLS certificate expiration.
+
+**Default**: `5d`
+**Environment variable**: `INFLUXDB_TLS_ADVANCED_EXPIRATION`
diff --git a/content/influxdb/v1/query_language/manage-database.md b/content/influxdb/v1/query_language/manage-database.md
index 4db5d236c..62e5e4285 100644
--- a/content/influxdb/v1/query_language/manage-database.md
+++ b/content/influxdb/v1/query_language/manage-database.md
@@ -62,15 +62,15 @@ Creates a new database.
#### Syntax
```sql
-CREATE DATABASE [WITH [DURATION ] [REPLICATION ] [SHARD DURATION ] [PAST LIMIT ] [FUTURE LIMIT ] [NAME ]]
+CREATE DATABASE [WITH [DURATION ] [REPLICATION ] [SHARD DURATION ] [FUTURE LIMIT ] [PAST LIMIT ] [NAME ]]
```
#### Description of syntax
`CREATE DATABASE` requires a database [name](/influxdb/v1/troubleshooting/frequently-asked-questions/#what-words-and-characters-should-i-avoid-when-writing-data-to-influxdb).
-The `WITH`, `DURATION`, `REPLICATION`, `SHARD DURATION`, `PAST LIMIT`,
-`FUTURE LIMIT`, and `NAME` clauses are optional and create a single
+The `WITH`, `DURATION`, `REPLICATION`, `SHARD DURATION`, `FUTURE LIMIT`,
+`PAST LIMIT`, and `NAME` clauses are optional and create a single
[retention policy](/influxdb/v1/concepts/glossary/#retention-policy-rp)
associated with the created database.
If you do not specify one of the clauses after `WITH`, the relevant behavior
@@ -259,7 +259,7 @@ You may disable its auto-creation in the [configuration file](/influxdb/v1/admin
#### Syntax
```sql
-CREATE RETENTION POLICY ON DURATION REPLICATION [SHARD DURATION ] [PAST LIMIT ] [FUTURE LIMIT ] [DEFAULT]
+CREATE RETENTION POLICY ON DURATION REPLICATION [SHARD DURATION ] [FUTURE LIMIT ] [PAST LIMIT ] [DEFAULT]
```
#### Description of syntax
@@ -307,6 +307,17 @@ See
[Shard group duration management](/influxdb/v1/concepts/schema_and_data_layout/#shard-group-duration-management)
for recommended configurations.
+##### `FUTURE LIMIT` {metadata="v1.12.0+"}
+
+The `FUTURE LIMIT` clause defines a time boundary after and relative to _now_
+in which points written to the retention policy are accepted. If a point has a
+timestamp after the specified boundary, the point is rejected and the write
+request returns a partial write error.
+
+For example, if a write request tries to write data to a retention policy with a
+`FUTURE LIMIT 6h` and there are points in the request with future timestamps
+greater than 6 hours from now, those points are rejected.
+
##### `PAST LIMIT` {metadata="v1.12.0+"}
The `PAST LIMIT` clause defines a time boundary before and relative to _now_
@@ -318,25 +329,6 @@ For example, if a write request tries to write data to a retention policy with a
`PAST LIMIT 6h` and there are points in the request with timestamps older than
6 hours, those points are rejected.
-> [!Important]
-> `PAST LIMIT` cannot be changed after it is set.
-> This will be fixed in a future release.
-
-##### `FUTURE LIMIT` {metadata="v1.12.0+"}
-
-The `FUTURE LIMIT` clause defines a time boundary after and relative to _now_
-in which points written to the retention policy are accepted. If a point has a
-timestamp after the specified boundary, the point is rejected and the write
-request returns a partial write error.
-
-For example, if a write request tries to write data to a retention policy with a
-`FUTURE LIMIT 6h` and there are points in the request with future timestamps
-greater than 6 hours from now, those points are rejected.
-
-> [!Important]
-> `FUTURE LIMIT` cannot be changed after it is set.
-> This will be fixed in a future release.
-
##### `DEFAULT`
Sets the new retention policy as the default retention policy for the database.
@@ -372,14 +364,17 @@ See [Create a database with CREATE DATABASE](/influxdb/v1/query_language/manage-
### Modify retention policies with ALTER RETENTION POLICY
-The `ALTER RETENTION POLICY` query takes the following form, where you must declare at least one of the retention policy attributes `DURATION`, `REPLICATION`, `SHARD DURATION`, or `DEFAULT`:
+The `ALTER RETENTION POLICY` query takes the following form, where you must declare at least one of the retention policy attributes `DURATION`, `REPLICATION`, `SHARD DURATION`, `FUTURE LIMIT`, `PAST LIMIT`, or `DEFAULT`:
```sql
-ALTER RETENTION POLICY ON [DURATION ] [REPLICATION ] [SHARD DURATION ] [DEFAULT]
+ALTER RETENTION POLICY ON [DURATION ] [REPLICATION ] [SHARD DURATION ] [FUTURE LIMIT ] [PAST LIMIT ] [DEFAULT]
```
{{% warn %}} Replication factors do not serve a purpose with single node instances.
{{% /warn %}}
+For information about the `FUTURE LIMIT` and `PAST LIMIT` clauses, see
+[CREATE RETENTION POLICY](#create-retention-policies-with-create-retention-policy).
+
First, create the retention policy `what_is_time` with a `DURATION` of two days:
```sql
> CREATE RETENTION POLICY "what_is_time" ON "NOAA_water_database" DURATION 2d REPLICATION 1
diff --git a/content/influxdb/v1/query_language/spec.md b/content/influxdb/v1/query_language/spec.md
index 3805d558f..b7526ee07 100644
--- a/content/influxdb/v1/query_language/spec.md
+++ b/content/influxdb/v1/query_language/spec.md
@@ -1,6 +1,6 @@
---
title: Influx Query Language (InfluxQL) reference
-description: List of resources for Influx Query Language (InfluxQL).
+description: InfluxQL is a SQL-like query language for interacting with InfluxDB and providing features specific to storing and analyzing time series data.
menu:
influxdb_v1:
name: InfluxQL reference
@@ -8,38 +8,32 @@ menu:
parent: InfluxQL
aliases:
- /influxdb/v2/query_language/spec/
+related:
+ - /influxdb/v1/query_language/explore-data/
+ - /influxdb/v1/query_language/explore-schema/
+ - /influxdb/v1/query_language/manage-database/
---
-## Introduction
+InfluxQL is a SQL-like query language for interacting with InfluxDB
+and providing features specific to storing and analyzing time series data.
-Find Influx Query Language (InfluxQL) definitions and details, including:
-
-- [Notation](/influxdb/v1/query_language/spec/#notation)
-- [Query representation](/influxdb/v1/query_language/spec/#query-representation)
-- [Identifiers](/influxdb/v1/query_language/spec/#identifiers)
-- [Keywords](/influxdb/v1/query_language/spec/#keywords)
-- [Literals](/influxdb/v1/query_language/spec/#literals)
-- [Queries](/influxdb/v1/query_language/spec/#queries)
-- [Statements](/influxdb/v1/query_language/spec/#statements)
-- [Clauses](/influxdb/v1/query_language/spec/#clauses)
-- [Expressions](/influxdb/v1/query_language/spec/#expressions)
-- [Other](/influxdb/v1/query_language/spec/#other)
-- [Query engine internals](/influxdb/v1/query_language/spec/#query-engine-internals)
-
-To learn more about InfluxQL, browse the following topics:
-
-- [Explore your data with InfluxQL](/influxdb/v1/query_language/explore-data/)
-- [Explore your schema with InfluxQL](/influxdb/v1/query_language/explore-schema/)
-- [Database management](/influxdb/v1/query_language/manage-database/)
-- [Authentication and authorization](/influxdb/v1/administration/authentication_and_authorization/).
-
-InfluxQL is a SQL-like query language for interacting with InfluxDB and providing features specific to storing and analyzing time series data.
+- [Notation](#notation)
+- [Query representation](#query-representation)
+- [Identifiers](#identifiers)
+- [Keywords](#keywords)
+- [Literals](#literals)
+- [Queries](#queries)
+- [Statements](#statements)
+- [Clauses](#clauses)
+- [Expressions](#expressions)
+- [Comments](#comments)
+- [Other](#other)
+- [Query engine internals](#query-engine-internals)
## Notation
The syntax is specified using Extended Backus-Naur Form ("EBNF").
-EBNF is the same notation used in the [Go](http://golang.org) programming language specification, which can be found [here](https://golang.org/ref/spec).
-Not so coincidentally, InfluxDB is written in Go.
+EBNF is the same notation used in the [Go programming language specification](https://golang.org/ref/spec).
```
Production = production_name "=" [ Expression ] "." .
@@ -91,7 +85,7 @@ The rules:
- double quoted identifiers can contain any unicode character other than a new line
- double quoted identifiers can contain escaped `"` characters (i.e., `\"`)
-- double quoted identifiers can contain InfluxQL [keywords](/influxdb/v1/query_language/spec/#keywords)
+- double quoted identifiers can contain InfluxQL [keywords](#keywords)
- unquoted identifiers must start with an upper or lowercase ASCII character or "_"
- unquoted identifiers may contain only ASCII letters, decimal digits, and "_"
@@ -129,7 +123,7 @@ SUBSCRIPTIONS TAG TO USER USERS VALUES
WHERE WITH WRITE
```
-If you use an InfluxQL keywords as an
+If you use an InfluxQL keyword as an
[identifier](/influxdb/v1/concepts/glossary/#identifier) you will need to
double quote that identifier in every query.
@@ -145,7 +139,7 @@ In those cases, `time` does not require double quotes in queries.
`time` cannot be a [field key](/influxdb/v1/concepts/glossary/#field-key) or
[tag key](/influxdb/v1/concepts/glossary/#tag-key);
InfluxDB rejects writes with `time` as a field key or tag key and returns an error.
-See [Frequently Asked Questions](/influxdb/v1/troubleshooting/frequently-asked-questions/#time) for more information.
+For more information, see [Frequently Asked Questions](/influxdb/v1/troubleshooting/frequently-asked-questions/#time).
## Literals
@@ -229,19 +223,22 @@ regex_lit = "/" { unicode_char } "/" .
`=~` matches against
`!~` doesn't match against
+
+InfluxQL supports using regular expressions when specifying:
+
+- [field keys](/influxdb/v1/concepts/glossary/#field-key) and [tag keys](/influxdb/v1/concepts/glossary/#tag-key) in the [`SELECT` clause](/influxdb/v1/query_language/explore-data/#the-basic-select-statement)
+- [measurements](/influxdb/v1/concepts/glossary/#measurement) in the [`FROM` clause](/influxdb/v1/query_language/explore-data/#the-basic-select-statement)
+- [tag values](/influxdb/v1/concepts/glossary/#tag-value) and string [field values](/influxdb/v1/concepts/glossary/#field-value) in the [`WHERE` clause](/influxdb/v1/query_language/explore-data/#the-where-clause).
+- [tag keys](/influxdb/v1/concepts/glossary/#tag-key) in the [`GROUP BY` clause](/influxdb/v1/query_language/explore-data/#group-by-tags)
+
> [!Note]
-> InfluxQL supports using regular expressions when specifying:
+> #### Regular expressions and non-string field values
>
-> * [field keys](/influxdb/v1/concepts/glossary/#field-key) and [tag keys](/influxdb/v1/concepts/glossary/#tag-key) in the [`SELECT` clause](/influxdb/v1/query_language/explore-data/#the-basic-select-statement)
-> * [measurements](/influxdb/v1/concepts/glossary/#measurement) in the [`FROM` clause](/influxdb/v1/query_language/explore-data/#the-basic-select-statement)
-> * [tag values](/influxdb/v1/concepts/glossary/#tag-value) and string [field values](/influxdb/v1/concepts/glossary/#field-value) in the [`WHERE` clause](/influxdb/v1/query_language/explore-data/#the-where-clause).
-> * [tag keys](/influxdb/v1/concepts/glossary/#tag-key) in the [`GROUP BY` clause](/influxdb/v1/query_language/explore-data/#group-by-tags)
->
->Currently, InfluxQL does not support using regular expressions to match
->non-string field values in the
->`WHERE` clause,
->[databases](/influxdb/v1/concepts/glossary/#database), and
->[retention polices](/influxdb/v1/concepts/glossary/#retention-policy-rp).
+> Currently, InfluxQL does not support using regular expressions to match
+> non-string field values in the
+> `WHERE` clause,
+> [databases](/influxdb/v1/concepts/glossary/#database), and
+> [retention policies](/influxdb/v1/concepts/glossary/#retention-policy-rp).
## Queries
@@ -306,6 +303,8 @@ alter_retention_policy_stmt = "ALTER RETENTION POLICY" policy_name on_clause
retention_policy_option
[ retention_policy_option ]
[ retention_policy_option ]
+ [ retention_policy_option ]
+ [ retention_policy_option ]
[ retention_policy_option ] .
```
@@ -318,6 +317,9 @@ ALTER RETENTION POLICY "1h.cpu" ON "mydb" DEFAULT
-- Change duration and replication factor.
-- REPLICATION (replication factor) not valid for OSS instances.
ALTER RETENTION POLICY "policy1" ON "somedb" DURATION 1h REPLICATION 4
+
+-- Change future and past limits.
+ALTER RETENTION POLICY "policy1" ON "somedb" FUTURE LIMIT 6h PAST LIMIT 6h
```
### CREATE CONTINUOUS QUERY
@@ -378,12 +380,15 @@ create_database_stmt = "CREATE DATABASE" db_name
[ retention_policy_duration ]
[ retention_policy_replication ]
[ retention_policy_shard_group_duration ]
- [ retention_past_limit ]
[ retention_future_limit ]
+ [ retention_past_limit ]
[ retention_policy_name ]
] .
```
+> [!Note]
+> When using both `FUTURE LIMIT` and `PAST LIMIT` clauses, `FUTURE LIMIT` must appear before `PAST LIMIT`.
+
> [!Warning]
> Replication factors do not serve a purpose with single node instances.
@@ -402,8 +407,8 @@ CREATE DATABASE "bar" WITH DURATION 1d REPLICATION 1 SHARD DURATION 30m NAME "my
CREATE DATABASE "mydb" WITH NAME "myrp"
-- Create a database called bar with a new retention policy named "myrp", and
--- specify the duration, past and future limits, and name of that retention policy
-CREATE DATABASE "bar" WITH DURATION 1d PAST LIMIT 6h FUTURE LIMIT 6h NAME "myrp"
+-- specify the duration, future and past limits, and name of that retention policy
+CREATE DATABASE "bar" WITH DURATION 1d FUTURE LIMIT 6h PAST LIMIT 6h NAME "myrp"
```
### CREATE RETENTION POLICY
@@ -413,11 +418,14 @@ create_retention_policy_stmt = "CREATE RETENTION POLICY" policy_name on_clause
retention_policy_duration
retention_policy_replication
[ retention_policy_shard_group_duration ]
- [ retention_past_limit ]
[ retention_future_limit ]
+ [ retention_past_limit ]
[ "DEFAULT" ] .
```
+> [!Note]
+> When using both `FUTURE LIMIT` and `PAST LIMIT` clauses, `FUTURE LIMIT` must appear before `PAST LIMIT`.
+
> [!Warning]
> Replication factors do not serve a purpose with single node instances.
@@ -433,8 +441,8 @@ CREATE RETENTION POLICY "10m.events" ON "somedb" DURATION 60m REPLICATION 2 DEFA
-- Create a retention policy and specify the shard group duration.
CREATE RETENTION POLICY "10m.events" ON "somedb" DURATION 60m REPLICATION 2 SHARD DURATION 30m
--- Create a retention policy and specify past and future limits.
-CREATE RETENTION POLICY "10m.events" ON "somedb" DURATION 12h PAST LIMIT 6h FUTURE LIMIT 6h
+-- Create a retention policy and specify future and past limits.
+CREATE RETENTION POLICY "10m.events" ON "somedb" DURATION 12h FUTURE LIMIT 6h PAST LIMIT 6h
```
### CREATE SUBSCRIPTION
@@ -629,7 +637,7 @@ SIZE OF BLOCKS: 931
### EXPLAIN ANALYZE
-Executes the specified SELECT statement and returns data on the query performance and storage during runtime, visualized as a tree. Use this statement to analyze query performance and storage, including [execution time](#execution-time) and [planning time](#planning-time), and the [iterator type](#iterator-type) and [cursor type](#cursor-type).
+Executes the specified SELECT statement and returns data on the query performance and storage during runtime, visualized as a tree. Use this statement to analyze query performance and storage, including [execution time](#execution_time) and [planning time](#planning_time), and the [iterator type](#iterator-type) and [cursor type](#cursor-type).
For example, executing the following statement:
@@ -725,7 +733,8 @@ For more information about storage blocks, see [TSM files](/influxdb/v1/concepts
### GRANT
-> **NOTE:** Users can be granted privileges on databases that do not yet exist.
+> [!Note]
+> Users can be granted privileges on databases that do not yet exist.
```
grant_stmt = "GRANT" privilege [ on_clause ] to_clause .
@@ -743,20 +752,17 @@ GRANT READ ON "mydb" TO "jdoe"
### KILL QUERY
-Stop currently-running query.
+Stop a currently-running query.
+
+```sql
+KILL QUERY
+```
```
kill_query_statement = "KILL QUERY" query_id .
```
-Where `query_id` is the query ID, displayed in the [`SHOW QUERIES`](/influxdb/v1/troubleshooting/query_management/#list-currently-running-queries-with-show-queries) output as `qid`.
-
-> ***InfluxDB Enterprise clusters:*** To kill queries on a cluster, you need to specify the query ID (qid) and the TCP host (for example, `myhost:8088`),
-> available in the `SHOW QUERIES` output.
->
-> ```sql
-KILL QUERY ON ""
-```
+Replace `query_id` with your query ID from [`SHOW QUERIES`](/influxdb/v1/troubleshooting/query_management/#list-currently-running-queries-with-show-queries), output as `qid`.
#### Examples
@@ -765,11 +771,6 @@ KILL QUERY ON ""
KILL QUERY 36
```
-```sql
--- kill query on InfluxDB Enterprise cluster
-KILL QUERY 53 ON "myhost:8088"
-```
-
### REVOKE
```sql
@@ -912,7 +913,7 @@ show_grants_stmt = "SHOW GRANTS FOR" user_name .
SHOW GRANTS FOR "jdoe"
```
-#### SHOW MEASUREMENT CARDINALITY
+### SHOW MEASUREMENT CARDINALITY
Estimates or counts exactly the cardinality of the measurement set for the current database unless a database is specified using the `ON ` option.
@@ -999,10 +1000,11 @@ Estimates or counts exactly the cardinality of the series for the current databa
[Series cardinality](/influxdb/v1/concepts/glossary/#series-cardinality) is the major factor that affects RAM requirements. For more information, see:
-- [When do I need more RAM?](/influxdb/v1/guides/hardware_sizing/#when-do-i-need-more-ram) in [Hardware Sizing Guidelines](/influxdb/v1/guides/hardware_sizing/)
+- [Hardware Sizing Guidelines](/influxdb/v1/guides/hardware_sizing/)
- [Don't have too many series](/influxdb/v1/concepts/schema_and_data_layout/#avoid-too-many-series)
-> **Note:** `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
+> [!Note]
+> `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
> When using these query clauses, the query falls back to an exact count.
> Filtering by `time` is not supported in the `WHERE` clause.
@@ -1069,26 +1071,18 @@ id database retention_policy shard_group start_time end_time
Returns detailed statistics on available components of an InfluxDB node and available (enabled) components.
+Statistics returned by `SHOW STATS` are stored in memory and reset to zero when the node is restarted,
+but `SHOW STATS` is triggered every 10 seconds to populate the `_internal` database.
+
+The `SHOW STATS` command does not list index memory usage --
+use the [`SHOW STATS FOR 'indexes'`](#show-stats-for-indexes) command.
+
For more information on using the `SHOW STATS` command, see [Using the SHOW STATS command to monitor InfluxDB](/platform/monitoring/tools/show-stats/).
```
show_stats_stmt = "SHOW STATS [ FOR '' | 'indexes' ]"
```
-#### `SHOW STATS`
-
-- The `SHOW STATS` command does not list index memory usage -- use the [`SHOW STATS FOR 'indexes'`](#show-stats-for-indexes) command.
-- Statistics returned by `SHOW STATS` are stored in memory and reset to zero when the node is restarted, but `SHOW STATS` is triggered every 10 seconds to populate the `_internal` database.
-
-#### `SHOW STATS FOR `
-
-- For the specified component (\), the command returns available statistics.
-- For the `runtime` component, the command returns an overview of memory usage by the InfluxDB system, using the [Go runtime](https://golang.org/pkg/runtime/) package.
-
-#### `SHOW STATS FOR 'indexes'`
-
-- Returns an estimate of memory use of all indexes. Index memory use is not reported with `SHOW STATS` because it is a potentially expensive operation.
-
#### Example
```sql
@@ -1098,7 +1092,6 @@ name: runtime
Alloc Frees HeapAlloc HeapIdle HeapInUse HeapObjects HeapReleased HeapSys Lookups Mallocs NumGC NumGoroutine PauseTotalNs Sys TotalAlloc
4136056 6684537 4136056 34586624 5816320 49412 0 40402944 110 6733949 83 44 36083006 46692600 439945704
-
name: graphite
tags: proto=tcp
batches_tx bytes_rx connections_active connections_handled points_rx points_tx
@@ -1106,6 +1099,17 @@ batches_tx bytes_rx connections_active connections_handled
159 3999750 0 1 158110 158110
```
+### SHOW STATS FOR
+
+For the specified component (\), the command returns available statistics.
+For the `runtime` component, the command returns an overview of memory usage by the InfluxDB system,
+using the [Go runtime](https://golang.org/pkg/runtime/) package.
+
+### SHOW STATS FOR 'indexes'
+
+Returns an estimate of memory use of all indexes.
+Index memory use is not reported with `SHOW STATS` because it is a potentially expensive operation.
+
### SHOW SUBSCRIPTIONS
```
@@ -1118,11 +1122,12 @@ show_subscriptions_stmt = "SHOW SUBSCRIPTIONS" .
SHOW SUBSCRIPTIONS
```
-#### SHOW TAG KEY CARDINALITY
+### SHOW TAG KEY CARDINALITY
Estimates or counts exactly the cardinality of tag key set on the current database unless a database is specified using the `ON ` option.
-> **Note:** `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
+> [!Note]
+> `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
> When using these query clauses, the query falls back to an exact count.
> Filtering by `time` is only supported when TSI (Time Series Index) is enabled and `time` is not supported in the `WHERE` clause.
@@ -1190,11 +1195,12 @@ SHOW TAG VALUES WITH KEY !~ /.*c.*/
SHOW TAG VALUES FROM "cpu" WITH KEY IN ("region", "host") WHERE "service" = 'redis'
```
-#### SHOW TAG VALUES CARDINALITY
+### SHOW TAG VALUES CARDINALITY
Estimates or counts exactly the cardinality of tag key values for the specified tag key on the current database unless a database is specified using the `ON ` option.
-> **Note:** `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
+> [!Note]
+> `ON `, `FROM `, `WITH KEY = `, `WHERE `, `GROUP BY `, and `LIMIT/OFFSET` clauses are optional.
> When using these query clauses, the query falls back to an exact count.
> Filtering by `time` is only supported when TSI (Time Series Index) is enabled.
@@ -1274,6 +1280,15 @@ unary_expr = "(" expr ")" | var_ref | time_lit | string_lit | int_lit |
float_lit | bool_lit | duration_lit | regex_lit .
```
+## Comments
+
+Use comments with InfluxQL statements to describe your queries.
+
+- A single line comment begins with two hyphens (`--`) and ends where InfluxDB detects a line break.
+ This comment type cannot span several lines.
+- A multi-line comment begins with `/*` and ends with `*/`. This comment type can span several lines.
+ Multi-line comments do not support nested multi-line comments.
+
## Other
```
@@ -1321,6 +1336,8 @@ retention_policy = identifier .
retention_policy_option = retention_policy_duration |
retention_policy_replication |
retention_policy_shard_group_duration |
+ retention_future_limit |
+ retention_past_limit |
"DEFAULT" .
retention_policy_duration = "DURATION" duration_lit .
@@ -1329,6 +1346,10 @@ retention_policy_replication = "REPLICATION" int_lit .
retention_policy_shard_group_duration = "SHARD DURATION" duration_lit .
+retention_future_limit = "FUTURE LIMIT" duration_lit .
+
+retention_past_limit = "PAST LIMIT" duration_lit .
+
retention_policy_name = "NAME" identifier .
series_id = int_lit .
@@ -1350,15 +1371,6 @@ user_name = identifier .
var_ref = measurement .
```
-### Comments
-
-Use comments with InfluxQL statements to describe your queries.
-
-- A single line comment begins with two hyphens (`--`) and ends where InfluxDB detects a line break.
- This comment type cannot span several lines.
-- A multi-line comment begins with `/*` and ends with `*/`. This comment type can span several lines.
- Multi-line comments do not support nested multi-line comments.
-
## Query Engine Internals
Once you understand the language itself, it's important to know how these
@@ -1458,7 +1470,7 @@ iterator.
### Built-in iterators
-There are many helper iterators that let us build queries:
+{{% product-name %}} provides many helper iterators for building queries:
- Merge Iterator - This iterator combines one or more iterators into a single
new iterator of the same type. This iterator guarantees that all points
diff --git a/content/shared/influxdb3-admin/mcp-server-docs-only.md b/content/shared/influxdb3-admin/mcp-server-docs-only.md
index f92a780f7..60ffaf7f1 100644
--- a/content/shared/influxdb3-admin/mcp-server-docs-only.md
+++ b/content/shared/influxdb3-admin/mcp-server-docs-only.md
@@ -22,7 +22,7 @@ The documentation MCP server is a hosted service—you don't need to install or
Add the server URL to your AI assistant's MCP configuration.
> [!Note]
-> On first use, you'll be prompted to sign in with Google.
+> On first use, you'll be prompted to sign in with a Google or GitHub account.
> This authentication is used only for rate limiting—no personal data is collected.
**MCP server URL:**
@@ -168,23 +168,26 @@ The InfluxDB documentation search tools will be available in your OpenCode sessi
## Authentication and rate limits
-When you connect to the documentation MCP server for the first time, a Google sign-in
-window opens to complete an OAuth/OpenID Connect login.
+When you connect to the documentation MCP server for the first time, a sign-in
+window opens where you can choose to authenticate with a **Google** or **GitHub** account.
-The hosted MCP server:
+The hosted MCP server uses your account only to generate a stable, opaque user ID
+for rate limiting—no personal data is collected:
-- Requests only the `openid` scope from Google
-- Receives an ID token (JWT) containing a stable, opaque user ID
-- Does not request `email` or `profile` scopes—your name, email address, and other
- personal data are not collected
+- **Google**: Requests only the `openid` scope. Does not request `email` or `profile`
+ scopes—your name, email address, and other personal data are not collected.
+- **GitHub**: Requests no OAuth scopes. With no scopes requested, GitHub grants
+ read-only access to public profile information only. The server does not access
+ repositories, organizations, email addresses, or other GitHub data.
-The anonymous Google ID enforces per-user rate limits to prevent abuse:
+The anonymous user ID enforces per-user rate limits to prevent abuse:
- **40 requests** per user per hour
- **200 requests** per user per day
> [!Tip]
-> On Google's consent screen, this appears as "Associate you with your personal info on Google."
+> If you sign in with Google, the consent screen may display
+> "Associate you with your personal info on Google."
> This is Google's generic wording for the `openid` scope—it means the app can recognize
> that the same Google account is signing in again.
> It does not grant access to your email, name, contacts, or other data.
diff --git a/content/shared/influxdb3-admin/mcp-server.md b/content/shared/influxdb3-admin/mcp-server.md
index 87b3f86ea..98ede7cc0 100644
--- a/content/shared/influxdb3-admin/mcp-server.md
+++ b/content/shared/influxdb3-admin/mcp-server.md
@@ -382,7 +382,7 @@ The documentation MCP server is a hosted service—you don't need to install or
Add the server URL to your AI assistant's MCP configuration.
> [!Note]
-> On first use, you'll be prompted to sign in with Google.
+> On first use, you'll be prompted to sign in with a Google or GitHub account.
> This authentication is used only for rate limiting—no personal data is collected.
**MCP server URL:**
@@ -528,23 +528,26 @@ The InfluxDB documentation search tools will be available in your OpenCode sessi
### Authentication and rate limits
-When you connect to the documentation MCP server for the first time, a Google sign-in
-window opens to complete an OAuth/OpenID Connect login.
+When you connect to the documentation MCP server for the first time, a sign-in
+window opens where you can choose to authenticate with a **Google** or **GitHub** account.
-The hosted MCP server:
+The hosted MCP server uses your account only to generate a stable, opaque user ID
+for rate limiting—no personal data is collected:
-- Requests only the `openid` scope from Google
-- Receives an ID token (JWT) containing a stable, opaque user ID
-- Does not request `email` or `profile` scopes—your name, email address, and other
- personal data are not collected
+- **Google**: Requests only the `openid` scope. Does not request `email` or `profile`
+ scopes—your name, email address, and other personal data are not collected.
+- **GitHub**: Requests no OAuth scopes. With no scopes requested, GitHub grants
+ read-only access to public profile information only. The server does not access
+ repositories, organizations, email addresses, or other GitHub data.
-The anonymous Google ID enforces per-user rate limits to prevent abuse:
+The anonymous user ID enforces per-user rate limits to prevent abuse:
- **40 requests** per user per hour
- **200 requests** per user per day
> [!Tip]
-> On Google's consent screen, this appears as "Associate you with your personal info on Google."
+> If you sign in with Google, the consent screen may display
+> "Associate you with your personal info on Google."
> This is Google's generic wording for the `openid` scope—it means the app can recognize
> that the same Google account is signing in again.
> It does not grant access to your email, name, contacts, or other data.
diff --git a/content/telegraf/v1/aggregator-plugins/basicstats/_index.md b/content/telegraf/v1/aggregator-plugins/basicstats/_index.md
index 761316c00..9934f2147 100644
--- a/content/telegraf/v1/aggregator-plugins/basicstats/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/basicstats/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/basicstats/README.md, Basic Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/basicstats/README.md, Basic Statistics Plugin Source
---
# Basic Statistics Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/derivative/_index.md b/content/telegraf/v1/aggregator-plugins/derivative/_index.md
index ac8c7622c..342e166e6 100644
--- a/content/telegraf/v1/aggregator-plugins/derivative/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/derivative/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/derivative/README.md, Derivative Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/derivative/README.md, Derivative Plugin Source
---
# Derivative Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/final/_index.md b/content/telegraf/v1/aggregator-plugins/final/_index.md
index 50c244777..9b54fb53c 100644
--- a/content/telegraf/v1/aggregator-plugins/final/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/final/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/final/README.md, Final Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/final/README.md, Final Plugin Source
---
# Final Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/histogram/_index.md b/content/telegraf/v1/aggregator-plugins/histogram/_index.md
index 9e679991c..ee9dce32f 100644
--- a/content/telegraf/v1/aggregator-plugins/histogram/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/histogram/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/histogram/README.md, Histogram Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/histogram/README.md, Histogram Plugin Source
---
# Histogram Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/merge/_index.md b/content/telegraf/v1/aggregator-plugins/merge/_index.md
index 46d645c45..31e83af02 100644
--- a/content/telegraf/v1/aggregator-plugins/merge/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/merge/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/merge/README.md, Merge Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/merge/README.md, Merge Plugin Source
---
# Merge Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/minmax/_index.md b/content/telegraf/v1/aggregator-plugins/minmax/_index.md
index 70c4bfd1b..9ab75d087 100644
--- a/content/telegraf/v1/aggregator-plugins/minmax/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/minmax/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/minmax/README.md, Minimum-Maximum Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/minmax/README.md, Minimum-Maximum Plugin Source
---
# Minimum-Maximum Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/quantile/_index.md b/content/telegraf/v1/aggregator-plugins/quantile/_index.md
index b46d45cbb..48d03f126 100644
--- a/content/telegraf/v1/aggregator-plugins/quantile/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/quantile/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/quantile/README.md, Quantile Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/quantile/README.md, Quantile Plugin Source
---
# Quantile Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/starlark/_index.md b/content/telegraf/v1/aggregator-plugins/starlark/_index.md
index 98a47d683..b4571a150 100644
--- a/content/telegraf/v1/aggregator-plugins/starlark/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/starlark/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/starlark/README.md, Starlark Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/starlark/README.md, Starlark Plugin Source
---
# Starlark Aggregator Plugin
diff --git a/content/telegraf/v1/aggregator-plugins/valuecounter/_index.md b/content/telegraf/v1/aggregator-plugins/valuecounter/_index.md
index 9877f44bb..7ca97e020 100644
--- a/content/telegraf/v1/aggregator-plugins/valuecounter/_index.md
+++ b/content/telegraf/v1/aggregator-plugins/valuecounter/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/aggregators/valuecounter/README.md, Value Counter Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/aggregators/valuecounter/README.md, Value Counter Plugin Source
---
# Value Counter Aggregator Plugin
diff --git a/content/telegraf/v1/input-plugins/activemq/_index.md b/content/telegraf/v1/input-plugins/activemq/_index.md
index eb3db060e..7a794f1e6 100644
--- a/content/telegraf/v1/input-plugins/activemq/_index.md
+++ b/content/telegraf/v1/input-plugins/activemq/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/activemq/README.md, ActiveMQ Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/activemq/README.md, ActiveMQ Plugin Source
---
# ActiveMQ Input Plugin
diff --git a/content/telegraf/v1/input-plugins/aerospike/_index.md b/content/telegraf/v1/input-plugins/aerospike/_index.md
index 377fdcacb..efc731210 100644
--- a/content/telegraf/v1/input-plugins/aerospike/_index.md
+++ b/content/telegraf/v1/input-plugins/aerospike/_index.md
@@ -12,7 +12,7 @@ removal: v1.40.0
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/aerospike/README.md, Aerospike Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/aerospike/README.md, Aerospike Plugin Source
---
# Aerospike Input Plugin
diff --git a/content/telegraf/v1/input-plugins/aliyuncms/_index.md b/content/telegraf/v1/input-plugins/aliyuncms/_index.md
index 7d1430371..ad92d7c49 100644
--- a/content/telegraf/v1/input-plugins/aliyuncms/_index.md
+++ b/content/telegraf/v1/input-plugins/aliyuncms/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/aliyuncms/README.md, Alibaba Cloud Monitor Service (Aliyun) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/aliyuncms/README.md, Alibaba Cloud Monitor Service (Aliyun) Plugin Source
---
# Alibaba Cloud Monitor Service (Aliyun) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/amd_rocm_smi/_index.md b/content/telegraf/v1/input-plugins/amd_rocm_smi/_index.md
index fa47fb0ff..62619a52b 100644
--- a/content/telegraf/v1/input-plugins/amd_rocm_smi/_index.md
+++ b/content/telegraf/v1/input-plugins/amd_rocm_smi/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/amd_rocm_smi/README.md, AMD ROCm System Management Interface (SMI) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/amd_rocm_smi/README.md, AMD ROCm System Management Interface (SMI) Plugin Source
---
# AMD ROCm System Management Interface (SMI) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/amqp_consumer/_index.md b/content/telegraf/v1/input-plugins/amqp_consumer/_index.md
index cf55e8315..761ef2d3f 100644
--- a/content/telegraf/v1/input-plugins/amqp_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/amqp_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/amqp_consumer/README.md, AMQP Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/amqp_consumer/README.md, AMQP Consumer Plugin Source
---
# AMQP Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/apache/_index.md b/content/telegraf/v1/input-plugins/apache/_index.md
index 5352b30b8..ae7f979a9 100644
--- a/content/telegraf/v1/input-plugins/apache/_index.md
+++ b/content/telegraf/v1/input-plugins/apache/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/apache/README.md, Apache Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/apache/README.md, Apache Plugin Source
---
# Apache Input Plugin
diff --git a/content/telegraf/v1/input-plugins/apcupsd/_index.md b/content/telegraf/v1/input-plugins/apcupsd/_index.md
index 1f081d193..b80eee70f 100644
--- a/content/telegraf/v1/input-plugins/apcupsd/_index.md
+++ b/content/telegraf/v1/input-plugins/apcupsd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/apcupsd/README.md, APC UPSD Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/apcupsd/README.md, APC UPSD Plugin Source
---
# APC UPSD Input Plugin
diff --git a/content/telegraf/v1/input-plugins/aurora/_index.md b/content/telegraf/v1/input-plugins/aurora/_index.md
index d56c935f8..f2cda189b 100644
--- a/content/telegraf/v1/input-plugins/aurora/_index.md
+++ b/content/telegraf/v1/input-plugins/aurora/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/aurora/README.md, Apache Aurora Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/aurora/README.md, Apache Aurora Plugin Source
---
# Apache Aurora Input Plugin
diff --git a/content/telegraf/v1/input-plugins/azure_monitor/_index.md b/content/telegraf/v1/input-plugins/azure_monitor/_index.md
index 47a1bbbfe..59f59f1c7 100644
--- a/content/telegraf/v1/input-plugins/azure_monitor/_index.md
+++ b/content/telegraf/v1/input-plugins/azure_monitor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/azure_monitor/README.md, Azure Monitor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/azure_monitor/README.md, Azure Monitor Plugin Source
---
# Azure Monitor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/azure_storage_queue/_index.md b/content/telegraf/v1/input-plugins/azure_storage_queue/_index.md
index 0fdf846ca..f525d2c32 100644
--- a/content/telegraf/v1/input-plugins/azure_storage_queue/_index.md
+++ b/content/telegraf/v1/input-plugins/azure_storage_queue/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/azure_storage_queue/README.md, Azure Queue Storage Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/azure_storage_queue/README.md, Azure Queue Storage Plugin Source
---
# Azure Queue Storage Input Plugin
diff --git a/content/telegraf/v1/input-plugins/bcache/_index.md b/content/telegraf/v1/input-plugins/bcache/_index.md
index 04d998e4e..873fdd5f0 100644
--- a/content/telegraf/v1/input-plugins/bcache/_index.md
+++ b/content/telegraf/v1/input-plugins/bcache/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/bcache/README.md, Bcache Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/bcache/README.md, Bcache Plugin Source
---
# Bcache Input Plugin
diff --git a/content/telegraf/v1/input-plugins/beanstalkd/_index.md b/content/telegraf/v1/input-plugins/beanstalkd/_index.md
index 66aa0f22a..c76e6e79c 100644
--- a/content/telegraf/v1/input-plugins/beanstalkd/_index.md
+++ b/content/telegraf/v1/input-plugins/beanstalkd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/beanstalkd/README.md, Beanstalkd Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/beanstalkd/README.md, Beanstalkd Plugin Source
---
# Beanstalkd Input Plugin
diff --git a/content/telegraf/v1/input-plugins/beat/_index.md b/content/telegraf/v1/input-plugins/beat/_index.md
index 98d42d9ca..e344a50ea 100644
--- a/content/telegraf/v1/input-plugins/beat/_index.md
+++ b/content/telegraf/v1/input-plugins/beat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/beat/README.md, Beat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/beat/README.md, Beat Plugin Source
---
# Beat Input Plugin
diff --git a/content/telegraf/v1/input-plugins/bind/_index.md b/content/telegraf/v1/input-plugins/bind/_index.md
index 8bb23bbd6..519259732 100644
--- a/content/telegraf/v1/input-plugins/bind/_index.md
+++ b/content/telegraf/v1/input-plugins/bind/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/bind/README.md, BIND 9 Nameserver Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/bind/README.md, BIND 9 Nameserver Plugin Source
---
# BIND 9 Nameserver Input Plugin
diff --git a/content/telegraf/v1/input-plugins/bond/_index.md b/content/telegraf/v1/input-plugins/bond/_index.md
index f4af68588..7edbcdcc5 100644
--- a/content/telegraf/v1/input-plugins/bond/_index.md
+++ b/content/telegraf/v1/input-plugins/bond/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/bond/README.md, Bond Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/bond/README.md, Bond Plugin Source
---
# Bond Input Plugin
diff --git a/content/telegraf/v1/input-plugins/burrow/_index.md b/content/telegraf/v1/input-plugins/burrow/_index.md
index 8cdf5715a..a401d2699 100644
--- a/content/telegraf/v1/input-plugins/burrow/_index.md
+++ b/content/telegraf/v1/input-plugins/burrow/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/burrow/README.md, Burrow Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/burrow/README.md, Burrow Plugin Source
---
# Burrow Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ceph/_index.md b/content/telegraf/v1/input-plugins/ceph/_index.md
index 4e2457853..3589e43c1 100644
--- a/content/telegraf/v1/input-plugins/ceph/_index.md
+++ b/content/telegraf/v1/input-plugins/ceph/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ceph/README.md, Ceph Storage Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ceph/README.md, Ceph Storage Plugin Source
---
# Ceph Storage Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cgroup/_index.md b/content/telegraf/v1/input-plugins/cgroup/_index.md
index e18fb7861..614778cb6 100644
--- a/content/telegraf/v1/input-plugins/cgroup/_index.md
+++ b/content/telegraf/v1/input-plugins/cgroup/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cgroup/README.md, Control Group Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cgroup/README.md, Control Group Plugin Source
---
# Control Group Input Plugin
diff --git a/content/telegraf/v1/input-plugins/chrony/_index.md b/content/telegraf/v1/input-plugins/chrony/_index.md
index dde05fefe..3d94d05e5 100644
--- a/content/telegraf/v1/input-plugins/chrony/_index.md
+++ b/content/telegraf/v1/input-plugins/chrony/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/chrony/README.md, chrony Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/chrony/README.md, chrony Plugin Source
---
# chrony Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cisco_telemetry_mdt/_index.md b/content/telegraf/v1/input-plugins/cisco_telemetry_mdt/_index.md
index dfde41571..442c09970 100644
--- a/content/telegraf/v1/input-plugins/cisco_telemetry_mdt/_index.md
+++ b/content/telegraf/v1/input-plugins/cisco_telemetry_mdt/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cisco_telemetry_mdt/README.md, Cisco Model-Driven Telemetry (MDT) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cisco_telemetry_mdt/README.md, Cisco Model-Driven Telemetry (MDT) Plugin Source
---
# Cisco Model-Driven Telemetry (MDT) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/clickhouse/_index.md b/content/telegraf/v1/input-plugins/clickhouse/_index.md
index 720a87aec..632f3671f 100644
--- a/content/telegraf/v1/input-plugins/clickhouse/_index.md
+++ b/content/telegraf/v1/input-plugins/clickhouse/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/clickhouse/README.md, ClickHouse Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/clickhouse/README.md, ClickHouse Plugin Source
---
# ClickHouse Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cloud_pubsub/_index.md b/content/telegraf/v1/input-plugins/cloud_pubsub/_index.md
index 85b9f8d22..c4fcb249a 100644
--- a/content/telegraf/v1/input-plugins/cloud_pubsub/_index.md
+++ b/content/telegraf/v1/input-plugins/cloud_pubsub/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cloud_pubsub/README.md, Google Cloud PubSub Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cloud_pubsub/README.md, Google Cloud PubSub Plugin Source
---
# Google Cloud PubSub Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cloud_pubsub_push/_index.md b/content/telegraf/v1/input-plugins/cloud_pubsub_push/_index.md
index cb8c8fdbe..de90c22b2 100644
--- a/content/telegraf/v1/input-plugins/cloud_pubsub_push/_index.md
+++ b/content/telegraf/v1/input-plugins/cloud_pubsub_push/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cloud_pubsub_push/README.md, Google Cloud PubSub Push Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cloud_pubsub_push/README.md, Google Cloud PubSub Push Plugin Source
---
# Google Cloud PubSub Push Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cloudwatch/_index.md b/content/telegraf/v1/input-plugins/cloudwatch/_index.md
index dbb171736..4659d57ad 100644
--- a/content/telegraf/v1/input-plugins/cloudwatch/_index.md
+++ b/content/telegraf/v1/input-plugins/cloudwatch/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cloudwatch/README.md, Amazon CloudWatch Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cloudwatch/README.md, Amazon CloudWatch Statistics Plugin Source
---
# Amazon CloudWatch Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cloudwatch_metric_streams/_index.md b/content/telegraf/v1/input-plugins/cloudwatch_metric_streams/_index.md
index 3bea44860..17645608a 100644
--- a/content/telegraf/v1/input-plugins/cloudwatch_metric_streams/_index.md
+++ b/content/telegraf/v1/input-plugins/cloudwatch_metric_streams/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cloudwatch_metric_streams/README.md, Amazon CloudWatch Metric Streams Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cloudwatch_metric_streams/README.md, Amazon CloudWatch Metric Streams Plugin Source
---
# Amazon CloudWatch Metric Streams Input Plugin
diff --git a/content/telegraf/v1/input-plugins/conntrack/_index.md b/content/telegraf/v1/input-plugins/conntrack/_index.md
index b2c919063..c0bf6117d 100644
--- a/content/telegraf/v1/input-plugins/conntrack/_index.md
+++ b/content/telegraf/v1/input-plugins/conntrack/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/conntrack/README.md, Netfilter Conntrack Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/conntrack/README.md, Netfilter Conntrack Plugin Source
---
# Netfilter Conntrack Input Plugin
diff --git a/content/telegraf/v1/input-plugins/consul/_index.md b/content/telegraf/v1/input-plugins/consul/_index.md
index c96d4a6a3..ea1e4885b 100644
--- a/content/telegraf/v1/input-plugins/consul/_index.md
+++ b/content/telegraf/v1/input-plugins/consul/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/consul/README.md, Hashicorp Consul Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/consul/README.md, Hashicorp Consul Plugin Source
---
# Hashicorp Consul Input Plugin
diff --git a/content/telegraf/v1/input-plugins/consul_agent/_index.md b/content/telegraf/v1/input-plugins/consul_agent/_index.md
index 916e39818..bdec51b9f 100644
--- a/content/telegraf/v1/input-plugins/consul_agent/_index.md
+++ b/content/telegraf/v1/input-plugins/consul_agent/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/consul_agent/README.md, Hashicorp Consul Agent Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/consul_agent/README.md, Hashicorp Consul Agent Plugin Source
---
# Hashicorp Consul Agent Input Plugin
diff --git a/content/telegraf/v1/input-plugins/couchbase/_index.md b/content/telegraf/v1/input-plugins/couchbase/_index.md
index b6cccd27e..883be54ad 100644
--- a/content/telegraf/v1/input-plugins/couchbase/_index.md
+++ b/content/telegraf/v1/input-plugins/couchbase/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/couchbase/README.md, Couchbase Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/couchbase/README.md, Couchbase Plugin Source
---
# Couchbase Input Plugin
diff --git a/content/telegraf/v1/input-plugins/couchdb/_index.md b/content/telegraf/v1/input-plugins/couchdb/_index.md
index d5fe0e4b1..448cc5437 100644
--- a/content/telegraf/v1/input-plugins/couchdb/_index.md
+++ b/content/telegraf/v1/input-plugins/couchdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/couchdb/README.md, Apache CouchDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/couchdb/README.md, Apache CouchDB Plugin Source
---
# Apache CouchDB Input Plugin
diff --git a/content/telegraf/v1/input-plugins/cpu/_index.md b/content/telegraf/v1/input-plugins/cpu/_index.md
index 9cfd0a595..959568eaf 100644
--- a/content/telegraf/v1/input-plugins/cpu/_index.md
+++ b/content/telegraf/v1/input-plugins/cpu/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/cpu/README.md, CPU Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/cpu/README.md, CPU Plugin Source
---
# CPU Input Plugin
diff --git a/content/telegraf/v1/input-plugins/csgo/_index.md b/content/telegraf/v1/input-plugins/csgo/_index.md
index 4adffe244..a48c862fa 100644
--- a/content/telegraf/v1/input-plugins/csgo/_index.md
+++ b/content/telegraf/v1/input-plugins/csgo/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/csgo/README.md, Counter-Strike Global Offensive (CSGO) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/csgo/README.md, Counter-Strike Global Offensive (CSGO) Plugin Source
---
# Counter-Strike: Global Offensive (CSGO) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ctrlx_datalayer/_index.md b/content/telegraf/v1/input-plugins/ctrlx_datalayer/_index.md
index 8cf6feff3..ff66ca3df 100644
--- a/content/telegraf/v1/input-plugins/ctrlx_datalayer/_index.md
+++ b/content/telegraf/v1/input-plugins/ctrlx_datalayer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.27.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ctrlx_datalayer/README.md, Bosch Rexroth ctrlX Data Layer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ctrlx_datalayer/README.md, Bosch Rexroth ctrlX Data Layer Plugin Source
---
# Bosch Rexroth ctrlX Data Layer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/dcos/_index.md b/content/telegraf/v1/input-plugins/dcos/_index.md
index 6340b5d0d..c3599c7bc 100644
--- a/content/telegraf/v1/input-plugins/dcos/_index.md
+++ b/content/telegraf/v1/input-plugins/dcos/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/dcos/README.md, Mesosphere Distributed Cloud OS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/dcos/README.md, Mesosphere Distributed Cloud OS Plugin Source
---
# Mesosphere Distributed Cloud OS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/directory_monitor/_index.md b/content/telegraf/v1/input-plugins/directory_monitor/_index.md
index 4a131d4a3..acb205d84 100644
--- a/content/telegraf/v1/input-plugins/directory_monitor/_index.md
+++ b/content/telegraf/v1/input-plugins/directory_monitor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/directory_monitor/README.md, Directory Monitor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/directory_monitor/README.md, Directory Monitor Plugin Source
---
# Directory Monitor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/disk/_index.md b/content/telegraf/v1/input-plugins/disk/_index.md
index 2f61daf2f..a9cac3b6d 100644
--- a/content/telegraf/v1/input-plugins/disk/_index.md
+++ b/content/telegraf/v1/input-plugins/disk/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/disk/README.md, Disk Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/disk/README.md, Disk Plugin Source
---
# Disk Input Plugin
diff --git a/content/telegraf/v1/input-plugins/diskio/_index.md b/content/telegraf/v1/input-plugins/diskio/_index.md
index 7a3ba1888..1cedfb441 100644
--- a/content/telegraf/v1/input-plugins/diskio/_index.md
+++ b/content/telegraf/v1/input-plugins/diskio/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/diskio/README.md, DiskIO Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/diskio/README.md, DiskIO Plugin Source
---
# DiskIO Input Plugin
diff --git a/content/telegraf/v1/input-plugins/disque/_index.md b/content/telegraf/v1/input-plugins/disque/_index.md
index f42f62937..be1c6532e 100644
--- a/content/telegraf/v1/input-plugins/disque/_index.md
+++ b/content/telegraf/v1/input-plugins/disque/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/disque/README.md, Disque Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/disque/README.md, Disque Plugin Source
---
# Disque Input Plugin
diff --git a/content/telegraf/v1/input-plugins/dmcache/_index.md b/content/telegraf/v1/input-plugins/dmcache/_index.md
index 3768a54cf..6a8a5b859 100644
--- a/content/telegraf/v1/input-plugins/dmcache/_index.md
+++ b/content/telegraf/v1/input-plugins/dmcache/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/dmcache/README.md, Device Mapper Cache Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/dmcache/README.md, Device Mapper Cache Plugin Source
---
# Device Mapper Cache Input Plugin
diff --git a/content/telegraf/v1/input-plugins/dns_query/_index.md b/content/telegraf/v1/input-plugins/dns_query/_index.md
index dba08d1a2..0b31da541 100644
--- a/content/telegraf/v1/input-plugins/dns_query/_index.md
+++ b/content/telegraf/v1/input-plugins/dns_query/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/dns_query/README.md, DNS Query Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/dns_query/README.md, DNS Query Plugin Source
---
# DNS Query Input Plugin
diff --git a/content/telegraf/v1/input-plugins/docker/_index.md b/content/telegraf/v1/input-plugins/docker/_index.md
index 9493c7e13..9e56c368e 100644
--- a/content/telegraf/v1/input-plugins/docker/_index.md
+++ b/content/telegraf/v1/input-plugins/docker/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.9"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/docker/README.md, Docker Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/docker/README.md, Docker Plugin Source
---
# Docker Input Plugin
diff --git a/content/telegraf/v1/input-plugins/docker_log/_index.md b/content/telegraf/v1/input-plugins/docker_log/_index.md
index 155cddee7..e16d68964 100644
--- a/content/telegraf/v1/input-plugins/docker_log/_index.md
+++ b/content/telegraf/v1/input-plugins/docker_log/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/docker_log/README.md, Docker Log Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/docker_log/README.md, Docker Log Plugin Source
---
# Docker Log Input Plugin
diff --git a/content/telegraf/v1/input-plugins/dovecot/_index.md b/content/telegraf/v1/input-plugins/dovecot/_index.md
index 595f35fb3..383b8ebce 100644
--- a/content/telegraf/v1/input-plugins/dovecot/_index.md
+++ b/content/telegraf/v1/input-plugins/dovecot/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/dovecot/README.md, Dovecot Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/dovecot/README.md, Dovecot Plugin Source
---
# Dovecot Input Plugin
diff --git a/content/telegraf/v1/input-plugins/dpdk/_index.md b/content/telegraf/v1/input-plugins/dpdk/_index.md
index f23988ea4..fe9778476 100644
--- a/content/telegraf/v1/input-plugins/dpdk/_index.md
+++ b/content/telegraf/v1/input-plugins/dpdk/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/dpdk/README.md, Data Plane Development Kit (DPDK) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/dpdk/README.md, Data Plane Development Kit (DPDK) Plugin Source
---
# Data Plane Development Kit (DPDK) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ecs/_index.md b/content/telegraf/v1/input-plugins/ecs/_index.md
index b209580f7..ea03862bb 100644
--- a/content/telegraf/v1/input-plugins/ecs/_index.md
+++ b/content/telegraf/v1/input-plugins/ecs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ecs/README.md, Amazon Elastic Container Service Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ecs/README.md, Amazon Elastic Container Service Plugin Source
---
# Amazon Elastic Container Service Input Plugin
diff --git a/content/telegraf/v1/input-plugins/elasticsearch/_index.md b/content/telegraf/v1/input-plugins/elasticsearch/_index.md
index 9720200e4..0fac01d58 100644
--- a/content/telegraf/v1/input-plugins/elasticsearch/_index.md
+++ b/content/telegraf/v1/input-plugins/elasticsearch/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/elasticsearch/README.md, Elasticsearch Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/elasticsearch/README.md, Elasticsearch Plugin Source
---
# Elasticsearch Input Plugin
diff --git a/content/telegraf/v1/input-plugins/elasticsearch_query/_index.md b/content/telegraf/v1/input-plugins/elasticsearch_query/_index.md
index 5a2958dbf..c9c6f3188 100644
--- a/content/telegraf/v1/input-plugins/elasticsearch_query/_index.md
+++ b/content/telegraf/v1/input-plugins/elasticsearch_query/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/elasticsearch_query/README.md, Elasticsearch Query Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/elasticsearch_query/README.md, Elasticsearch Query Plugin Source
---
# Elasticsearch Query Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ethtool/_index.md b/content/telegraf/v1/input-plugins/ethtool/_index.md
index 876c5b753..50c2f4350 100644
--- a/content/telegraf/v1/input-plugins/ethtool/_index.md
+++ b/content/telegraf/v1/input-plugins/ethtool/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ethtool/README.md, Ethtool Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ethtool/README.md, Ethtool Plugin Source
---
# Ethtool Input Plugin
diff --git a/content/telegraf/v1/input-plugins/eventhub_consumer/_index.md b/content/telegraf/v1/input-plugins/eventhub_consumer/_index.md
index 95e073e6f..e7681aae8 100644
--- a/content/telegraf/v1/input-plugins/eventhub_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/eventhub_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/eventhub_consumer/README.md, Azure Event Hub Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/eventhub_consumer/README.md, Azure Event Hub Consumer Plugin Source
---
# Azure Event Hub Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/exec/_index.md b/content/telegraf/v1/input-plugins/exec/_index.md
index c542d6d0b..315839475 100644
--- a/content/telegraf/v1/input-plugins/exec/_index.md
+++ b/content/telegraf/v1/input-plugins/exec/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/exec/README.md, Exec Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/exec/README.md, Exec Plugin Source
---
# Exec Input Plugin
@@ -59,6 +59,9 @@ plugin ordering. See [CONFIGURATION.md](/telegraf/v1/configuration/#plugins) for
## plugin will continue to parse the output.
# ignore_error = false
+ ## Log all messages sent to stderr
+ # log_stderr = false
+
## Data format
## By default, exec expects JSON. This was done for historical reasons and is
## different than other inputs that use the influx line protocol. Each data
@@ -71,7 +74,15 @@ plugin ordering. See [CONFIGURATION.md](/telegraf/v1/configuration/#plugins) for
Glob patterns in the `command` option are matched on every run, so adding new
scripts that match the pattern will cause them to be picked up immediately.
-## Example
+### Logging
+
+When setting `log_stderr` to `true`, the called command may write log messages
+to `stderr`, which Telegraf will log line-wise using the configured logging
+facility. By default, the _error_ level will be used. Use the known prefixes
+`E!`, `W!`, `I!`, `D!` or `T!` to log with the _error_, _warning_, _info_,
+_debug_ or _trace_ log-level, respectively.
+
+### Example
This script produces static values, since no timestamp is specified the values
are at the current time. Ensure that int values are followed with `i` for proper
@@ -92,7 +103,7 @@ It can be paired with the following configuration and will be run at the
data_format = "influx"
```
-## Common Issues
+## Troubleshooting
### My script works when I run it by hand, but not when Telegraf is running as a service
diff --git a/content/telegraf/v1/input-plugins/execd/_index.md b/content/telegraf/v1/input-plugins/execd/_index.md
index 3202d578c..45d4e1c8b 100644
--- a/content/telegraf/v1/input-plugins/execd/_index.md
+++ b/content/telegraf/v1/input-plugins/execd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/execd/README.md, Execd Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/execd/README.md, Execd Plugin Source
---
# Execd Input Plugin
diff --git a/content/telegraf/v1/input-plugins/fail2ban/_index.md b/content/telegraf/v1/input-plugins/fail2ban/_index.md
index 7d355b038..ff70c0764 100644
--- a/content/telegraf/v1/input-plugins/fail2ban/_index.md
+++ b/content/telegraf/v1/input-plugins/fail2ban/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/fail2ban/README.md, Fail2ban Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/fail2ban/README.md, Fail2ban Plugin Source
---
# Fail2ban Input Plugin
diff --git a/content/telegraf/v1/input-plugins/fibaro/_index.md b/content/telegraf/v1/input-plugins/fibaro/_index.md
index 7e48c3801..fe2fc359b 100644
--- a/content/telegraf/v1/input-plugins/fibaro/_index.md
+++ b/content/telegraf/v1/input-plugins/fibaro/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/fibaro/README.md, Fibaro Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/fibaro/README.md, Fibaro Plugin Source
---
# Fibaro Input Plugin
diff --git a/content/telegraf/v1/input-plugins/file/_index.md b/content/telegraf/v1/input-plugins/file/_index.md
index 570bf0c16..5d4b6af3b 100644
--- a/content/telegraf/v1/input-plugins/file/_index.md
+++ b/content/telegraf/v1/input-plugins/file/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/file/README.md, File Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/file/README.md, File Plugin Source
---
# File Input Plugin
diff --git a/content/telegraf/v1/input-plugins/filecount/_index.md b/content/telegraf/v1/input-plugins/filecount/_index.md
index e3ab21c98..5efb14755 100644
--- a/content/telegraf/v1/input-plugins/filecount/_index.md
+++ b/content/telegraf/v1/input-plugins/filecount/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/filecount/README.md, Filecount Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/filecount/README.md, Filecount Plugin Source
---
# Filecount Input Plugin
diff --git a/content/telegraf/v1/input-plugins/filestat/_index.md b/content/telegraf/v1/input-plugins/filestat/_index.md
index 445959fd4..dadc391b5 100644
--- a/content/telegraf/v1/input-plugins/filestat/_index.md
+++ b/content/telegraf/v1/input-plugins/filestat/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/filestat/README.md, File statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/filestat/README.md, File statistics Plugin Source
---
# File statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/fireboard/_index.md b/content/telegraf/v1/input-plugins/fireboard/_index.md
index 324508952..bb6bc8adc 100644
--- a/content/telegraf/v1/input-plugins/fireboard/_index.md
+++ b/content/telegraf/v1/input-plugins/fireboard/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/fireboard/README.md, Fireboard Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/fireboard/README.md, Fireboard Plugin Source
---
# Fireboard Input Plugin
diff --git a/content/telegraf/v1/input-plugins/firehose/_index.md b/content/telegraf/v1/input-plugins/firehose/_index.md
index b7c7a20c4..6d7ac09d0 100644
--- a/content/telegraf/v1/input-plugins/firehose/_index.md
+++ b/content/telegraf/v1/input-plugins/firehose/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.34.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/firehose/README.md, AWS Data Firehose Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/firehose/README.md, AWS Data Firehose Plugin Source
---
# AWS Data Firehose Input Plugin
diff --git a/content/telegraf/v1/input-plugins/fluentd/_index.md b/content/telegraf/v1/input-plugins/fluentd/_index.md
index 4d8b89e73..50ec7902b 100644
--- a/content/telegraf/v1/input-plugins/fluentd/_index.md
+++ b/content/telegraf/v1/input-plugins/fluentd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/fluentd/README.md, Fluentd Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/fluentd/README.md, Fluentd Plugin Source
---
# Fluentd Input Plugin
diff --git a/content/telegraf/v1/input-plugins/fritzbox/_index.md b/content/telegraf/v1/input-plugins/fritzbox/_index.md
index 0c55e106d..7746d3395 100644
--- a/content/telegraf/v1/input-plugins/fritzbox/_index.md
+++ b/content/telegraf/v1/input-plugins/fritzbox/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/fritzbox/README.md, Fritzbox Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/fritzbox/README.md, Fritzbox Plugin Source
---
# Fritzbox Input Plugin
diff --git a/content/telegraf/v1/input-plugins/github/_index.md b/content/telegraf/v1/input-plugins/github/_index.md
index 6f2e64af1..cf895bee7 100644
--- a/content/telegraf/v1/input-plugins/github/_index.md
+++ b/content/telegraf/v1/input-plugins/github/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/github/README.md, GitHub Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/github/README.md, GitHub Plugin Source
---
# GitHub Input Plugin
diff --git a/content/telegraf/v1/input-plugins/gnmi/_index.md b/content/telegraf/v1/input-plugins/gnmi/_index.md
index ff455b9d8..6dc411586 100644
--- a/content/telegraf/v1/input-plugins/gnmi/_index.md
+++ b/content/telegraf/v1/input-plugins/gnmi/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/gnmi/README.md, gNMI (gRPC Network Management Interface) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/gnmi/README.md, gNMI (gRPC Network Management Interface) Plugin Source
---
# gNMI (gRPC Network Management Interface) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/google_cloud_storage/_index.md b/content/telegraf/v1/input-plugins/google_cloud_storage/_index.md
index 83c26d2fb..61f74514e 100644
--- a/content/telegraf/v1/input-plugins/google_cloud_storage/_index.md
+++ b/content/telegraf/v1/input-plugins/google_cloud_storage/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/google_cloud_storage/README.md, Google Cloud Storage Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/google_cloud_storage/README.md, Google Cloud Storage Plugin Source
---
# Google Cloud Storage Input Plugin
diff --git a/content/telegraf/v1/input-plugins/graylog/_index.md b/content/telegraf/v1/input-plugins/graylog/_index.md
index 2ce54eb3f..89c67c013 100644
--- a/content/telegraf/v1/input-plugins/graylog/_index.md
+++ b/content/telegraf/v1/input-plugins/graylog/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/graylog/README.md, GrayLog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/graylog/README.md, GrayLog Plugin Source
---
# GrayLog Input Plugin
diff --git a/content/telegraf/v1/input-plugins/haproxy/_index.md b/content/telegraf/v1/input-plugins/haproxy/_index.md
index 6a033ac83..84c85b7b6 100644
--- a/content/telegraf/v1/input-plugins/haproxy/_index.md
+++ b/content/telegraf/v1/input-plugins/haproxy/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/haproxy/README.md, HAProxy Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/haproxy/README.md, HAProxy Plugin Source
---
# HAProxy Input Plugin
diff --git a/content/telegraf/v1/input-plugins/hddtemp/_index.md b/content/telegraf/v1/input-plugins/hddtemp/_index.md
index a81942c1b..ef684e8fd 100644
--- a/content/telegraf/v1/input-plugins/hddtemp/_index.md
+++ b/content/telegraf/v1/input-plugins/hddtemp/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/hddtemp/README.md, HDDtemp Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/hddtemp/README.md, HDDtemp Plugin Source
---
# HDDtemp Input Plugin
diff --git a/content/telegraf/v1/input-plugins/http/_index.md b/content/telegraf/v1/input-plugins/http/_index.md
index f83815209..2a70fbeca 100644
--- a/content/telegraf/v1/input-plugins/http/_index.md
+++ b/content/telegraf/v1/input-plugins/http/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.6.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/http/README.md, HTTP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/http/README.md, HTTP Plugin Source
---
# HTTP Input Plugin
diff --git a/content/telegraf/v1/input-plugins/http_listener_v2/_index.md b/content/telegraf/v1/input-plugins/http_listener_v2/_index.md
index dac3a1ff7..c7f653d1d 100644
--- a/content/telegraf/v1/input-plugins/http_listener_v2/_index.md
+++ b/content/telegraf/v1/input-plugins/http_listener_v2/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/http_listener_v2/README.md, HTTP Listener v2 Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/http_listener_v2/README.md, HTTP Listener v2 Plugin Source
---
# HTTP Listener v2 Input Plugin
diff --git a/content/telegraf/v1/input-plugins/http_response/_index.md b/content/telegraf/v1/input-plugins/http_response/_index.md
index d1b1c14db..bc6d36e88 100644
--- a/content/telegraf/v1/input-plugins/http_response/_index.md
+++ b/content/telegraf/v1/input-plugins/http_response/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/http_response/README.md, HTTP Response Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/http_response/README.md, HTTP Response Plugin Source
---
# HTTP Response Input Plugin
diff --git a/content/telegraf/v1/input-plugins/huebridge/_index.md b/content/telegraf/v1/input-plugins/huebridge/_index.md
index a161383e2..476d32457 100644
--- a/content/telegraf/v1/input-plugins/huebridge/_index.md
+++ b/content/telegraf/v1/input-plugins/huebridge/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.34.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/huebridge/README.md, HueBridge Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/huebridge/README.md, HueBridge Plugin Source
---
# HueBridge Input Plugin
diff --git a/content/telegraf/v1/input-plugins/hugepages/_index.md b/content/telegraf/v1/input-plugins/hugepages/_index.md
index 9c5d18482..96dae0e7e 100644
--- a/content/telegraf/v1/input-plugins/hugepages/_index.md
+++ b/content/telegraf/v1/input-plugins/hugepages/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/hugepages/README.md, Hugepages Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/hugepages/README.md, Hugepages Plugin Source
---
# Hugepages Input Plugin
diff --git a/content/telegraf/v1/input-plugins/icinga2/_index.md b/content/telegraf/v1/input-plugins/icinga2/_index.md
index 5731b4edb..78d004bd6 100644
--- a/content/telegraf/v1/input-plugins/icinga2/_index.md
+++ b/content/telegraf/v1/input-plugins/icinga2/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/icinga2/README.md, Icinga2 Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/icinga2/README.md, Icinga2 Plugin Source
---
# Icinga2 Input Plugin
diff --git a/content/telegraf/v1/input-plugins/infiniband/_index.md b/content/telegraf/v1/input-plugins/infiniband/_index.md
index e49548c6b..825b6c5fa 100644
--- a/content/telegraf/v1/input-plugins/infiniband/_index.md
+++ b/content/telegraf/v1/input-plugins/infiniband/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/infiniband/README.md, InfiniBand Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/infiniband/README.md, InfiniBand Plugin Source
---
# InfiniBand Input Plugin
diff --git a/content/telegraf/v1/input-plugins/influxdb/_index.md b/content/telegraf/v1/input-plugins/influxdb/_index.md
index 7f4aea245..c026f6a59 100644
--- a/content/telegraf/v1/input-plugins/influxdb/_index.md
+++ b/content/telegraf/v1/input-plugins/influxdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/influxdb/README.md, InfluxDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/influxdb/README.md, InfluxDB Plugin Source
---
# InfluxDB Input Plugin
diff --git a/content/telegraf/v1/input-plugins/influxdb_listener/_index.md b/content/telegraf/v1/input-plugins/influxdb_listener/_index.md
index 7ee64afc3..ddc66fed7 100644
--- a/content/telegraf/v1/input-plugins/influxdb_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/influxdb_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/influxdb_listener/README.md, InfluxDB Listener Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/influxdb_listener/README.md, InfluxDB Listener Plugin Source
---
# InfluxDB Listener Input Plugin
diff --git a/content/telegraf/v1/input-plugins/influxdb_v2_listener/_index.md b/content/telegraf/v1/input-plugins/influxdb_v2_listener/_index.md
index acf23499f..12aca4273 100644
--- a/content/telegraf/v1/input-plugins/influxdb_v2_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/influxdb_v2_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/influxdb_v2_listener/README.md, InfluxDB V2 Listener Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/influxdb_v2_listener/README.md, InfluxDB V2 Listener Plugin Source
---
# InfluxDB V2 Listener Input Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_baseband/_index.md b/content/telegraf/v1/input-plugins/intel_baseband/_index.md
index bec0e9128..960a9c2f5 100644
--- a/content/telegraf/v1/input-plugins/intel_baseband/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_baseband/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.27.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_baseband/README.md, Intel Baseband Accelerator Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_baseband/README.md, Intel Baseband Accelerator Plugin Source
---
# Intel Baseband Accelerator Input Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_dlb/_index.md b/content/telegraf/v1/input-plugins/intel_dlb/_index.md
index b8413787e..d36b4b38f 100644
--- a/content/telegraf/v1/input-plugins/intel_dlb/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_dlb/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_dlb/README.md, Intel® Dynamic Load Balancer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_dlb/README.md, Intel® Dynamic Load Balancer Plugin Source
---
# Intel® Dynamic Load Balancer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_pmt/_index.md b/content/telegraf/v1/input-plugins/intel_pmt/_index.md
index 5ee77cf4f..12674cf11 100644
--- a/content/telegraf/v1/input-plugins/intel_pmt/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_pmt/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.28.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_pmt/README.md, Intel® Platform Monitoring Technology Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_pmt/README.md, Intel® Platform Monitoring Technology Plugin Source
---
# Intel® Platform Monitoring Technology Input Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_pmu/_index.md b/content/telegraf/v1/input-plugins/intel_pmu/_index.md
index c52e3aace..d6a93b744 100644
--- a/content/telegraf/v1/input-plugins/intel_pmu/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_pmu/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_pmu/README.md, Intel Performance Monitoring Unit Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_pmu/README.md, Intel Performance Monitoring Unit Plugin Source
---
# Intel Performance Monitoring Unit Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_powerstat/_index.md b/content/telegraf/v1/input-plugins/intel_powerstat/_index.md
index f1c45121b..a41ee796f 100644
--- a/content/telegraf/v1/input-plugins/intel_powerstat/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_powerstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.17.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_powerstat/README.md, Intel PowerStat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_powerstat/README.md, Intel PowerStat Plugin Source
---
# Intel PowerStat Input Plugin
diff --git a/content/telegraf/v1/input-plugins/intel_rdt/_index.md b/content/telegraf/v1/input-plugins/intel_rdt/_index.md
index c39039552..b09b457a9 100644
--- a/content/telegraf/v1/input-plugins/intel_rdt/_index.md
+++ b/content/telegraf/v1/input-plugins/intel_rdt/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/intel_rdt/README.md, Intel RDT Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/intel_rdt/README.md, Intel RDT Plugin Source
---
# Intel RDT Input Plugin
diff --git a/content/telegraf/v1/input-plugins/internal/_index.md b/content/telegraf/v1/input-plugins/internal/_index.md
index b60595fc2..927c21fd1 100644
--- a/content/telegraf/v1/input-plugins/internal/_index.md
+++ b/content/telegraf/v1/input-plugins/internal/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/internal/README.md, Telegraf Internal Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/internal/README.md, Telegraf Internal Plugin Source
---
# Telegraf Internal Input Plugin
diff --git a/content/telegraf/v1/input-plugins/internet_speed/_index.md b/content/telegraf/v1/input-plugins/internet_speed/_index.md
index a22e8f7d8..fa26baf84 100644
--- a/content/telegraf/v1/input-plugins/internet_speed/_index.md
+++ b/content/telegraf/v1/input-plugins/internet_speed/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/internet_speed/README.md, Internet Speed Monitor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/internet_speed/README.md, Internet Speed Monitor Plugin Source
---
# Internet Speed Monitor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/interrupts/_index.md b/content/telegraf/v1/input-plugins/interrupts/_index.md
index 3b20515cb..aed518f9a 100644
--- a/content/telegraf/v1/input-plugins/interrupts/_index.md
+++ b/content/telegraf/v1/input-plugins/interrupts/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/interrupts/README.md, Interrupts Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/interrupts/README.md, Interrupts Plugin Source
---
# Interrupts Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ipmi_sensor/_index.md b/content/telegraf/v1/input-plugins/ipmi_sensor/_index.md
index efba924e5..201331f7f 100644
--- a/content/telegraf/v1/input-plugins/ipmi_sensor/_index.md
+++ b/content/telegraf/v1/input-plugins/ipmi_sensor/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ipmi_sensor/README.md, IPMI Sensor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ipmi_sensor/README.md, IPMI Sensor Plugin Source
---
# IPMI Sensor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ipset/_index.md b/content/telegraf/v1/input-plugins/ipset/_index.md
index dc649f4df..da330220a 100644
--- a/content/telegraf/v1/input-plugins/ipset/_index.md
+++ b/content/telegraf/v1/input-plugins/ipset/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.6.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ipset/README.md, Ipset Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ipset/README.md, Ipset Plugin Source
---
# Ipset Input Plugin
diff --git a/content/telegraf/v1/input-plugins/iptables/_index.md b/content/telegraf/v1/input-plugins/iptables/_index.md
index ebad367e7..3e25d246c 100644
--- a/content/telegraf/v1/input-plugins/iptables/_index.md
+++ b/content/telegraf/v1/input-plugins/iptables/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/iptables/README.md, Iptables Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/iptables/README.md, Iptables Plugin Source
---
# Iptables Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ipvs/_index.md b/content/telegraf/v1/input-plugins/ipvs/_index.md
index af3bcb998..3d172029b 100644
--- a/content/telegraf/v1/input-plugins/ipvs/_index.md
+++ b/content/telegraf/v1/input-plugins/ipvs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ipvs/README.md, IPVS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ipvs/README.md, IPVS Plugin Source
---
# IPVS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/jenkins/_index.md b/content/telegraf/v1/input-plugins/jenkins/_index.md
index 18a8b1814..6933b3738 100644
--- a/content/telegraf/v1/input-plugins/jenkins/_index.md
+++ b/content/telegraf/v1/input-plugins/jenkins/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/jenkins/README.md, Jenkins Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/jenkins/README.md, Jenkins Plugin Source
---
# Jenkins Input Plugin
diff --git a/content/telegraf/v1/input-plugins/jolokia2_agent/_index.md b/content/telegraf/v1/input-plugins/jolokia2_agent/_index.md
index d9abc046d..e4cf96656 100644
--- a/content/telegraf/v1/input-plugins/jolokia2_agent/_index.md
+++ b/content/telegraf/v1/input-plugins/jolokia2_agent/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/jolokia2_agent/README.md, Jolokia2 Agent Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/jolokia2_agent/README.md, Jolokia2 Agent Plugin Source
---
# Jolokia2 Agent Input Plugin
diff --git a/content/telegraf/v1/input-plugins/jolokia2_proxy/_index.md b/content/telegraf/v1/input-plugins/jolokia2_proxy/_index.md
index f0b842deb..a45116045 100644
--- a/content/telegraf/v1/input-plugins/jolokia2_proxy/_index.md
+++ b/content/telegraf/v1/input-plugins/jolokia2_proxy/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/jolokia2_proxy/README.md, Jolokia2 Proxy Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/jolokia2_proxy/README.md, Jolokia2 Proxy Plugin Source
---
# Jolokia2 Proxy Input Plugin
diff --git a/content/telegraf/v1/input-plugins/jti_openconfig_telemetry/_index.md b/content/telegraf/v1/input-plugins/jti_openconfig_telemetry/_index.md
index 1a42ea301..895678262 100644
--- a/content/telegraf/v1/input-plugins/jti_openconfig_telemetry/_index.md
+++ b/content/telegraf/v1/input-plugins/jti_openconfig_telemetry/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/jti_openconfig_telemetry/README.md, Juniper Telemetry Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/jti_openconfig_telemetry/README.md, Juniper Telemetry Plugin Source
---
# Juniper Telemetry Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kafka_consumer/_index.md b/content/telegraf/v1/input-plugins/kafka_consumer/_index.md
index 0ce0ddef7..6bba2f4a6 100644
--- a/content/telegraf/v1/input-plugins/kafka_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/kafka_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kafka_consumer/README.md, Apache Kafka Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kafka_consumer/README.md, Apache Kafka Consumer Plugin Source
---
# Apache Kafka Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kapacitor/_index.md b/content/telegraf/v1/input-plugins/kapacitor/_index.md
index 96ec47145..0a1d2d414 100644
--- a/content/telegraf/v1/input-plugins/kapacitor/_index.md
+++ b/content/telegraf/v1/input-plugins/kapacitor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kapacitor/README.md, Kapacitor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kapacitor/README.md, Kapacitor Plugin Source
---
# Kapacitor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kernel/_index.md b/content/telegraf/v1/input-plugins/kernel/_index.md
index 99ae68478..f4bf915b1 100644
--- a/content/telegraf/v1/input-plugins/kernel/_index.md
+++ b/content/telegraf/v1/input-plugins/kernel/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.11.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kernel/README.md, Kernel Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kernel/README.md, Kernel Plugin Source
---
# Kernel Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kernel_vmstat/_index.md b/content/telegraf/v1/input-plugins/kernel_vmstat/_index.md
index 91c30e94b..5d719b499 100644
--- a/content/telegraf/v1/input-plugins/kernel_vmstat/_index.md
+++ b/content/telegraf/v1/input-plugins/kernel_vmstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kernel_vmstat/README.md, Kernel VM Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kernel_vmstat/README.md, Kernel VM Statistics Plugin Source
---
# Kernel VM Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kibana/_index.md b/content/telegraf/v1/input-plugins/kibana/_index.md
index 81aba85e6..cffd7d91c 100644
--- a/content/telegraf/v1/input-plugins/kibana/_index.md
+++ b/content/telegraf/v1/input-plugins/kibana/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kibana/README.md, Kibana Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kibana/README.md, Kibana Plugin Source
---
# Kibana Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kinesis_consumer/_index.md b/content/telegraf/v1/input-plugins/kinesis_consumer/_index.md
index fd5ae57af..6f1e017a2 100644
--- a/content/telegraf/v1/input-plugins/kinesis_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/kinesis_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kinesis_consumer/README.md, Kinesis Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kinesis_consumer/README.md, Kinesis Consumer Plugin Source
---
# Kinesis Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/knx_listener/_index.md b/content/telegraf/v1/input-plugins/knx_listener/_index.md
index f8e3b64c1..849f42bda 100644
--- a/content/telegraf/v1/input-plugins/knx_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/knx_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/knx_listener/README.md, KNX Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/knx_listener/README.md, KNX Plugin Source
---
# KNX Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kube_inventory/_index.md b/content/telegraf/v1/input-plugins/kube_inventory/_index.md
index 109a1f4a9..89caf69fd 100644
--- a/content/telegraf/v1/input-plugins/kube_inventory/_index.md
+++ b/content/telegraf/v1/input-plugins/kube_inventory/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kube_inventory/README.md, Kubernetes Inventory Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kube_inventory/README.md, Kubernetes Inventory Plugin Source
---
# Kubernetes Inventory Input Plugin
diff --git a/content/telegraf/v1/input-plugins/kubernetes/_index.md b/content/telegraf/v1/input-plugins/kubernetes/_index.md
index ca819f3cd..7c84a8345 100644
--- a/content/telegraf/v1/input-plugins/kubernetes/_index.md
+++ b/content/telegraf/v1/input-plugins/kubernetes/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/kubernetes/README.md, Kubernetes Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/kubernetes/README.md, Kubernetes Plugin Source
---
# Kubernetes Input Plugin
diff --git a/content/telegraf/v1/input-plugins/lanz/_index.md b/content/telegraf/v1/input-plugins/lanz/_index.md
index 142a6d4ac..beab20e82 100644
--- a/content/telegraf/v1/input-plugins/lanz/_index.md
+++ b/content/telegraf/v1/input-plugins/lanz/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/lanz/README.md, Arista LANZ Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/lanz/README.md, Arista LANZ Consumer Plugin Source
---
# Arista LANZ Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ldap/_index.md b/content/telegraf/v1/input-plugins/ldap/_index.md
index e21452871..4febbd5d9 100644
--- a/content/telegraf/v1/input-plugins/ldap/_index.md
+++ b/content/telegraf/v1/input-plugins/ldap/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.29.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ldap/README.md, LDAP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ldap/README.md, LDAP Plugin Source
---
# LDAP Input Plugin
diff --git a/content/telegraf/v1/input-plugins/leofs/_index.md b/content/telegraf/v1/input-plugins/leofs/_index.md
index 79aa4366f..901e531ad 100644
--- a/content/telegraf/v1/input-plugins/leofs/_index.md
+++ b/content/telegraf/v1/input-plugins/leofs/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/leofs/README.md, LeoFS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/leofs/README.md, LeoFS Plugin Source
---
# LeoFS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/libvirt/_index.md b/content/telegraf/v1/input-plugins/libvirt/_index.md
index e751aced3..25f3fbf58 100644
--- a/content/telegraf/v1/input-plugins/libvirt/_index.md
+++ b/content/telegraf/v1/input-plugins/libvirt/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/libvirt/README.md, Libvirt Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/libvirt/README.md, Libvirt Plugin Source
---
# Libvirt Input Plugin
diff --git a/content/telegraf/v1/input-plugins/linux_cpu/_index.md b/content/telegraf/v1/input-plugins/linux_cpu/_index.md
index 74a2d13f5..de8d56b2a 100644
--- a/content/telegraf/v1/input-plugins/linux_cpu/_index.md
+++ b/content/telegraf/v1/input-plugins/linux_cpu/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/linux_cpu/README.md, Linux CPU Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/linux_cpu/README.md, Linux CPU Plugin Source
---
# Linux CPU Input Plugin
diff --git a/content/telegraf/v1/input-plugins/linux_sysctl_fs/_index.md b/content/telegraf/v1/input-plugins/linux_sysctl_fs/_index.md
index 01c498cce..72c8d5cdc 100644
--- a/content/telegraf/v1/input-plugins/linux_sysctl_fs/_index.md
+++ b/content/telegraf/v1/input-plugins/linux_sysctl_fs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/linux_sysctl_fs/README.md, Linux Sysctl Filesystem Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/linux_sysctl_fs/README.md, Linux Sysctl Filesystem Plugin Source
---
# Linux Sysctl Filesystem Input Plugin
diff --git a/content/telegraf/v1/input-plugins/logql/_index.md b/content/telegraf/v1/input-plugins/logql/_index.md
index d612a27a9..eca93a069 100644
--- a/content/telegraf/v1/input-plugins/logql/_index.md
+++ b/content/telegraf/v1/input-plugins/logql/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/logql/README.md, LogQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/logql/README.md, LogQL Plugin Source
---
# LogQL Input Plugin
diff --git a/content/telegraf/v1/input-plugins/logstash/_index.md b/content/telegraf/v1/input-plugins/logstash/_index.md
index c9340e768..8f317e4df 100644
--- a/content/telegraf/v1/input-plugins/logstash/_index.md
+++ b/content/telegraf/v1/input-plugins/logstash/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/logstash/README.md, Logstash Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/logstash/README.md, Logstash Plugin Source
---
# Logstash Input Plugin
diff --git a/content/telegraf/v1/input-plugins/lustre2/_index.md b/content/telegraf/v1/input-plugins/lustre2/_index.md
index 718ffa91d..573e6f1dc 100644
--- a/content/telegraf/v1/input-plugins/lustre2/_index.md
+++ b/content/telegraf/v1/input-plugins/lustre2/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/lustre2/README.md, Lustre Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/lustre2/README.md, Lustre Plugin Source
---
# Lustre Input Plugin
diff --git a/content/telegraf/v1/input-plugins/lvm/_index.md b/content/telegraf/v1/input-plugins/lvm/_index.md
index 8cab33dd5..0ff6d90ce 100644
--- a/content/telegraf/v1/input-plugins/lvm/_index.md
+++ b/content/telegraf/v1/input-plugins/lvm/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/lvm/README.md, Logical Volume Manager Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/lvm/README.md, Logical Volume Manager Plugin Source
---
# Logical Volume Manager Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mailchimp/_index.md b/content/telegraf/v1/input-plugins/mailchimp/_index.md
index 6fcee3432..cdc9b8a81 100644
--- a/content/telegraf/v1/input-plugins/mailchimp/_index.md
+++ b/content/telegraf/v1/input-plugins/mailchimp/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.4"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mailchimp/README.md, Mailchimp Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mailchimp/README.md, Mailchimp Plugin Source
---
# Mailchimp Input Plugin
diff --git a/content/telegraf/v1/input-plugins/marklogic/_index.md b/content/telegraf/v1/input-plugins/marklogic/_index.md
index 96cf441bc..5ac53dcd5 100644
--- a/content/telegraf/v1/input-plugins/marklogic/_index.md
+++ b/content/telegraf/v1/input-plugins/marklogic/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/marklogic/README.md, MarkLogic Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/marklogic/README.md, MarkLogic Plugin Source
---
# MarkLogic Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mavlink/_index.md b/content/telegraf/v1/input-plugins/mavlink/_index.md
index 19a4f24b8..fcf1bd735 100644
--- a/content/telegraf/v1/input-plugins/mavlink/_index.md
+++ b/content/telegraf/v1/input-plugins/mavlink/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mavlink/README.md, MavLink Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mavlink/README.md, MavLink Plugin Source
---
# MavLink Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mcrouter/_index.md b/content/telegraf/v1/input-plugins/mcrouter/_index.md
index 6f6832498..387bc508f 100644
--- a/content/telegraf/v1/input-plugins/mcrouter/_index.md
+++ b/content/telegraf/v1/input-plugins/mcrouter/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mcrouter/README.md, Mcrouter Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mcrouter/README.md, Mcrouter Plugin Source
---
# Mcrouter Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mdstat/_index.md b/content/telegraf/v1/input-plugins/mdstat/_index.md
index 6317b5d78..89dc40937 100644
--- a/content/telegraf/v1/input-plugins/mdstat/_index.md
+++ b/content/telegraf/v1/input-plugins/mdstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mdstat/README.md, MD RAID Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mdstat/README.md, MD RAID Statistics Plugin Source
---
# MD RAID Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mem/_index.md b/content/telegraf/v1/input-plugins/mem/_index.md
index d8cc65783..a554738d1 100644
--- a/content/telegraf/v1/input-plugins/mem/_index.md
+++ b/content/telegraf/v1/input-plugins/mem/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mem/README.md, Memory Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mem/README.md, Memory Plugin Source
---
# Memory Input Plugin
diff --git a/content/telegraf/v1/input-plugins/memcached/_index.md b/content/telegraf/v1/input-plugins/memcached/_index.md
index 1653714fb..24f1fa7de 100644
--- a/content/telegraf/v1/input-plugins/memcached/_index.md
+++ b/content/telegraf/v1/input-plugins/memcached/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.2"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/memcached/README.md, Memcached Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/memcached/README.md, Memcached Plugin Source
---
# Memcached Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mesos/_index.md b/content/telegraf/v1/input-plugins/mesos/_index.md
index f1b2c504d..150bdd270 100644
--- a/content/telegraf/v1/input-plugins/mesos/_index.md
+++ b/content/telegraf/v1/input-plugins/mesos/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mesos/README.md, Apache Mesos Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mesos/README.md, Apache Mesos Plugin Source
---
# Apache Mesos Input Plugin
diff --git a/content/telegraf/v1/input-plugins/minecraft/_index.md b/content/telegraf/v1/input-plugins/minecraft/_index.md
index 3909fa361..1e4f4ffc3 100644
--- a/content/telegraf/v1/input-plugins/minecraft/_index.md
+++ b/content/telegraf/v1/input-plugins/minecraft/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/minecraft/README.md, Minecraft Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/minecraft/README.md, Minecraft Plugin Source
---
# Minecraft Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mock/_index.md b/content/telegraf/v1/input-plugins/mock/_index.md
index 97d7c726a..8147ca945 100644
--- a/content/telegraf/v1/input-plugins/mock/_index.md
+++ b/content/telegraf/v1/input-plugins/mock/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mock/README.md, Mock Data Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mock/README.md, Mock Data Plugin Source
---
# Mock Data Input Plugin
diff --git a/content/telegraf/v1/input-plugins/modbus/_index.md b/content/telegraf/v1/input-plugins/modbus/_index.md
index 02291a350..04cbeada1 100644
--- a/content/telegraf/v1/input-plugins/modbus/_index.md
+++ b/content/telegraf/v1/input-plugins/modbus/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/modbus/README.md, Modbus Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/modbus/README.md, Modbus Plugin Source
---
diff --git a/content/telegraf/v1/input-plugins/mongodb/_index.md b/content/telegraf/v1/input-plugins/mongodb/_index.md
index 6083e33c5..a6424688a 100644
--- a/content/telegraf/v1/input-plugins/mongodb/_index.md
+++ b/content/telegraf/v1/input-plugins/mongodb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mongodb/README.md, MongoDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mongodb/README.md, MongoDB Plugin Source
---
# MongoDB Input Plugin
diff --git a/content/telegraf/v1/input-plugins/monit/_index.md b/content/telegraf/v1/input-plugins/monit/_index.md
index 7b24ecc47..ee28763de 100644
--- a/content/telegraf/v1/input-plugins/monit/_index.md
+++ b/content/telegraf/v1/input-plugins/monit/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/monit/README.md, Monit Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/monit/README.md, Monit Plugin Source
---
# Monit Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mqtt_consumer/_index.md b/content/telegraf/v1/input-plugins/mqtt_consumer/_index.md
index 310bde179..50c6c6ccc 100644
--- a/content/telegraf/v1/input-plugins/mqtt_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/mqtt_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mqtt_consumer/README.md, MQTT Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mqtt_consumer/README.md, MQTT Consumer Plugin Source
---
# MQTT Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/multifile/_index.md b/content/telegraf/v1/input-plugins/multifile/_index.md
index fd3581f29..332c0a27a 100644
--- a/content/telegraf/v1/input-plugins/multifile/_index.md
+++ b/content/telegraf/v1/input-plugins/multifile/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/multifile/README.md, Multifile Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/multifile/README.md, Multifile Plugin Source
---
# Multifile Input Plugin
diff --git a/content/telegraf/v1/input-plugins/mysql/_index.md b/content/telegraf/v1/input-plugins/mysql/_index.md
index 3b35d5f10..18d5ec447 100644
--- a/content/telegraf/v1/input-plugins/mysql/_index.md
+++ b/content/telegraf/v1/input-plugins/mysql/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/mysql/README.md, MySQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/mysql/README.md, MySQL Plugin Source
---
# MySQL Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nats/_index.md b/content/telegraf/v1/input-plugins/nats/_index.md
index 5bb210653..f6c2af180 100644
--- a/content/telegraf/v1/input-plugins/nats/_index.md
+++ b/content/telegraf/v1/input-plugins/nats/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.6.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nats/README.md, NATS Server Monitoring Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nats/README.md, NATS Server Monitoring Plugin Source
---
# NATS Server Monitoring Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nats_consumer/_index.md b/content/telegraf/v1/input-plugins/nats_consumer/_index.md
index f3fc6c680..2184afb62 100644
--- a/content/telegraf/v1/input-plugins/nats_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/nats_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nats_consumer/README.md, NATS Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nats_consumer/README.md, NATS Consumer Plugin Source
---
# NATS Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/neoom_beaam/_index.md b/content/telegraf/v1/input-plugins/neoom_beaam/_index.md
index 601fe0054..f39e62a83 100644
--- a/content/telegraf/v1/input-plugins/neoom_beaam/_index.md
+++ b/content/telegraf/v1/input-plugins/neoom_beaam/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.33.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/neoom_beaam/README.md, Neoom Beaam Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/neoom_beaam/README.md, Neoom Beaam Plugin Source
---
# Neoom Beaam Input Plugin
diff --git a/content/telegraf/v1/input-plugins/neptune_apex/_index.md b/content/telegraf/v1/input-plugins/neptune_apex/_index.md
index 9362837fc..70ab01ebb 100644
--- a/content/telegraf/v1/input-plugins/neptune_apex/_index.md
+++ b/content/telegraf/v1/input-plugins/neptune_apex/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/neptune_apex/README.md, Neptune Apex Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/neptune_apex/README.md, Neptune Apex Plugin Source
---
# Neptune Apex Input Plugin
diff --git a/content/telegraf/v1/input-plugins/net/_index.md b/content/telegraf/v1/input-plugins/net/_index.md
index 22490b185..031506c34 100644
--- a/content/telegraf/v1/input-plugins/net/_index.md
+++ b/content/telegraf/v1/input-plugins/net/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/net/README.md, Network Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/net/README.md, Network Plugin Source
---
# Network Input Plugin
diff --git a/content/telegraf/v1/input-plugins/net_response/_index.md b/content/telegraf/v1/input-plugins/net_response/_index.md
index 29bdaf294..77b90823b 100644
--- a/content/telegraf/v1/input-plugins/net_response/_index.md
+++ b/content/telegraf/v1/input-plugins/net_response/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/net_response/README.md, Network Response Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/net_response/README.md, Network Response Plugin Source
---
# Network Response Input Plugin
diff --git a/content/telegraf/v1/input-plugins/netflow/_index.md b/content/telegraf/v1/input-plugins/netflow/_index.md
index 95ff91fd4..503769121 100644
--- a/content/telegraf/v1/input-plugins/netflow/_index.md
+++ b/content/telegraf/v1/input-plugins/netflow/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/netflow/README.md, Netflow Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/netflow/README.md, Netflow Plugin Source
---
# Netflow Input Plugin
diff --git a/content/telegraf/v1/input-plugins/netstat/_index.md b/content/telegraf/v1/input-plugins/netstat/_index.md
index 6a338a4cd..77c2e7ce2 100644
--- a/content/telegraf/v1/input-plugins/netstat/_index.md
+++ b/content/telegraf/v1/input-plugins/netstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/netstat/README.md, Network Connection Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/netstat/README.md, Network Connection Statistics Plugin Source
---
# Network Connection Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nfsclient/_index.md b/content/telegraf/v1/input-plugins/nfsclient/_index.md
index c2881bfa3..c4c7fe785 100644
--- a/content/telegraf/v1/input-plugins/nfsclient/_index.md
+++ b/content/telegraf/v1/input-plugins/nfsclient/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nfsclient/README.md, Network Filesystem Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nfsclient/README.md, Network Filesystem Plugin Source
---
# Network Filesystem Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nftables/_index.md b/content/telegraf/v1/input-plugins/nftables/_index.md
index aa8cb9a4e..c11fdb289 100644
--- a/content/telegraf/v1/input-plugins/nftables/_index.md
+++ b/content/telegraf/v1/input-plugins/nftables/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nftables/README.md, Nftables Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nftables/README.md, Nftables Plugin Source
---
# Nftables Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx/_index.md b/content/telegraf/v1/input-plugins/nginx/_index.md
index a856f1f41..f8e005e31 100644
--- a/content/telegraf/v1/input-plugins/nginx/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx/README.md, Nginx Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx/README.md, Nginx Plugin Source
---
# Nginx Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx_plus/_index.md b/content/telegraf/v1/input-plugins/nginx_plus/_index.md
index 19039c2ad..4b1f4b89a 100644
--- a/content/telegraf/v1/input-plugins/nginx_plus/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx_plus/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx_plus/README.md, Nginx Plus Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx_plus/README.md, Nginx Plus Plugin Source
---
# Nginx Plus Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx_plus_api/_index.md b/content/telegraf/v1/input-plugins/nginx_plus_api/_index.md
index 219e7dad2..fdf04eceb 100644
--- a/content/telegraf/v1/input-plugins/nginx_plus_api/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx_plus_api/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx_plus_api/README.md, Nginx Plus API Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx_plus_api/README.md, Nginx Plus API Plugin Source
---
# Nginx Plus API Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx_sts/_index.md b/content/telegraf/v1/input-plugins/nginx_sts/_index.md
index 8cedbcc79..afb76a4c4 100644
--- a/content/telegraf/v1/input-plugins/nginx_sts/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx_sts/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx_sts/README.md, Nginx Stream Server Traffic Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx_sts/README.md, Nginx Stream Server Traffic Plugin Source
---
# Nginx Stream Server Traffic Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx_upstream_check/_index.md b/content/telegraf/v1/input-plugins/nginx_upstream_check/_index.md
index a03f93b09..2313516d4 100644
--- a/content/telegraf/v1/input-plugins/nginx_upstream_check/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx_upstream_check/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx_upstream_check/README.md, Nginx Upstream Check Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx_upstream_check/README.md, Nginx Upstream Check Plugin Source
---
# Nginx Upstream Check Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nginx_vts/_index.md b/content/telegraf/v1/input-plugins/nginx_vts/_index.md
index 4542d2f7e..e79e08826 100644
--- a/content/telegraf/v1/input-plugins/nginx_vts/_index.md
+++ b/content/telegraf/v1/input-plugins/nginx_vts/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nginx_vts/README.md, Nginx Virtual Host Traffic Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nginx_vts/README.md, Nginx Virtual Host Traffic Plugin Source
---
# Nginx Virtual Host Traffic Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nomad/_index.md b/content/telegraf/v1/input-plugins/nomad/_index.md
index c657b90a7..e30dc578b 100644
--- a/content/telegraf/v1/input-plugins/nomad/_index.md
+++ b/content/telegraf/v1/input-plugins/nomad/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nomad/README.md, Hashicorp Nomad Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nomad/README.md, Hashicorp Nomad Plugin Source
---
# Hashicorp Nomad Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nsd/_index.md b/content/telegraf/v1/input-plugins/nsd/_index.md
index fb0917056..bdbe372d8 100644
--- a/content/telegraf/v1/input-plugins/nsd/_index.md
+++ b/content/telegraf/v1/input-plugins/nsd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nsd/README.md, NLnet Labs Name Server Daemon Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nsd/README.md, NLnet Labs Name Server Daemon Plugin Source
---
# NLnet Labs Name Server Daemon Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nsdp/_index.md b/content/telegraf/v1/input-plugins/nsdp/_index.md
index c2de1c995..fff2dbd14 100644
--- a/content/telegraf/v1/input-plugins/nsdp/_index.md
+++ b/content/telegraf/v1/input-plugins/nsdp/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.34.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nsdp/README.md, Netgear Switch Discovery Protocol Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nsdp/README.md, Netgear Switch Discovery Protocol Plugin Source
---
# Netgear Switch Discovery Protocol Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nsq/_index.md b/content/telegraf/v1/input-plugins/nsq/_index.md
index 549983ba0..a80e4d8ea 100644
--- a/content/telegraf/v1/input-plugins/nsq/_index.md
+++ b/content/telegraf/v1/input-plugins/nsq/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nsq/README.md, NSQ Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nsq/README.md, NSQ Plugin Source
---
# NSQ Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nsq_consumer/_index.md b/content/telegraf/v1/input-plugins/nsq_consumer/_index.md
index a87436ea2..f94985560 100644
--- a/content/telegraf/v1/input-plugins/nsq_consumer/_index.md
+++ b/content/telegraf/v1/input-plugins/nsq_consumer/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nsq_consumer/README.md, NSQ Consumer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nsq_consumer/README.md, NSQ Consumer Plugin Source
---
# NSQ Consumer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nstat/_index.md b/content/telegraf/v1/input-plugins/nstat/_index.md
index 3e74a8a81..d3f70b14d 100644
--- a/content/telegraf/v1/input-plugins/nstat/_index.md
+++ b/content/telegraf/v1/input-plugins/nstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nstat/README.md, Kernel Network Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nstat/README.md, Kernel Network Statistics Plugin Source
---
# Kernel Network Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ntpq/_index.md b/content/telegraf/v1/input-plugins/ntpq/_index.md
index ac1115ce8..d3ca0a637 100644
--- a/content/telegraf/v1/input-plugins/ntpq/_index.md
+++ b/content/telegraf/v1/input-plugins/ntpq/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ntpq/README.md, Network Time Protocol Query Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ntpq/README.md, Network Time Protocol Query Plugin Source
---
# Network Time Protocol Query Input Plugin
diff --git a/content/telegraf/v1/input-plugins/nvidia_smi/_index.md b/content/telegraf/v1/input-plugins/nvidia_smi/_index.md
index d35bdbbfe..317ba1518 100644
--- a/content/telegraf/v1/input-plugins/nvidia_smi/_index.md
+++ b/content/telegraf/v1/input-plugins/nvidia_smi/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/nvidia_smi/README.md, Nvidia System Management Interface (SMI) Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/nvidia_smi/README.md, Nvidia System Management Interface (SMI) Plugin Source
---
# Nvidia System Management Interface (SMI) Input Plugin
diff --git a/content/telegraf/v1/input-plugins/opcua/_index.md b/content/telegraf/v1/input-plugins/opcua/_index.md
index 6100b0eaf..88fdfc671 100644
--- a/content/telegraf/v1/input-plugins/opcua/_index.md
+++ b/content/telegraf/v1/input-plugins/opcua/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/opcua/README.md, OPC UA Client Reader Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/opcua/README.md, OPC UA Client Reader Plugin Source
---
# OPC UA Client Reader Input Plugin
diff --git a/content/telegraf/v1/input-plugins/opcua_listener/_index.md b/content/telegraf/v1/input-plugins/opcua_listener/_index.md
index 043f03a55..d3fad94dd 100644
--- a/content/telegraf/v1/input-plugins/opcua_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/opcua_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.25.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/opcua_listener/README.md, OPC UA Client Listener Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/opcua_listener/README.md, OPC UA Client Listener Plugin Source
---
# OPC UA Client Listener Input Plugin
diff --git a/content/telegraf/v1/input-plugins/openldap/_index.md b/content/telegraf/v1/input-plugins/openldap/_index.md
index 1dc9a64b4..85d896f9d 100644
--- a/content/telegraf/v1/input-plugins/openldap/_index.md
+++ b/content/telegraf/v1/input-plugins/openldap/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/openldap/README.md, OpenLDAP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/openldap/README.md, OpenLDAP Plugin Source
---
# OpenLDAP Input Plugin
diff --git a/content/telegraf/v1/input-plugins/openntpd/_index.md b/content/telegraf/v1/input-plugins/openntpd/_index.md
index 180ca5a46..bd9fcba82 100644
--- a/content/telegraf/v1/input-plugins/openntpd/_index.md
+++ b/content/telegraf/v1/input-plugins/openntpd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/openntpd/README.md, OpenNTPD Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/openntpd/README.md, OpenNTPD Plugin Source
---
# OpenNTPD Input Plugin
diff --git a/content/telegraf/v1/input-plugins/opensearch_query/_index.md b/content/telegraf/v1/input-plugins/opensearch_query/_index.md
index 19c6d994c..6c92db673 100644
--- a/content/telegraf/v1/input-plugins/opensearch_query/_index.md
+++ b/content/telegraf/v1/input-plugins/opensearch_query/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.26.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/opensearch_query/README.md, OpenSearch Query Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/opensearch_query/README.md, OpenSearch Query Plugin Source
---
# OpenSearch Query Input Plugin
diff --git a/content/telegraf/v1/input-plugins/opensmtpd/_index.md b/content/telegraf/v1/input-plugins/opensmtpd/_index.md
index 954840396..58c326185 100644
--- a/content/telegraf/v1/input-plugins/opensmtpd/_index.md
+++ b/content/telegraf/v1/input-plugins/opensmtpd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/opensmtpd/README.md, OpenSMTPD Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/opensmtpd/README.md, OpenSMTPD Plugin Source
---
# OpenSMTPD Input Plugin
diff --git a/content/telegraf/v1/input-plugins/openstack/_index.md b/content/telegraf/v1/input-plugins/openstack/_index.md
index b98b8f152..492663404 100644
--- a/content/telegraf/v1/input-plugins/openstack/_index.md
+++ b/content/telegraf/v1/input-plugins/openstack/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/openstack/README.md, OpenStack Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/openstack/README.md, OpenStack Plugin Source
---
# OpenStack Input Plugin
diff --git a/content/telegraf/v1/input-plugins/opentelemetry/_index.md b/content/telegraf/v1/input-plugins/opentelemetry/_index.md
index 4b2cafc7f..e64dd1374 100644
--- a/content/telegraf/v1/input-plugins/opentelemetry/_index.md
+++ b/content/telegraf/v1/input-plugins/opentelemetry/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/opentelemetry/README.md, OpenTelemetry Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/opentelemetry/README.md, OpenTelemetry Plugin Source
---
# OpenTelemetry Input Plugin
diff --git a/content/telegraf/v1/input-plugins/openweathermap/_index.md b/content/telegraf/v1/input-plugins/openweathermap/_index.md
index 88e7eaf72..d0a9a12a5 100644
--- a/content/telegraf/v1/input-plugins/openweathermap/_index.md
+++ b/content/telegraf/v1/input-plugins/openweathermap/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/openweathermap/README.md, OpenWeatherMap Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/openweathermap/README.md, OpenWeatherMap Plugin Source
---
# OpenWeatherMap Input Plugin
diff --git a/content/telegraf/v1/input-plugins/p4runtime/_index.md b/content/telegraf/v1/input-plugins/p4runtime/_index.md
index f0b79c03f..0b9346789 100644
--- a/content/telegraf/v1/input-plugins/p4runtime/_index.md
+++ b/content/telegraf/v1/input-plugins/p4runtime/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.26.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/p4runtime/README.md, P4 Runtime Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/p4runtime/README.md, P4 Runtime Plugin Source
---
# P4 Runtime Input Plugin
diff --git a/content/telegraf/v1/input-plugins/passenger/_index.md b/content/telegraf/v1/input-plugins/passenger/_index.md
index eec567344..559aefe43 100644
--- a/content/telegraf/v1/input-plugins/passenger/_index.md
+++ b/content/telegraf/v1/input-plugins/passenger/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/passenger/README.md, Passenger Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/passenger/README.md, Passenger Plugin Source
---
# Passenger Input Plugin
diff --git a/content/telegraf/v1/input-plugins/pf/_index.md b/content/telegraf/v1/input-plugins/pf/_index.md
index 1c4918994..43cba0fdb 100644
--- a/content/telegraf/v1/input-plugins/pf/_index.md
+++ b/content/telegraf/v1/input-plugins/pf/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/pf/README.md, PF Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/pf/README.md, PF Plugin Source
---
# PF Input Plugin
diff --git a/content/telegraf/v1/input-plugins/pgbouncer/_index.md b/content/telegraf/v1/input-plugins/pgbouncer/_index.md
index 802117955..715a5dcf3 100644
--- a/content/telegraf/v1/input-plugins/pgbouncer/_index.md
+++ b/content/telegraf/v1/input-plugins/pgbouncer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/pgbouncer/README.md, PgBouncer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/pgbouncer/README.md, PgBouncer Plugin Source
---
# PgBouncer Input Plugin
diff --git a/content/telegraf/v1/input-plugins/phpfpm/_index.md b/content/telegraf/v1/input-plugins/phpfpm/_index.md
index 20673fe7c..dd9376a4d 100644
--- a/content/telegraf/v1/input-plugins/phpfpm/_index.md
+++ b/content/telegraf/v1/input-plugins/phpfpm/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.10"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/phpfpm/README.md, PHP-FPM Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/phpfpm/README.md, PHP-FPM Plugin Source
---
# PHP-FPM Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ping/_index.md b/content/telegraf/v1/input-plugins/ping/_index.md
index 040760f29..9797bc63a 100644
--- a/content/telegraf/v1/input-plugins/ping/_index.md
+++ b/content/telegraf/v1/input-plugins/ping/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.8"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ping/README.md, Ping Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ping/README.md, Ping Plugin Source
---
# Ping Input Plugin
@@ -60,11 +60,12 @@ plugin ordering. See [CONFIGURATION.md](/telegraf/v1/configuration/#plugins) for
# ping_interval = 1.0
## If set, the time to wait for a ping response in seconds. Operates like
- ## the "-W" option of the ping command.
+ ## the "-W" option of the ping command (for "exec" method only)
# timeout = 1.0
- ## If set, the total ping deadline, in seconds. Operates like the -w option
- ## of the ping command.
+ ## If set, the total ping deadline, in seconds. Operates like the "-w"
+ ## option of the ping command. Use this option to control timeout behavior
+ ## when using the "native" method.
# deadline = 10
## Interface or source address to send ping from. Operates like the -I or -S
@@ -115,6 +116,9 @@ reported in native Go by the Telegraf process, eliminating the need to execute
the system `ping` command. Therefore, this method doesn't have external
dependencies.
+With `method = "native"`, the `timeout` option is ignored. Use `deadline` to
+control the total runtime instead.
+
### File Limit
Since this plugin runs the ping command, it may need to open multiple files per
diff --git a/content/telegraf/v1/input-plugins/postfix/_index.md b/content/telegraf/v1/input-plugins/postfix/_index.md
index 9b62f7702..092b17af4 100644
--- a/content/telegraf/v1/input-plugins/postfix/_index.md
+++ b/content/telegraf/v1/input-plugins/postfix/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/postfix/README.md, Postfix Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/postfix/README.md, Postfix Plugin Source
---
# Postfix Input Plugin
diff --git a/content/telegraf/v1/input-plugins/postgresql/_index.md b/content/telegraf/v1/input-plugins/postgresql/_index.md
index 13647079a..81a589fc3 100644
--- a/content/telegraf/v1/input-plugins/postgresql/_index.md
+++ b/content/telegraf/v1/input-plugins/postgresql/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/postgresql/README.md, PostgreSQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/postgresql/README.md, PostgreSQL Plugin Source
---
# PostgreSQL Input Plugin
diff --git a/content/telegraf/v1/input-plugins/postgresql_extensible/_index.md b/content/telegraf/v1/input-plugins/postgresql_extensible/_index.md
index 8d0975b8a..32682a15a 100644
--- a/content/telegraf/v1/input-plugins/postgresql_extensible/_index.md
+++ b/content/telegraf/v1/input-plugins/postgresql_extensible/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/postgresql_extensible/README.md, PostgreSQL Extensible Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/postgresql_extensible/README.md, PostgreSQL Extensible Plugin Source
---
# PostgreSQL Extensible Input Plugin
diff --git a/content/telegraf/v1/input-plugins/powerdns/_index.md b/content/telegraf/v1/input-plugins/powerdns/_index.md
index 2f6e7357a..414c7730d 100644
--- a/content/telegraf/v1/input-plugins/powerdns/_index.md
+++ b/content/telegraf/v1/input-plugins/powerdns/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.2"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/powerdns/README.md, PowerDNS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/powerdns/README.md, PowerDNS Plugin Source
---
# PowerDNS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/powerdns_recursor/_index.md b/content/telegraf/v1/input-plugins/powerdns_recursor/_index.md
index 1f40df3aa..395a6941b 100644
--- a/content/telegraf/v1/input-plugins/powerdns_recursor/_index.md
+++ b/content/telegraf/v1/input-plugins/powerdns_recursor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/powerdns_recursor/README.md, PowerDNS Recursor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/powerdns_recursor/README.md, PowerDNS Recursor Plugin Source
---
# PowerDNS Recursor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/processes/_index.md b/content/telegraf/v1/input-plugins/processes/_index.md
index 4cfd56d60..33a0907f2 100644
--- a/content/telegraf/v1/input-plugins/processes/_index.md
+++ b/content/telegraf/v1/input-plugins/processes/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.11.0"
os_support: "freebsd, linux, macos"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/processes/README.md, Processes Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/processes/README.md, Processes Plugin Source
---
# Processes Input Plugin
diff --git a/content/telegraf/v1/input-plugins/procstat/_index.md b/content/telegraf/v1/input-plugins/procstat/_index.md
index 6c053924a..38b0db03b 100644
--- a/content/telegraf/v1/input-plugins/procstat/_index.md
+++ b/content/telegraf/v1/input-plugins/procstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/procstat/README.md, Procstat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/procstat/README.md, Procstat Plugin Source
---
# Procstat Input Plugin
diff --git a/content/telegraf/v1/input-plugins/prometheus/_index.md b/content/telegraf/v1/input-plugins/prometheus/_index.md
index b50c5041e..3487fb5d9 100644
--- a/content/telegraf/v1/input-plugins/prometheus/_index.md
+++ b/content/telegraf/v1/input-plugins/prometheus/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/prometheus/README.md, Prometheus Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/prometheus/README.md, Prometheus Plugin Source
---
# Prometheus Input Plugin
diff --git a/content/telegraf/v1/input-plugins/promql/_index.md b/content/telegraf/v1/input-plugins/promql/_index.md
index b1170b421..95aef2b75 100644
--- a/content/telegraf/v1/input-plugins/promql/_index.md
+++ b/content/telegraf/v1/input-plugins/promql/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/promql/README.md, PromQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/promql/README.md, PromQL Plugin Source
---
# PromQL Input Plugin
diff --git a/content/telegraf/v1/input-plugins/proxmox/_index.md b/content/telegraf/v1/input-plugins/proxmox/_index.md
index c8c0e2276..abf7270f6 100644
--- a/content/telegraf/v1/input-plugins/proxmox/_index.md
+++ b/content/telegraf/v1/input-plugins/proxmox/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/proxmox/README.md, Proxmox Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/proxmox/README.md, Proxmox Plugin Source
---
# Proxmox Input Plugin
diff --git a/content/telegraf/v1/input-plugins/puppetagent/_index.md b/content/telegraf/v1/input-plugins/puppetagent/_index.md
index 89f732da6..233f683af 100644
--- a/content/telegraf/v1/input-plugins/puppetagent/_index.md
+++ b/content/telegraf/v1/input-plugins/puppetagent/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/puppetagent/README.md, Puppet Agent Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/puppetagent/README.md, Puppet Agent Plugin Source
---
# Puppet Agent Input Plugin
diff --git a/content/telegraf/v1/input-plugins/rabbitmq/_index.md b/content/telegraf/v1/input-plugins/rabbitmq/_index.md
index f6ed7c171..77ca8d9b7 100644
--- a/content/telegraf/v1/input-plugins/rabbitmq/_index.md
+++ b/content/telegraf/v1/input-plugins/rabbitmq/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/rabbitmq/README.md, RabbitMQ Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/rabbitmq/README.md, RabbitMQ Plugin Source
---
# RabbitMQ Input Plugin
diff --git a/content/telegraf/v1/input-plugins/radius/_index.md b/content/telegraf/v1/input-plugins/radius/_index.md
index 1850d08ae..e09070a68 100644
--- a/content/telegraf/v1/input-plugins/radius/_index.md
+++ b/content/telegraf/v1/input-plugins/radius/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.26.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/radius/README.md, Radius Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/radius/README.md, Radius Plugin Source
---
# Radius Input Plugin
diff --git a/content/telegraf/v1/input-plugins/raindrops/_index.md b/content/telegraf/v1/input-plugins/raindrops/_index.md
index a31e3bf26..e0910c202 100644
--- a/content/telegraf/v1/input-plugins/raindrops/_index.md
+++ b/content/telegraf/v1/input-plugins/raindrops/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/raindrops/README.md, Raindrops Middleware Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/raindrops/README.md, Raindrops Middleware Plugin Source
---
# Raindrops Middleware Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ras/_index.md b/content/telegraf/v1/input-plugins/ras/_index.md
index a13cdfaf5..c5504fa8b 100644
--- a/content/telegraf/v1/input-plugins/ras/_index.md
+++ b/content/telegraf/v1/input-plugins/ras/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ras/README.md, RAS Daemon Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ras/README.md, RAS Daemon Plugin Source
---
# RAS Daemon Input Plugin
diff --git a/content/telegraf/v1/input-plugins/ravendb/_index.md b/content/telegraf/v1/input-plugins/ravendb/_index.md
index a2ec18ced..73d4eade3 100644
--- a/content/telegraf/v1/input-plugins/ravendb/_index.md
+++ b/content/telegraf/v1/input-plugins/ravendb/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/ravendb/README.md, RavenDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/ravendb/README.md, RavenDB Plugin Source
---
# RavenDB Input Plugin
diff --git a/content/telegraf/v1/input-plugins/redfish/_index.md b/content/telegraf/v1/input-plugins/redfish/_index.md
index 069fbacd8..f7e47f13f 100644
--- a/content/telegraf/v1/input-plugins/redfish/_index.md
+++ b/content/telegraf/v1/input-plugins/redfish/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/redfish/README.md, Redfish Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/redfish/README.md, Redfish Plugin Source
---
# Redfish Input Plugin
diff --git a/content/telegraf/v1/input-plugins/redis/_index.md b/content/telegraf/v1/input-plugins/redis/_index.md
index 9472c4ae3..62bb5295c 100644
--- a/content/telegraf/v1/input-plugins/redis/_index.md
+++ b/content/telegraf/v1/input-plugins/redis/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/redis/README.md, Redis Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/redis/README.md, Redis Plugin Source
---
# Redis Input Plugin
diff --git a/content/telegraf/v1/input-plugins/redis_sentinel/_index.md b/content/telegraf/v1/input-plugins/redis_sentinel/_index.md
index ef77c13a0..7118694f2 100644
--- a/content/telegraf/v1/input-plugins/redis_sentinel/_index.md
+++ b/content/telegraf/v1/input-plugins/redis_sentinel/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/redis_sentinel/README.md, Redis Sentinel Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/redis_sentinel/README.md, Redis Sentinel Plugin Source
---
# Redis Sentinel Input Plugin
diff --git a/content/telegraf/v1/input-plugins/rethinkdb/_index.md b/content/telegraf/v1/input-plugins/rethinkdb/_index.md
index 3d9881c4d..89d878941 100644
--- a/content/telegraf/v1/input-plugins/rethinkdb/_index.md
+++ b/content/telegraf/v1/input-plugins/rethinkdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/rethinkdb/README.md, RethinkDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/rethinkdb/README.md, RethinkDB Plugin Source
---
# RethinkDB Input Plugin
diff --git a/content/telegraf/v1/input-plugins/riak/_index.md b/content/telegraf/v1/input-plugins/riak/_index.md
index 0531a8c98..8e0d7bc64 100644
--- a/content/telegraf/v1/input-plugins/riak/_index.md
+++ b/content/telegraf/v1/input-plugins/riak/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.4"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/riak/README.md, Riak Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/riak/README.md, Riak Plugin Source
---
# Riak Input Plugin
diff --git a/content/telegraf/v1/input-plugins/riemann_listener/_index.md b/content/telegraf/v1/input-plugins/riemann_listener/_index.md
index 62929360e..fb43a4480 100644
--- a/content/telegraf/v1/input-plugins/riemann_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/riemann_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.17.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/riemann_listener/README.md, Riemann Listener Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/riemann_listener/README.md, Riemann Listener Plugin Source
---
# Riemann Listener Input Plugin
diff --git a/content/telegraf/v1/input-plugins/s7comm/_index.md b/content/telegraf/v1/input-plugins/s7comm/_index.md
index 11776766a..3101f250a 100644
--- a/content/telegraf/v1/input-plugins/s7comm/_index.md
+++ b/content/telegraf/v1/input-plugins/s7comm/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.28.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/s7comm/README.md, Siemens S7 Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/s7comm/README.md, Siemens S7 Plugin Source
---
# Siemens S7 Input Plugin
diff --git a/content/telegraf/v1/input-plugins/salesforce/_index.md b/content/telegraf/v1/input-plugins/salesforce/_index.md
index 990a58193..063d8028c 100644
--- a/content/telegraf/v1/input-plugins/salesforce/_index.md
+++ b/content/telegraf/v1/input-plugins/salesforce/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/salesforce/README.md, Salesforce Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/salesforce/README.md, Salesforce Plugin Source
---
# Salesforce Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sensors/_index.md b/content/telegraf/v1/input-plugins/sensors/_index.md
index f2da8bc24..70c5b053e 100644
--- a/content/telegraf/v1/input-plugins/sensors/_index.md
+++ b/content/telegraf/v1/input-plugins/sensors/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sensors/README.md, LM Sensors Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sensors/README.md, LM Sensors Plugin Source
---
# LM Sensors Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sflow/_index.md b/content/telegraf/v1/input-plugins/sflow/_index.md
index 36de6d5de..0a654c55e 100644
--- a/content/telegraf/v1/input-plugins/sflow/_index.md
+++ b/content/telegraf/v1/input-plugins/sflow/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sflow/README.md, SFlow Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sflow/README.md, SFlow Plugin Source
---
# SFlow Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sip/_index.md b/content/telegraf/v1/input-plugins/sip/_index.md
index 9cabab6c7..1c9e40d5d 100644
--- a/content/telegraf/v1/input-plugins/sip/_index.md
+++ b/content/telegraf/v1/input-plugins/sip/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.38.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sip/README.md, SIP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sip/README.md, SIP Plugin Source
---
# SIP Input Plugin
diff --git a/content/telegraf/v1/input-plugins/slab/_index.md b/content/telegraf/v1/input-plugins/slab/_index.md
index 8e699cb75..ec054573c 100644
--- a/content/telegraf/v1/input-plugins/slab/_index.md
+++ b/content/telegraf/v1/input-plugins/slab/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.23.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/slab/README.md, Slab Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/slab/README.md, Slab Plugin Source
---
# Slab Input Plugin
diff --git a/content/telegraf/v1/input-plugins/slurm/_index.md b/content/telegraf/v1/input-plugins/slurm/_index.md
index 7b3d6a352..d602f23bc 100644
--- a/content/telegraf/v1/input-plugins/slurm/_index.md
+++ b/content/telegraf/v1/input-plugins/slurm/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.32.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/slurm/README.md, SLURM Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/slurm/README.md, SLURM Plugin Source
---
# SLURM Input Plugin
diff --git a/content/telegraf/v1/input-plugins/smart/_index.md b/content/telegraf/v1/input-plugins/smart/_index.md
index 2eff62373..4dffb14d2 100644
--- a/content/telegraf/v1/input-plugins/smart/_index.md
+++ b/content/telegraf/v1/input-plugins/smart/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/smart/README.md, S.M.A.R.T. Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/smart/README.md, S.M.A.R.T. Plugin Source
---
# S.M.A.R.T. Input Plugin
diff --git a/content/telegraf/v1/input-plugins/smartctl/_index.md b/content/telegraf/v1/input-plugins/smartctl/_index.md
index 36c1a65b5..de929a475 100644
--- a/content/telegraf/v1/input-plugins/smartctl/_index.md
+++ b/content/telegraf/v1/input-plugins/smartctl/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.31.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/smartctl/README.md, smartctl JSON Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/smartctl/README.md, smartctl JSON Plugin Source
---
# smartctl JSON Input Plugin
diff --git a/content/telegraf/v1/input-plugins/snmp/_index.md b/content/telegraf/v1/input-plugins/snmp/_index.md
index 5e7f7433a..01f7b0b4c 100644
--- a/content/telegraf/v1/input-plugins/snmp/_index.md
+++ b/content/telegraf/v1/input-plugins/snmp/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/snmp/README.md, SNMP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/snmp/README.md, SNMP Plugin Source
---
# SNMP Input Plugin
diff --git a/content/telegraf/v1/input-plugins/snmp_trap/_index.md b/content/telegraf/v1/input-plugins/snmp_trap/_index.md
index 0c785bae6..32ff7c170 100644
--- a/content/telegraf/v1/input-plugins/snmp_trap/_index.md
+++ b/content/telegraf/v1/input-plugins/snmp_trap/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/snmp_trap/README.md, SNMP Trap Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/snmp_trap/README.md, SNMP Trap Plugin Source
---
# SNMP Trap Input Plugin
diff --git a/content/telegraf/v1/input-plugins/socket_listener/_index.md b/content/telegraf/v1/input-plugins/socket_listener/_index.md
index 18c9a3bcc..d97d001a3 100644
--- a/content/telegraf/v1/input-plugins/socket_listener/_index.md
+++ b/content/telegraf/v1/input-plugins/socket_listener/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/socket_listener/README.md, Socket Listener Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/socket_listener/README.md, Socket Listener Plugin Source
---
# Socket Listener Input Plugin
diff --git a/content/telegraf/v1/input-plugins/socketstat/_index.md b/content/telegraf/v1/input-plugins/socketstat/_index.md
index eb978f037..a25a94df0 100644
--- a/content/telegraf/v1/input-plugins/socketstat/_index.md
+++ b/content/telegraf/v1/input-plugins/socketstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/socketstat/README.md, Socket Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/socketstat/README.md, Socket Statistics Plugin Source
---
# Socket Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/solr/_index.md b/content/telegraf/v1/input-plugins/solr/_index.md
index 7bba310ee..0fb08aa20 100644
--- a/content/telegraf/v1/input-plugins/solr/_index.md
+++ b/content/telegraf/v1/input-plugins/solr/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/solr/README.md, Apache Solr Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/solr/README.md, Apache Solr Plugin Source
---
# Apache Solr Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sql/_index.md b/content/telegraf/v1/input-plugins/sql/_index.md
index 0d4919ebd..a405060c1 100644
--- a/content/telegraf/v1/input-plugins/sql/_index.md
+++ b/content/telegraf/v1/input-plugins/sql/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sql/README.md, SQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sql/README.md, SQL Plugin Source
---
# SQL Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sqlserver/_index.md b/content/telegraf/v1/input-plugins/sqlserver/_index.md
index 848d689e0..21f141ed7 100644
--- a/content/telegraf/v1/input-plugins/sqlserver/_index.md
+++ b/content/telegraf/v1/input-plugins/sqlserver/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sqlserver/README.md, Microsoft SQL Server Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sqlserver/README.md, Microsoft SQL Server Plugin Source
---
# Microsoft SQL Server Input Plugin
diff --git a/content/telegraf/v1/input-plugins/stackdriver/_index.md b/content/telegraf/v1/input-plugins/stackdriver/_index.md
index e4dd9dfa1..823b11c6a 100644
--- a/content/telegraf/v1/input-plugins/stackdriver/_index.md
+++ b/content/telegraf/v1/input-plugins/stackdriver/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/stackdriver/README.md, Stackdriver Google Cloud Monitoring Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/stackdriver/README.md, Stackdriver Google Cloud Monitoring Plugin Source
---
# Stackdriver Google Cloud Monitoring Input Plugin
diff --git a/content/telegraf/v1/input-plugins/statsd/_index.md b/content/telegraf/v1/input-plugins/statsd/_index.md
index 7bb86749a..cc42065f3 100644
--- a/content/telegraf/v1/input-plugins/statsd/_index.md
+++ b/content/telegraf/v1/input-plugins/statsd/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/statsd/README.md, StatsD Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/statsd/README.md, StatsD Plugin Source
---
# StatsD Input Plugin
diff --git a/content/telegraf/v1/input-plugins/supervisor/_index.md b/content/telegraf/v1/input-plugins/supervisor/_index.md
index 0308383d9..eface786b 100644
--- a/content/telegraf/v1/input-plugins/supervisor/_index.md
+++ b/content/telegraf/v1/input-plugins/supervisor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/supervisor/README.md, Supervisor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/supervisor/README.md, Supervisor Plugin Source
---
# Supervisor Input Plugin
diff --git a/content/telegraf/v1/input-plugins/suricata/_index.md b/content/telegraf/v1/input-plugins/suricata/_index.md
index 00db0d451..fd1eaabf3 100644
--- a/content/telegraf/v1/input-plugins/suricata/_index.md
+++ b/content/telegraf/v1/input-plugins/suricata/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/suricata/README.md, Suricata Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/suricata/README.md, Suricata Plugin Source
---
# Suricata Input Plugin
diff --git a/content/telegraf/v1/input-plugins/swap/_index.md b/content/telegraf/v1/input-plugins/swap/_index.md
index 6316dac31..0cf7576b7 100644
--- a/content/telegraf/v1/input-plugins/swap/_index.md
+++ b/content/telegraf/v1/input-plugins/swap/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/swap/README.md, Swap Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/swap/README.md, Swap Plugin Source
---
# Swap Input Plugin
diff --git a/content/telegraf/v1/input-plugins/synproxy/_index.md b/content/telegraf/v1/input-plugins/synproxy/_index.md
index b958653fa..9b5aeddf9 100644
--- a/content/telegraf/v1/input-plugins/synproxy/_index.md
+++ b/content/telegraf/v1/input-plugins/synproxy/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/synproxy/README.md, Synproxy Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/synproxy/README.md, Synproxy Plugin Source
---
# Synproxy Input Plugin
diff --git a/content/telegraf/v1/input-plugins/syslog/_index.md b/content/telegraf/v1/input-plugins/syslog/_index.md
index fa16c2085..b80f3217c 100644
--- a/content/telegraf/v1/input-plugins/syslog/_index.md
+++ b/content/telegraf/v1/input-plugins/syslog/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/syslog/README.md, Syslog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/syslog/README.md, Syslog Plugin Source
---
# Syslog Input Plugin
diff --git a/content/telegraf/v1/input-plugins/sysstat/_index.md b/content/telegraf/v1/input-plugins/sysstat/_index.md
index 5dc88528f..64e3fcc40 100644
--- a/content/telegraf/v1/input-plugins/sysstat/_index.md
+++ b/content/telegraf/v1/input-plugins/sysstat/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.12.1"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/sysstat/README.md, System Performance Statistics Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/sysstat/README.md, System Performance Statistics Plugin Source
---
# System Performance Statistics Input Plugin
diff --git a/content/telegraf/v1/input-plugins/system/_index.md b/content/telegraf/v1/input-plugins/system/_index.md
index e8f6ddac2..00d1f5479 100644
--- a/content/telegraf/v1/input-plugins/system/_index.md
+++ b/content/telegraf/v1/input-plugins/system/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.6"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/system/README.md, System Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/system/README.md, System Plugin Source
---
# System Input Plugin
diff --git a/content/telegraf/v1/input-plugins/systemd_units/_index.md b/content/telegraf/v1/input-plugins/systemd_units/_index.md
index d68b0d64c..2c85a049a 100644
--- a/content/telegraf/v1/input-plugins/systemd_units/_index.md
+++ b/content/telegraf/v1/input-plugins/systemd_units/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/systemd_units/README.md, Systemd-Units Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/systemd_units/README.md, Systemd-Units Plugin Source
---
# Systemd-Units Input Plugin
diff --git a/content/telegraf/v1/input-plugins/tacacs/_index.md b/content/telegraf/v1/input-plugins/tacacs/_index.md
index 085b3de27..acda19227 100644
--- a/content/telegraf/v1/input-plugins/tacacs/_index.md
+++ b/content/telegraf/v1/input-plugins/tacacs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.28.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/tacacs/README.md, Tacacs Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/tacacs/README.md, Tacacs Plugin Source
---
# Tacacs Input Plugin
diff --git a/content/telegraf/v1/input-plugins/tail/_index.md b/content/telegraf/v1/input-plugins/tail/_index.md
index 1c358c692..1c60bba22 100644
--- a/content/telegraf/v1/input-plugins/tail/_index.md
+++ b/content/telegraf/v1/input-plugins/tail/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.2"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/tail/README.md, Tail Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/tail/README.md, Tail Plugin Source
---
# Tail Input Plugin
diff --git a/content/telegraf/v1/input-plugins/teamspeak/_index.md b/content/telegraf/v1/input-plugins/teamspeak/_index.md
index 3834d03e1..6085cc667 100644
--- a/content/telegraf/v1/input-plugins/teamspeak/_index.md
+++ b/content/telegraf/v1/input-plugins/teamspeak/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/teamspeak/README.md, Teamspeak Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/teamspeak/README.md, Teamspeak Plugin Source
---
# Teamspeak Input Plugin
diff --git a/content/telegraf/v1/input-plugins/temp/_index.md b/content/telegraf/v1/input-plugins/temp/_index.md
index e0708cdff..c27800fbe 100644
--- a/content/telegraf/v1/input-plugins/temp/_index.md
+++ b/content/telegraf/v1/input-plugins/temp/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "linux, macos, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/temp/README.md, Temperature Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/temp/README.md, Temperature Plugin Source
---
# Temperature Input Plugin
diff --git a/content/telegraf/v1/input-plugins/tengine/_index.md b/content/telegraf/v1/input-plugins/tengine/_index.md
index 773aa9b61..ae51e53dd 100644
--- a/content/telegraf/v1/input-plugins/tengine/_index.md
+++ b/content/telegraf/v1/input-plugins/tengine/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/tengine/README.md, Tengine Web Server Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/tengine/README.md, Tengine Web Server Plugin Source
---
# Tengine Web Server Input Plugin
diff --git a/content/telegraf/v1/input-plugins/timex/_index.md b/content/telegraf/v1/input-plugins/timex/_index.md
index 2e8c68d74..ec0dbb1a3 100644
--- a/content/telegraf/v1/input-plugins/timex/_index.md
+++ b/content/telegraf/v1/input-plugins/timex/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/timex/README.md, Timex Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/timex/README.md, Timex Plugin Source
---
# Timex Input Plugin
diff --git a/content/telegraf/v1/input-plugins/tomcat/_index.md b/content/telegraf/v1/input-plugins/tomcat/_index.md
index fd55d5ca4..909f9582f 100644
--- a/content/telegraf/v1/input-plugins/tomcat/_index.md
+++ b/content/telegraf/v1/input-plugins/tomcat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/tomcat/README.md, Apache Tomcat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/tomcat/README.md, Apache Tomcat Plugin Source
---
# Apache Tomcat Input Plugin
diff --git a/content/telegraf/v1/input-plugins/trig/_index.md b/content/telegraf/v1/input-plugins/trig/_index.md
index aaadc3279..7d41a6037 100644
--- a/content/telegraf/v1/input-plugins/trig/_index.md
+++ b/content/telegraf/v1/input-plugins/trig/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/trig/README.md, Trig Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/trig/README.md, Trig Plugin Source
---
# Trig Input Plugin
diff --git a/content/telegraf/v1/input-plugins/turbostat/_index.md b/content/telegraf/v1/input-plugins/turbostat/_index.md
index b3d9a9e50..05f3cb55d 100644
--- a/content/telegraf/v1/input-plugins/turbostat/_index.md
+++ b/content/telegraf/v1/input-plugins/turbostat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.36.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/turbostat/README.md, Turbostat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/turbostat/README.md, Turbostat Plugin Source
---
# Turbostat Input Plugin
diff --git a/content/telegraf/v1/input-plugins/twemproxy/_index.md b/content/telegraf/v1/input-plugins/twemproxy/_index.md
index d1d1d4710..35a358ebd 100644
--- a/content/telegraf/v1/input-plugins/twemproxy/_index.md
+++ b/content/telegraf/v1/input-plugins/twemproxy/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/twemproxy/README.md, Twemproxy Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/twemproxy/README.md, Twemproxy Plugin Source
---
# Twemproxy Input Plugin
diff --git a/content/telegraf/v1/input-plugins/unbound/_index.md b/content/telegraf/v1/input-plugins/unbound/_index.md
index cbcc346bd..b0fd7077a 100644
--- a/content/telegraf/v1/input-plugins/unbound/_index.md
+++ b/content/telegraf/v1/input-plugins/unbound/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/unbound/README.md, Unbound Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/unbound/README.md, Unbound Plugin Source
---
# Unbound Input Plugin
diff --git a/content/telegraf/v1/input-plugins/upsd/_index.md b/content/telegraf/v1/input-plugins/upsd/_index.md
index 0de57dba9..1bbafc808 100644
--- a/content/telegraf/v1/input-plugins/upsd/_index.md
+++ b/content/telegraf/v1/input-plugins/upsd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/upsd/README.md, UPSD Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/upsd/README.md, UPSD Plugin Source
---
# UPSD Input Plugin
diff --git a/content/telegraf/v1/input-plugins/uwsgi/_index.md b/content/telegraf/v1/input-plugins/uwsgi/_index.md
index 0aac387b4..493169762 100644
--- a/content/telegraf/v1/input-plugins/uwsgi/_index.md
+++ b/content/telegraf/v1/input-plugins/uwsgi/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/uwsgi/README.md, uWSGI Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/uwsgi/README.md, uWSGI Plugin Source
---
# uWSGI Input Plugin
diff --git a/content/telegraf/v1/input-plugins/varnish/_index.md b/content/telegraf/v1/input-plugins/varnish/_index.md
index 0eeeed248..514a526a2 100644
--- a/content/telegraf/v1/input-plugins/varnish/_index.md
+++ b/content/telegraf/v1/input-plugins/varnish/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.1"
os_support: "freebsd, linux, macos"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/varnish/README.md, Varnish Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/varnish/README.md, Varnish Plugin Source
---
# Varnish Input Plugin
diff --git a/content/telegraf/v1/input-plugins/vault/_index.md b/content/telegraf/v1/input-plugins/vault/_index.md
index 7ba6462ec..a3fd25fa7 100644
--- a/content/telegraf/v1/input-plugins/vault/_index.md
+++ b/content/telegraf/v1/input-plugins/vault/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/vault/README.md, Hashicorp Vault Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/vault/README.md, Hashicorp Vault Plugin Source
---
# Hashicorp Vault Input Plugin
diff --git a/content/telegraf/v1/input-plugins/vsphere/_index.md b/content/telegraf/v1/input-plugins/vsphere/_index.md
index 9913b6f84..0760e69ae 100644
--- a/content/telegraf/v1/input-plugins/vsphere/_index.md
+++ b/content/telegraf/v1/input-plugins/vsphere/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/vsphere/README.md, VMware vSphere Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/vsphere/README.md, VMware vSphere Plugin Source
---
# VMware vSphere Input Plugin
diff --git a/content/telegraf/v1/input-plugins/webhooks/_index.md b/content/telegraf/v1/input-plugins/webhooks/_index.md
index e653be2f0..76e2f2e1b 100644
--- a/content/telegraf/v1/input-plugins/webhooks/_index.md
+++ b/content/telegraf/v1/input-plugins/webhooks/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/webhooks/README.md, Webhooks Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/webhooks/README.md, Webhooks Plugin Source
---
# Webhooks Input Plugin
diff --git a/content/telegraf/v1/input-plugins/whois/_index.md b/content/telegraf/v1/input-plugins/whois/_index.md
index cdaea29eb..d4f6d72f3 100644
--- a/content/telegraf/v1/input-plugins/whois/_index.md
+++ b/content/telegraf/v1/input-plugins/whois/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/whois/README.md, WHOIS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/whois/README.md, WHOIS Plugin Source
---
# WHOIS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/win_eventlog/_index.md b/content/telegraf/v1/input-plugins/win_eventlog/_index.md
index 7c7cfb820..903597fe6 100644
--- a/content/telegraf/v1/input-plugins/win_eventlog/_index.md
+++ b/content/telegraf/v1/input-plugins/win_eventlog/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/win_eventlog/README.md, Windows Eventlog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/win_eventlog/README.md, Windows Eventlog Plugin Source
---
# Windows Eventlog Input Plugin
diff --git a/content/telegraf/v1/input-plugins/win_perf_counters/_index.md b/content/telegraf/v1/input-plugins/win_perf_counters/_index.md
index 425519318..8397124cb 100644
--- a/content/telegraf/v1/input-plugins/win_perf_counters/_index.md
+++ b/content/telegraf/v1/input-plugins/win_perf_counters/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.2"
os_support: "windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/win_perf_counters/README.md, Windows Performance Counters Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/win_perf_counters/README.md, Windows Performance Counters Plugin Source
---
# Windows Performance Counters Input Plugin
diff --git a/content/telegraf/v1/input-plugins/win_services/_index.md b/content/telegraf/v1/input-plugins/win_services/_index.md
index 1360ba626..492eb3d3a 100644
--- a/content/telegraf/v1/input-plugins/win_services/_index.md
+++ b/content/telegraf/v1/input-plugins/win_services/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/win_services/README.md, Windows Services Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/win_services/README.md, Windows Services Plugin Source
---
# Windows Services Input Plugin
diff --git a/content/telegraf/v1/input-plugins/win_wmi/_index.md b/content/telegraf/v1/input-plugins/win_wmi/_index.md
index 509fcdb91..e62a3e5b3 100644
--- a/content/telegraf/v1/input-plugins/win_wmi/_index.md
+++ b/content/telegraf/v1/input-plugins/win_wmi/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.26.0"
os_support: "windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/win_wmi/README.md, Windows Management Instrumentation Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/win_wmi/README.md, Windows Management Instrumentation Plugin Source
---
# Windows Management Instrumentation Input Plugin
diff --git a/content/telegraf/v1/input-plugins/wireguard/_index.md b/content/telegraf/v1/input-plugins/wireguard/_index.md
index 2b4cf5b31..5c9832bea 100644
--- a/content/telegraf/v1/input-plugins/wireguard/_index.md
+++ b/content/telegraf/v1/input-plugins/wireguard/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/wireguard/README.md, Wireguard Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/wireguard/README.md, Wireguard Plugin Source
---
# Wireguard Input Plugin
diff --git a/content/telegraf/v1/input-plugins/wireless/_index.md b/content/telegraf/v1/input-plugins/wireless/_index.md
index 5d4035ea8..3e4fb0b88 100644
--- a/content/telegraf/v1/input-plugins/wireless/_index.md
+++ b/content/telegraf/v1/input-plugins/wireless/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/wireless/README.md, Wireless Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/wireless/README.md, Wireless Plugin Source
---
# Wireless Input Plugin
diff --git a/content/telegraf/v1/input-plugins/x509_cert/_index.md b/content/telegraf/v1/input-plugins/x509_cert/_index.md
index 71476f6c9..de9f953c1 100644
--- a/content/telegraf/v1/input-plugins/x509_cert/_index.md
+++ b/content/telegraf/v1/input-plugins/x509_cert/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/x509_cert/README.md, x509 Certificate Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/x509_cert/README.md, x509 Certificate Plugin Source
---
# x509 Certificate Input Plugin
diff --git a/content/telegraf/v1/input-plugins/xtremio/_index.md b/content/telegraf/v1/input-plugins/xtremio/_index.md
index 9a7ce75f9..cdd334dbb 100644
--- a/content/telegraf/v1/input-plugins/xtremio/_index.md
+++ b/content/telegraf/v1/input-plugins/xtremio/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/xtremio/README.md, Dell EMC XtremIO Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/xtremio/README.md, Dell EMC XtremIO Plugin Source
---
# Dell EMC XtremIO Input Plugin
diff --git a/content/telegraf/v1/input-plugins/zfs/_index.md b/content/telegraf/v1/input-plugins/zfs/_index.md
index d054658c8..bec55fc60 100644
--- a/content/telegraf/v1/input-plugins/zfs/_index.md
+++ b/content/telegraf/v1/input-plugins/zfs/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.1"
os_support: "freebsd, linux"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/zfs/README.md, ZFS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/zfs/README.md, ZFS Plugin Source
---
# ZFS Input Plugin
diff --git a/content/telegraf/v1/input-plugins/zipkin/_index.md b/content/telegraf/v1/input-plugins/zipkin/_index.md
index 43c8473f9..3289d0f19 100644
--- a/content/telegraf/v1/input-plugins/zipkin/_index.md
+++ b/content/telegraf/v1/input-plugins/zipkin/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.4.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/zipkin/README.md, Zipkin Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/zipkin/README.md, Zipkin Plugin Source
---
# Zipkin Input Plugin
diff --git a/content/telegraf/v1/input-plugins/zookeeper/_index.md b/content/telegraf/v1/input-plugins/zookeeper/_index.md
index 847a88b3e..26d5bcd5b 100644
--- a/content/telegraf/v1/input-plugins/zookeeper/_index.md
+++ b/content/telegraf/v1/input-plugins/zookeeper/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/inputs/zookeeper/README.md, Apache Zookeeper Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/inputs/zookeeper/README.md, Apache Zookeeper Plugin Source
---
# Apache Zookeeper Input Plugin
diff --git a/content/telegraf/v1/output-plugins/amon/_index.md b/content/telegraf/v1/output-plugins/amon/_index.md
index 30fb0b5e4..9b7742c22 100644
--- a/content/telegraf/v1/output-plugins/amon/_index.md
+++ b/content/telegraf/v1/output-plugins/amon/_index.md
@@ -12,7 +12,7 @@ removal: v1.40.0
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/amon/README.md, Amon Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/amon/README.md, Amon Plugin Source
---
# Amon Output Plugin
diff --git a/content/telegraf/v1/output-plugins/amqp/_index.md b/content/telegraf/v1/output-plugins/amqp/_index.md
index 007cff3f8..9b89233f1 100644
--- a/content/telegraf/v1/output-plugins/amqp/_index.md
+++ b/content/telegraf/v1/output-plugins/amqp/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.9"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/amqp/README.md, AMQP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/amqp/README.md, AMQP Plugin Source
---
# AMQP Output Plugin
diff --git a/content/telegraf/v1/output-plugins/application_insights/_index.md b/content/telegraf/v1/output-plugins/application_insights/_index.md
index b00a7af99..d00ab68e1 100644
--- a/content/telegraf/v1/output-plugins/application_insights/_index.md
+++ b/content/telegraf/v1/output-plugins/application_insights/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/application_insights/README.md, Azure Application Insights Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/application_insights/README.md, Azure Application Insights Plugin Source
---
# Azure Application Insights Output Plugin
diff --git a/content/telegraf/v1/output-plugins/arc/_index.md b/content/telegraf/v1/output-plugins/arc/_index.md
index 0d3ef9d2b..1dab35186 100644
--- a/content/telegraf/v1/output-plugins/arc/_index.md
+++ b/content/telegraf/v1/output-plugins/arc/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/arc/README.md, Arc Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/arc/README.md, Arc Plugin Source
---
# Arc Output Plugin
diff --git a/content/telegraf/v1/output-plugins/azure_data_explorer/_index.md b/content/telegraf/v1/output-plugins/azure_data_explorer/_index.md
index 04647c41e..cc34762fd 100644
--- a/content/telegraf/v1/output-plugins/azure_data_explorer/_index.md
+++ b/content/telegraf/v1/output-plugins/azure_data_explorer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/azure_data_explorer/README.md, Azure Data Explorer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/azure_data_explorer/README.md, Azure Data Explorer Plugin Source
---
# Azure Data Explorer Output Plugin
diff --git a/content/telegraf/v1/output-plugins/azure_monitor/_index.md b/content/telegraf/v1/output-plugins/azure_monitor/_index.md
index 6c2c587bf..754a98dfc 100644
--- a/content/telegraf/v1/output-plugins/azure_monitor/_index.md
+++ b/content/telegraf/v1/output-plugins/azure_monitor/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/azure_monitor/README.md, Azure Monitor Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/azure_monitor/README.md, Azure Monitor Plugin Source
---
# Azure Monitor Output Plugin
diff --git a/content/telegraf/v1/output-plugins/bigquery/_index.md b/content/telegraf/v1/output-plugins/bigquery/_index.md
index 81e032ce8..543c168a1 100644
--- a/content/telegraf/v1/output-plugins/bigquery/_index.md
+++ b/content/telegraf/v1/output-plugins/bigquery/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/bigquery/README.md, Google BigQuery Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/bigquery/README.md, Google BigQuery Plugin Source
---
# Google BigQuery Output Plugin
diff --git a/content/telegraf/v1/output-plugins/clarify/_index.md b/content/telegraf/v1/output-plugins/clarify/_index.md
index 03a277e44..20e369cdc 100644
--- a/content/telegraf/v1/output-plugins/clarify/_index.md
+++ b/content/telegraf/v1/output-plugins/clarify/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.27.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/clarify/README.md, Clarify Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/clarify/README.md, Clarify Plugin Source
---
# Clarify Output Plugin
diff --git a/content/telegraf/v1/output-plugins/cloud_pubsub/_index.md b/content/telegraf/v1/output-plugins/cloud_pubsub/_index.md
index 1bfe0bccc..aff97ed08 100644
--- a/content/telegraf/v1/output-plugins/cloud_pubsub/_index.md
+++ b/content/telegraf/v1/output-plugins/cloud_pubsub/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.10.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/cloud_pubsub/README.md, Google Cloud PubSub Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/cloud_pubsub/README.md, Google Cloud PubSub Plugin Source
---
# Google Cloud PubSub Output Plugin
diff --git a/content/telegraf/v1/output-plugins/cloudwatch/_index.md b/content/telegraf/v1/output-plugins/cloudwatch/_index.md
index 0b956edea..1e4b2ae29 100644
--- a/content/telegraf/v1/output-plugins/cloudwatch/_index.md
+++ b/content/telegraf/v1/output-plugins/cloudwatch/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/cloudwatch/README.md, Amazon CloudWatch Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/cloudwatch/README.md, Amazon CloudWatch Plugin Source
---
# Amazon CloudWatch Output Plugin
diff --git a/content/telegraf/v1/output-plugins/cloudwatch_logs/_index.md b/content/telegraf/v1/output-plugins/cloudwatch_logs/_index.md
index 007c3cd87..bfebc31d7 100644
--- a/content/telegraf/v1/output-plugins/cloudwatch_logs/_index.md
+++ b/content/telegraf/v1/output-plugins/cloudwatch_logs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/cloudwatch_logs/README.md, Amazon CloudWatch Logs Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/cloudwatch_logs/README.md, Amazon CloudWatch Logs Plugin Source
---
# Amazon CloudWatch Logs Output Plugin
diff --git a/content/telegraf/v1/output-plugins/cratedb/_index.md b/content/telegraf/v1/output-plugins/cratedb/_index.md
index 145464efd..71f76b1ee 100644
--- a/content/telegraf/v1/output-plugins/cratedb/_index.md
+++ b/content/telegraf/v1/output-plugins/cratedb/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/cratedb/README.md, CrateDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/cratedb/README.md, CrateDB Plugin Source
---
# CrateDB Output Plugin
diff --git a/content/telegraf/v1/output-plugins/datadog/_index.md b/content/telegraf/v1/output-plugins/datadog/_index.md
index 2574e9340..fb9a30a53 100644
--- a/content/telegraf/v1/output-plugins/datadog/_index.md
+++ b/content/telegraf/v1/output-plugins/datadog/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.6"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/datadog/README.md, Datadog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/datadog/README.md, Datadog Plugin Source
---
# Datadog Output Plugin
diff --git a/content/telegraf/v1/output-plugins/discard/_index.md b/content/telegraf/v1/output-plugins/discard/_index.md
index b587e37d9..07ba5fe59 100644
--- a/content/telegraf/v1/output-plugins/discard/_index.md
+++ b/content/telegraf/v1/output-plugins/discard/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/discard/README.md, Discard Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/discard/README.md, Discard Plugin Source
---
# Discard Output Plugin
diff --git a/content/telegraf/v1/output-plugins/dynatrace/_index.md b/content/telegraf/v1/output-plugins/dynatrace/_index.md
index 17dd1fa96..f542584c4 100644
--- a/content/telegraf/v1/output-plugins/dynatrace/_index.md
+++ b/content/telegraf/v1/output-plugins/dynatrace/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/dynatrace/README.md, Dynatrace Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/dynatrace/README.md, Dynatrace Plugin Source
---
# Dynatrace Output Plugin
diff --git a/content/telegraf/v1/output-plugins/elasticsearch/_index.md b/content/telegraf/v1/output-plugins/elasticsearch/_index.md
index c8f39f92d..8171a63b9 100644
--- a/content/telegraf/v1/output-plugins/elasticsearch/_index.md
+++ b/content/telegraf/v1/output-plugins/elasticsearch/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/elasticsearch/README.md, Elasticsearch Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/elasticsearch/README.md, Elasticsearch Plugin Source
---
# Elasticsearch Output Plugin
diff --git a/content/telegraf/v1/output-plugins/event_hubs/_index.md b/content/telegraf/v1/output-plugins/event_hubs/_index.md
index d8cfa9cb8..b31e939e7 100644
--- a/content/telegraf/v1/output-plugins/event_hubs/_index.md
+++ b/content/telegraf/v1/output-plugins/event_hubs/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/event_hubs/README.md, Azure Event Hubs Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/event_hubs/README.md, Azure Event Hubs Plugin Source
---
# Azure Event Hubs Output Plugin
diff --git a/content/telegraf/v1/output-plugins/exec/_index.md b/content/telegraf/v1/output-plugins/exec/_index.md
index 6b9fc2a95..40abd5975 100644
--- a/content/telegraf/v1/output-plugins/exec/_index.md
+++ b/content/telegraf/v1/output-plugins/exec/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/exec/README.md, Executable Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/exec/README.md, Executable Plugin Source
---
# Executable Output Plugin
diff --git a/content/telegraf/v1/output-plugins/execd/_index.md b/content/telegraf/v1/output-plugins/execd/_index.md
index 0958fd4b1..28dbddf97 100644
--- a/content/telegraf/v1/output-plugins/execd/_index.md
+++ b/content/telegraf/v1/output-plugins/execd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/execd/README.md, Executable Daemon Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/execd/README.md, Executable Daemon Plugin Source
---
# Executable Daemon Output Plugin
diff --git a/content/telegraf/v1/output-plugins/file/_index.md b/content/telegraf/v1/output-plugins/file/_index.md
index 38ce613c9..526ff14c1 100644
--- a/content/telegraf/v1/output-plugins/file/_index.md
+++ b/content/telegraf/v1/output-plugins/file/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.3"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/file/README.md, File Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/file/README.md, File Plugin Source
---
# File Output Plugin
diff --git a/content/telegraf/v1/output-plugins/graphite/_index.md b/content/telegraf/v1/output-plugins/graphite/_index.md
index ec2cb6558..372a857fa 100644
--- a/content/telegraf/v1/output-plugins/graphite/_index.md
+++ b/content/telegraf/v1/output-plugins/graphite/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.10.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/graphite/README.md, Graphite Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/graphite/README.md, Graphite Plugin Source
---
# Graphite Output Plugin
diff --git a/content/telegraf/v1/output-plugins/graylog/_index.md b/content/telegraf/v1/output-plugins/graylog/_index.md
index 98e2c1b3f..442cab400 100644
--- a/content/telegraf/v1/output-plugins/graylog/_index.md
+++ b/content/telegraf/v1/output-plugins/graylog/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/graylog/README.md, Graylog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/graylog/README.md, Graylog Plugin Source
---
# Graylog Output Plugin
diff --git a/content/telegraf/v1/output-plugins/groundwork/_index.md b/content/telegraf/v1/output-plugins/groundwork/_index.md
index 1308320bb..82020b7a7 100644
--- a/content/telegraf/v1/output-plugins/groundwork/_index.md
+++ b/content/telegraf/v1/output-plugins/groundwork/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/groundwork/README.md, GroundWork Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/groundwork/README.md, GroundWork Plugin Source
---
# GroundWork Output Plugin
diff --git a/content/telegraf/v1/output-plugins/health/_index.md b/content/telegraf/v1/output-plugins/health/_index.md
index 66890f70d..ad35bd26a 100644
--- a/content/telegraf/v1/output-plugins/health/_index.md
+++ b/content/telegraf/v1/output-plugins/health/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/health/README.md, Health Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/health/README.md, Health Plugin Source
---
# Health Output Plugin
diff --git a/content/telegraf/v1/output-plugins/heartbeat/_index.md b/content/telegraf/v1/output-plugins/heartbeat/_index.md
index f507c8c17..9c52f9d86 100644
--- a/content/telegraf/v1/output-plugins/heartbeat/_index.md
+++ b/content/telegraf/v1/output-plugins/heartbeat/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.37.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/heartbeat/README.md, Heartbeat Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/heartbeat/README.md, Heartbeat Plugin Source
---
# Heartbeat Output Plugin
diff --git a/content/telegraf/v1/output-plugins/http/_index.md b/content/telegraf/v1/output-plugins/http/_index.md
index c39dd87b1..217355d4c 100644
--- a/content/telegraf/v1/output-plugins/http/_index.md
+++ b/content/telegraf/v1/output-plugins/http/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/http/README.md, HTTP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/http/README.md, HTTP Plugin Source
---
# HTTP Output Plugin
diff --git a/content/telegraf/v1/output-plugins/influxdb/_index.md b/content/telegraf/v1/output-plugins/influxdb/_index.md
index b574679c6..40f8fdffc 100644
--- a/content/telegraf/v1/output-plugins/influxdb/_index.md
+++ b/content/telegraf/v1/output-plugins/influxdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/influxdb/README.md, InfluxDB v1.x Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/influxdb/README.md, InfluxDB v1.x Plugin Source
---
# InfluxDB v1.x Output Plugin
diff --git a/content/telegraf/v1/output-plugins/influxdb_v2/_index.md b/content/telegraf/v1/output-plugins/influxdb_v2/_index.md
index dfbec8759..e92c57e78 100644
--- a/content/telegraf/v1/output-plugins/influxdb_v2/_index.md
+++ b/content/telegraf/v1/output-plugins/influxdb_v2/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/influxdb_v2/README.md, InfluxDB v2.x Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/influxdb_v2/README.md, InfluxDB v2.x Plugin Source
---
# InfluxDB v2.x Output Plugin
diff --git a/content/telegraf/v1/output-plugins/influxdb_v3/_index.md b/content/telegraf/v1/output-plugins/influxdb_v3/_index.md
index 3ba99085d..dc3f277dd 100644
--- a/content/telegraf/v1/output-plugins/influxdb_v3/_index.md
+++ b/content/telegraf/v1/output-plugins/influxdb_v3/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.38.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/influxdb_v3/README.md, InfluxDB v3.x Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/influxdb_v3/README.md, InfluxDB v3.x Plugin Source
---
# InfluxDB v3.x Output Plugin
diff --git a/content/telegraf/v1/output-plugins/inlong/_index.md b/content/telegraf/v1/output-plugins/inlong/_index.md
index 1568c504b..e5c45c61e 100644
--- a/content/telegraf/v1/output-plugins/inlong/_index.md
+++ b/content/telegraf/v1/output-plugins/inlong/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/inlong/README.md, Inlong Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/inlong/README.md, Inlong Plugin Source
---
# Inlong Output Plugin
diff --git a/content/telegraf/v1/output-plugins/instrumental/_index.md b/content/telegraf/v1/output-plugins/instrumental/_index.md
index ebc6fdb2a..94d19ec2d 100644
--- a/content/telegraf/v1/output-plugins/instrumental/_index.md
+++ b/content/telegraf/v1/output-plugins/instrumental/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.13.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/instrumental/README.md, Instrumental Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/instrumental/README.md, Instrumental Plugin Source
---
# Instrumental Output Plugin
diff --git a/content/telegraf/v1/output-plugins/iotdb/_index.md b/content/telegraf/v1/output-plugins/iotdb/_index.md
index 45776967e..d315c4c1d 100644
--- a/content/telegraf/v1/output-plugins/iotdb/_index.md
+++ b/content/telegraf/v1/output-plugins/iotdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/iotdb/README.md, Apache IoTDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/iotdb/README.md, Apache IoTDB Plugin Source
---
# Apache IoTDB Output Plugin
diff --git a/content/telegraf/v1/output-plugins/kafka/_index.md b/content/telegraf/v1/output-plugins/kafka/_index.md
index d04a67847..2b25405d9 100644
--- a/content/telegraf/v1/output-plugins/kafka/_index.md
+++ b/content/telegraf/v1/output-plugins/kafka/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.7"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/kafka/README.md, Kafka Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/kafka/README.md, Kafka Plugin Source
---
# Kafka Output Plugin
diff --git a/content/telegraf/v1/output-plugins/kinesis/_index.md b/content/telegraf/v1/output-plugins/kinesis/_index.md
index 53526180e..997dcc793 100644
--- a/content/telegraf/v1/output-plugins/kinesis/_index.md
+++ b/content/telegraf/v1/output-plugins/kinesis/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.5"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/kinesis/README.md, Amazon Kinesis Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/kinesis/README.md, Amazon Kinesis Plugin Source
---
# Amazon Kinesis Output Plugin
diff --git a/content/telegraf/v1/output-plugins/librato/_index.md b/content/telegraf/v1/output-plugins/librato/_index.md
index a77ad163b..3949798d3 100644
--- a/content/telegraf/v1/output-plugins/librato/_index.md
+++ b/content/telegraf/v1/output-plugins/librato/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/librato/README.md, Librato Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/librato/README.md, Librato Plugin Source
---
# Librato Output Plugin
diff --git a/content/telegraf/v1/output-plugins/logzio/_index.md b/content/telegraf/v1/output-plugins/logzio/_index.md
index 9f7e4044c..8a0573a19 100644
--- a/content/telegraf/v1/output-plugins/logzio/_index.md
+++ b/content/telegraf/v1/output-plugins/logzio/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.17.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/logzio/README.md, Logz.io Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/logzio/README.md, Logz.io Plugin Source
---
# Logz.io Output Plugin
diff --git a/content/telegraf/v1/output-plugins/loki/_index.md b/content/telegraf/v1/output-plugins/loki/_index.md
index 2d1b16ddb..6920b4927 100644
--- a/content/telegraf/v1/output-plugins/loki/_index.md
+++ b/content/telegraf/v1/output-plugins/loki/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/loki/README.md, Grafana Loki Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/loki/README.md, Grafana Loki Plugin Source
---
# Grafana Loki Output Plugin
diff --git a/content/telegraf/v1/output-plugins/microsoft_fabric/_index.md b/content/telegraf/v1/output-plugins/microsoft_fabric/_index.md
index 54a32c47c..da2882cfc 100644
--- a/content/telegraf/v1/output-plugins/microsoft_fabric/_index.md
+++ b/content/telegraf/v1/output-plugins/microsoft_fabric/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/microsoft_fabric/README.md, Microsoft Fabric Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/microsoft_fabric/README.md, Microsoft Fabric Plugin Source
---
# Microsoft Fabric Output Plugin
diff --git a/content/telegraf/v1/output-plugins/mongodb/_index.md b/content/telegraf/v1/output-plugins/mongodb/_index.md
index 58f485a76..a56d0faae 100644
--- a/content/telegraf/v1/output-plugins/mongodb/_index.md
+++ b/content/telegraf/v1/output-plugins/mongodb/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.21.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/mongodb/README.md, MongoDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/mongodb/README.md, MongoDB Plugin Source
---
# MongoDB Output Plugin
diff --git a/content/telegraf/v1/output-plugins/mqtt/_index.md b/content/telegraf/v1/output-plugins/mqtt/_index.md
index 66ec6f64e..46eab829c 100644
--- a/content/telegraf/v1/output-plugins/mqtt/_index.md
+++ b/content/telegraf/v1/output-plugins/mqtt/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/mqtt/README.md, MQTT Producer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/mqtt/README.md, MQTT Producer Plugin Source
---
# MQTT Producer Output Plugin
diff --git a/content/telegraf/v1/output-plugins/nats/_index.md b/content/telegraf/v1/output-plugins/nats/_index.md
index 546b1f3c3..e6949a51d 100644
--- a/content/telegraf/v1/output-plugins/nats/_index.md
+++ b/content/telegraf/v1/output-plugins/nats/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/nats/README.md, NATS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/nats/README.md, NATS Plugin Source
---
# NATS Output Plugin
diff --git a/content/telegraf/v1/output-plugins/nebius_cloud_monitoring/_index.md b/content/telegraf/v1/output-plugins/nebius_cloud_monitoring/_index.md
index 290f93b83..4cfb1e16f 100644
--- a/content/telegraf/v1/output-plugins/nebius_cloud_monitoring/_index.md
+++ b/content/telegraf/v1/output-plugins/nebius_cloud_monitoring/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.27.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/nebius_cloud_monitoring/README.md, Nebius Cloud Monitoring Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/nebius_cloud_monitoring/README.md, Nebius Cloud Monitoring Plugin Source
---
# Nebius Cloud Monitoring Output Plugin
diff --git a/content/telegraf/v1/output-plugins/newrelic/_index.md b/content/telegraf/v1/output-plugins/newrelic/_index.md
index 9b35ab3be..647c76f3a 100644
--- a/content/telegraf/v1/output-plugins/newrelic/_index.md
+++ b/content/telegraf/v1/output-plugins/newrelic/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/newrelic/README.md, New Relic Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/newrelic/README.md, New Relic Plugin Source
---
# New Relic Output Plugin
diff --git a/content/telegraf/v1/output-plugins/nsq/_index.md b/content/telegraf/v1/output-plugins/nsq/_index.md
index 239fd7fa4..7a37dbcc0 100644
--- a/content/telegraf/v1/output-plugins/nsq/_index.md
+++ b/content/telegraf/v1/output-plugins/nsq/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/nsq/README.md, NSQ Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/nsq/README.md, NSQ Plugin Source
---
# NSQ Output Plugin
diff --git a/content/telegraf/v1/output-plugins/opensearch/_index.md b/content/telegraf/v1/output-plugins/opensearch/_index.md
index eb4415856..256b1f7f2 100644
--- a/content/telegraf/v1/output-plugins/opensearch/_index.md
+++ b/content/telegraf/v1/output-plugins/opensearch/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.29.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/opensearch/README.md, OpenSearch Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/opensearch/README.md, OpenSearch Plugin Source
---
# OpenSearch Output Plugin
diff --git a/content/telegraf/v1/output-plugins/opentelemetry/_index.md b/content/telegraf/v1/output-plugins/opentelemetry/_index.md
index 263057124..1b8dce1f7 100644
--- a/content/telegraf/v1/output-plugins/opentelemetry/_index.md
+++ b/content/telegraf/v1/output-plugins/opentelemetry/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.20.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/opentelemetry/README.md, OpenTelemetry Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/opentelemetry/README.md, OpenTelemetry Plugin Source
---
# OpenTelemetry Output Plugin
diff --git a/content/telegraf/v1/output-plugins/opentsdb/_index.md b/content/telegraf/v1/output-plugins/opentsdb/_index.md
index c4c0803ff..860558d85 100644
--- a/content/telegraf/v1/output-plugins/opentsdb/_index.md
+++ b/content/telegraf/v1/output-plugins/opentsdb/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.1.9"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/opentsdb/README.md, OpenTSDB Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/opentsdb/README.md, OpenTSDB Plugin Source
---
# OpenTSDB Output Plugin
diff --git a/content/telegraf/v1/output-plugins/parquet/_index.md b/content/telegraf/v1/output-plugins/parquet/_index.md
index 361eb01aa..1fc7596af 100644
--- a/content/telegraf/v1/output-plugins/parquet/_index.md
+++ b/content/telegraf/v1/output-plugins/parquet/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.32.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/parquet/README.md, Parquet Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/parquet/README.md, Parquet Plugin Source
---
# Parquet Output Plugin
diff --git a/content/telegraf/v1/output-plugins/postgresql/_index.md b/content/telegraf/v1/output-plugins/postgresql/_index.md
index cf227560d..a87adb2a9 100644
--- a/content/telegraf/v1/output-plugins/postgresql/_index.md
+++ b/content/telegraf/v1/output-plugins/postgresql/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/postgresql/README.md, PostgreSQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/postgresql/README.md, PostgreSQL Plugin Source
---
# PostgreSQL Output Plugin
diff --git a/content/telegraf/v1/output-plugins/prometheus_client/_index.md b/content/telegraf/v1/output-plugins/prometheus_client/_index.md
index f1c6bcdee..180c5d7f2 100644
--- a/content/telegraf/v1/output-plugins/prometheus_client/_index.md
+++ b/content/telegraf/v1/output-plugins/prometheus_client/_index.md
@@ -10,7 +10,7 @@ introduced: "v0.2.1"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/prometheus_client/README.md, Prometheus Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/prometheus_client/README.md, Prometheus Plugin Source
---
# Prometheus Output Plugin
diff --git a/content/telegraf/v1/output-plugins/quix/_index.md b/content/telegraf/v1/output-plugins/quix/_index.md
index 15bfdde24..ed3c37481 100644
--- a/content/telegraf/v1/output-plugins/quix/_index.md
+++ b/content/telegraf/v1/output-plugins/quix/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.33.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/quix/README.md, Quix Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/quix/README.md, Quix Plugin Source
---
# Quix Output Plugin
diff --git a/content/telegraf/v1/output-plugins/redistimeseries/_index.md b/content/telegraf/v1/output-plugins/redistimeseries/_index.md
index 66b7b1a30..918020f50 100644
--- a/content/telegraf/v1/output-plugins/redistimeseries/_index.md
+++ b/content/telegraf/v1/output-plugins/redistimeseries/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.0.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/redistimeseries/README.md, Redis Time Series Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/redistimeseries/README.md, Redis Time Series Plugin Source
---
# Redis Time Series Output Plugin
diff --git a/content/telegraf/v1/output-plugins/remotefile/_index.md b/content/telegraf/v1/output-plugins/remotefile/_index.md
index 00c444a6e..42777efb6 100644
--- a/content/telegraf/v1/output-plugins/remotefile/_index.md
+++ b/content/telegraf/v1/output-plugins/remotefile/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.32.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/remotefile/README.md, Remote File Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/remotefile/README.md, Remote File Plugin Source
---
# Remote File Output Plugin
diff --git a/content/telegraf/v1/output-plugins/riemann/_index.md b/content/telegraf/v1/output-plugins/riemann/_index.md
index 2a3a3a714..104f363d3 100644
--- a/content/telegraf/v1/output-plugins/riemann/_index.md
+++ b/content/telegraf/v1/output-plugins/riemann/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/riemann/README.md, Riemann Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/riemann/README.md, Riemann Plugin Source
---
# Riemann Output Plugin
diff --git a/content/telegraf/v1/output-plugins/sensu/_index.md b/content/telegraf/v1/output-plugins/sensu/_index.md
index 8b8168239..7099371f4 100644
--- a/content/telegraf/v1/output-plugins/sensu/_index.md
+++ b/content/telegraf/v1/output-plugins/sensu/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/sensu/README.md, Sensu Go Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/sensu/README.md, Sensu Go Plugin Source
---
# Sensu Go Output Plugin
diff --git a/content/telegraf/v1/output-plugins/signalfx/_index.md b/content/telegraf/v1/output-plugins/signalfx/_index.md
index 4b581611c..e5776f8ba 100644
--- a/content/telegraf/v1/output-plugins/signalfx/_index.md
+++ b/content/telegraf/v1/output-plugins/signalfx/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/signalfx/README.md, SignalFx Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/signalfx/README.md, SignalFx Plugin Source
---
# SignalFx Output Plugin
diff --git a/content/telegraf/v1/output-plugins/socket_writer/_index.md b/content/telegraf/v1/output-plugins/socket_writer/_index.md
index ba29532a9..82adb253a 100644
--- a/content/telegraf/v1/output-plugins/socket_writer/_index.md
+++ b/content/telegraf/v1/output-plugins/socket_writer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.3.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/socket_writer/README.md, Socket Writer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/socket_writer/README.md, Socket Writer Plugin Source
---
# Socket Writer Output Plugin
diff --git a/content/telegraf/v1/output-plugins/sql/_index.md b/content/telegraf/v1/output-plugins/sql/_index.md
index bd7851586..a002579a1 100644
--- a/content/telegraf/v1/output-plugins/sql/_index.md
+++ b/content/telegraf/v1/output-plugins/sql/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/sql/README.md, SQL Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/sql/README.md, SQL Plugin Source
---
# SQL Output Plugin
diff --git a/content/telegraf/v1/output-plugins/stackdriver/_index.md b/content/telegraf/v1/output-plugins/stackdriver/_index.md
index c3e4c7d5d..b41e85969 100644
--- a/content/telegraf/v1/output-plugins/stackdriver/_index.md
+++ b/content/telegraf/v1/output-plugins/stackdriver/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.9.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/stackdriver/README.md, Google Cloud Monitoring Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/stackdriver/README.md, Google Cloud Monitoring Plugin Source
---
# Google Cloud Monitoring Output Plugin
diff --git a/content/telegraf/v1/output-plugins/stomp/_index.md b/content/telegraf/v1/output-plugins/stomp/_index.md
index 6a7bcdd35..94ccab985 100644
--- a/content/telegraf/v1/output-plugins/stomp/_index.md
+++ b/content/telegraf/v1/output-plugins/stomp/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.24.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/stomp/README.md, ActiveMQ STOMP Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/stomp/README.md, ActiveMQ STOMP Plugin Source
---
# ActiveMQ STOMP Output Plugin
diff --git a/content/telegraf/v1/output-plugins/sumologic/_index.md b/content/telegraf/v1/output-plugins/sumologic/_index.md
index 83b4434e4..958a848e1 100644
--- a/content/telegraf/v1/output-plugins/sumologic/_index.md
+++ b/content/telegraf/v1/output-plugins/sumologic/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/sumologic/README.md, Sumo Logic Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/sumologic/README.md, Sumo Logic Plugin Source
---
# Sumo Logic Output Plugin
diff --git a/content/telegraf/v1/output-plugins/syslog/_index.md b/content/telegraf/v1/output-plugins/syslog/_index.md
index 7d748fcb4..1de635722 100644
--- a/content/telegraf/v1/output-plugins/syslog/_index.md
+++ b/content/telegraf/v1/output-plugins/syslog/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.11.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/syslog/README.md, Syslog Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/syslog/README.md, Syslog Plugin Source
---
# Syslog Output Plugin
diff --git a/content/telegraf/v1/output-plugins/timestream/_index.md b/content/telegraf/v1/output-plugins/timestream/_index.md
index 845caaa8c..2d27a424e 100644
--- a/content/telegraf/v1/output-plugins/timestream/_index.md
+++ b/content/telegraf/v1/output-plugins/timestream/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.16.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/timestream/README.md, Amazon Timestream Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/timestream/README.md, Amazon Timestream Plugin Source
---
# Amazon Timestream Output Plugin
diff --git a/content/telegraf/v1/output-plugins/warp10/_index.md b/content/telegraf/v1/output-plugins/warp10/_index.md
index 11eafbe5e..87a49de0a 100644
--- a/content/telegraf/v1/output-plugins/warp10/_index.md
+++ b/content/telegraf/v1/output-plugins/warp10/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/warp10/README.md, Warp10 Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/warp10/README.md, Warp10 Plugin Source
---
# Warp10 Output Plugin
diff --git a/content/telegraf/v1/output-plugins/wavefront/_index.md b/content/telegraf/v1/output-plugins/wavefront/_index.md
index bb1632b05..cc358fc1a 100644
--- a/content/telegraf/v1/output-plugins/wavefront/_index.md
+++ b/content/telegraf/v1/output-plugins/wavefront/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.5.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/wavefront/README.md, Wavefront Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/wavefront/README.md, Wavefront Plugin Source
---
# Wavefront Output Plugin
diff --git a/content/telegraf/v1/output-plugins/websocket/_index.md b/content/telegraf/v1/output-plugins/websocket/_index.md
index f39c5a93a..d7347354d 100644
--- a/content/telegraf/v1/output-plugins/websocket/_index.md
+++ b/content/telegraf/v1/output-plugins/websocket/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.19.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/websocket/README.md, Websocket Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/websocket/README.md, Websocket Plugin Source
---
# Websocket Output Plugin
diff --git a/content/telegraf/v1/output-plugins/yandex_cloud_monitoring/_index.md b/content/telegraf/v1/output-plugins/yandex_cloud_monitoring/_index.md
index 26bf629ed..b0c8052f5 100644
--- a/content/telegraf/v1/output-plugins/yandex_cloud_monitoring/_index.md
+++ b/content/telegraf/v1/output-plugins/yandex_cloud_monitoring/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.17.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/yandex_cloud_monitoring/README.md, Yandex Cloud Monitoring Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/yandex_cloud_monitoring/README.md, Yandex Cloud Monitoring Plugin Source
---
# Yandex Cloud Monitoring Output Plugin
diff --git a/content/telegraf/v1/output-plugins/zabbix/_index.md b/content/telegraf/v1/output-plugins/zabbix/_index.md
index 5bc8888fe..97f607a8d 100644
--- a/content/telegraf/v1/output-plugins/zabbix/_index.md
+++ b/content/telegraf/v1/output-plugins/zabbix/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.30.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/outputs/zabbix/README.md, Zabbix Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/outputs/zabbix/README.md, Zabbix Plugin Source
---
# Zabbix Output Plugin
diff --git a/content/telegraf/v1/processor-plugins/aws_ec2/_index.md b/content/telegraf/v1/processor-plugins/aws_ec2/_index.md
index ca824176e..1c78d795e 100644
--- a/content/telegraf/v1/processor-plugins/aws_ec2/_index.md
+++ b/content/telegraf/v1/processor-plugins/aws_ec2/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.18.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/aws_ec2/README.md, AWS EC2 Metadata Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/aws_ec2/README.md, AWS EC2 Metadata Plugin Source
---
# AWS EC2 Metadata Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/batch/_index.md b/content/telegraf/v1/processor-plugins/batch/_index.md
index 3f8d0392f..a79590654 100644
--- a/content/telegraf/v1/processor-plugins/batch/_index.md
+++ b/content/telegraf/v1/processor-plugins/batch/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.33.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/batch/README.md, Batch Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/batch/README.md, Batch Plugin Source
---
# Batch Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/clone/_index.md b/content/telegraf/v1/processor-plugins/clone/_index.md
index a3f1bed7b..6538fdb3c 100644
--- a/content/telegraf/v1/processor-plugins/clone/_index.md
+++ b/content/telegraf/v1/processor-plugins/clone/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.13.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/clone/README.md, Clone Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/clone/README.md, Clone Plugin Source
---
# Clone Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/converter/_index.md b/content/telegraf/v1/processor-plugins/converter/_index.md
index cd5dc402a..b49f9cb97 100644
--- a/content/telegraf/v1/processor-plugins/converter/_index.md
+++ b/content/telegraf/v1/processor-plugins/converter/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/converter/README.md, Converter Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/converter/README.md, Converter Plugin Source
---
# Converter Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/cumulative_sum/_index.md b/content/telegraf/v1/processor-plugins/cumulative_sum/_index.md
index 09807da97..d63e80831 100644
--- a/content/telegraf/v1/processor-plugins/cumulative_sum/_index.md
+++ b/content/telegraf/v1/processor-plugins/cumulative_sum/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.35.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/cumulative_sum/README.md, Cumulative Sum Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/cumulative_sum/README.md, Cumulative Sum Plugin Source
---
# Cumulative Sum Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/date/_index.md b/content/telegraf/v1/processor-plugins/date/_index.md
index 2ce955e9e..3b127c8d6 100644
--- a/content/telegraf/v1/processor-plugins/date/_index.md
+++ b/content/telegraf/v1/processor-plugins/date/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/date/README.md, Date Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/date/README.md, Date Plugin Source
---
# Date Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/dedup/_index.md b/content/telegraf/v1/processor-plugins/dedup/_index.md
index 9691aba84..ca308af53 100644
--- a/content/telegraf/v1/processor-plugins/dedup/_index.md
+++ b/content/telegraf/v1/processor-plugins/dedup/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/dedup/README.md, Dedup Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/dedup/README.md, Dedup Plugin Source
---
# Dedup Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/defaults/_index.md b/content/telegraf/v1/processor-plugins/defaults/_index.md
index d4ebb1c82..947874e4f 100644
--- a/content/telegraf/v1/processor-plugins/defaults/_index.md
+++ b/content/telegraf/v1/processor-plugins/defaults/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/defaults/README.md, Defaults Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/defaults/README.md, Defaults Plugin Source
---
# Defaults Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/enum/_index.md b/content/telegraf/v1/processor-plugins/enum/_index.md
index d180f7105..a2eddc8d3 100644
--- a/content/telegraf/v1/processor-plugins/enum/_index.md
+++ b/content/telegraf/v1/processor-plugins/enum/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/enum/README.md, Enum Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/enum/README.md, Enum Plugin Source
---
# Enum Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/execd/_index.md b/content/telegraf/v1/processor-plugins/execd/_index.md
index 2270dbb3f..77f057d1b 100644
--- a/content/telegraf/v1/processor-plugins/execd/_index.md
+++ b/content/telegraf/v1/processor-plugins/execd/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/execd/README.md, Execd Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/execd/README.md, Execd Plugin Source
---
# Execd Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/filepath/_index.md b/content/telegraf/v1/processor-plugins/filepath/_index.md
index f31d1ff25..b5454b244 100644
--- a/content/telegraf/v1/processor-plugins/filepath/_index.md
+++ b/content/telegraf/v1/processor-plugins/filepath/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/filepath/README.md, Filepath Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/filepath/README.md, Filepath Plugin Source
---
# Filepath Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/filter/_index.md b/content/telegraf/v1/processor-plugins/filter/_index.md
index fb8dbfdbd..a303b550b 100644
--- a/content/telegraf/v1/processor-plugins/filter/_index.md
+++ b/content/telegraf/v1/processor-plugins/filter/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.29.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/filter/README.md, Filter Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/filter/README.md, Filter Plugin Source
---
# Filter Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/ifname/_index.md b/content/telegraf/v1/processor-plugins/ifname/_index.md
index feb994de5..fb1499cbf 100644
--- a/content/telegraf/v1/processor-plugins/ifname/_index.md
+++ b/content/telegraf/v1/processor-plugins/ifname/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/ifname/README.md, Network Interface Name Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/ifname/README.md, Network Interface Name Plugin Source
---
# Network Interface Name Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/lookup/_index.md b/content/telegraf/v1/processor-plugins/lookup/_index.md
index 271ab8484..877a552c3 100644
--- a/content/telegraf/v1/processor-plugins/lookup/_index.md
+++ b/content/telegraf/v1/processor-plugins/lookup/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/lookup/README.md, Lookup Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/lookup/README.md, Lookup Plugin Source
---
# Lookup Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/noise/_index.md b/content/telegraf/v1/processor-plugins/noise/_index.md
index 6a451438f..65b433113 100644
--- a/content/telegraf/v1/processor-plugins/noise/_index.md
+++ b/content/telegraf/v1/processor-plugins/noise/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.22.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/noise/README.md, Noise Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/noise/README.md, Noise Plugin Source
---
# Noise Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/override/_index.md b/content/telegraf/v1/processor-plugins/override/_index.md
index 42ee0f52d..803434671 100644
--- a/content/telegraf/v1/processor-plugins/override/_index.md
+++ b/content/telegraf/v1/processor-plugins/override/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.6.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/override/README.md, Override Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/override/README.md, Override Plugin Source
---
# Override Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/parser/_index.md b/content/telegraf/v1/processor-plugins/parser/_index.md
index 5dca40d7d..b374b4c30 100644
--- a/content/telegraf/v1/processor-plugins/parser/_index.md
+++ b/content/telegraf/v1/processor-plugins/parser/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/parser/README.md, Parser Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/parser/README.md, Parser Plugin Source
---
# Parser Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/pivot/_index.md b/content/telegraf/v1/processor-plugins/pivot/_index.md
index 6e6e4f65f..dfacca19d 100644
--- a/content/telegraf/v1/processor-plugins/pivot/_index.md
+++ b/content/telegraf/v1/processor-plugins/pivot/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/pivot/README.md, Pivot Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/pivot/README.md, Pivot Plugin Source
---
# Pivot Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/port_name/_index.md b/content/telegraf/v1/processor-plugins/port_name/_index.md
index 3e6244797..274ec0d4f 100644
--- a/content/telegraf/v1/processor-plugins/port_name/_index.md
+++ b/content/telegraf/v1/processor-plugins/port_name/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/port_name/README.md, Port Name Lookup Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/port_name/README.md, Port Name Lookup Plugin Source
---
# Port Name Lookup Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/printer/_index.md b/content/telegraf/v1/processor-plugins/printer/_index.md
index 5cda8275f..3695818b9 100644
--- a/content/telegraf/v1/processor-plugins/printer/_index.md
+++ b/content/telegraf/v1/processor-plugins/printer/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.1.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/printer/README.md, Printer Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/printer/README.md, Printer Plugin Source
---
# Printer Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/regex/_index.md b/content/telegraf/v1/processor-plugins/regex/_index.md
index f2d13c045..2ad3d9a25 100644
--- a/content/telegraf/v1/processor-plugins/regex/_index.md
+++ b/content/telegraf/v1/processor-plugins/regex/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/regex/README.md, Regex Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/regex/README.md, Regex Plugin Source
---
# Regex Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/rename/_index.md b/content/telegraf/v1/processor-plugins/rename/_index.md
index b0becb81b..288e88cc1 100644
--- a/content/telegraf/v1/processor-plugins/rename/_index.md
+++ b/content/telegraf/v1/processor-plugins/rename/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/rename/README.md, Rename Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/rename/README.md, Rename Plugin Source
---
# Rename Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/reverse_dns/_index.md b/content/telegraf/v1/processor-plugins/reverse_dns/_index.md
index 6130a66d2..69579233b 100644
--- a/content/telegraf/v1/processor-plugins/reverse_dns/_index.md
+++ b/content/telegraf/v1/processor-plugins/reverse_dns/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/reverse_dns/README.md, Reverse DNS Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/reverse_dns/README.md, Reverse DNS Plugin Source
---
# Reverse DNS Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/round/_index.md b/content/telegraf/v1/processor-plugins/round/_index.md
index 24a97f4b8..6cabaeb9a 100644
--- a/content/telegraf/v1/processor-plugins/round/_index.md
+++ b/content/telegraf/v1/processor-plugins/round/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.36.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/round/README.md, Round Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/round/README.md, Round Plugin Source
---
# Round Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/s2geo/_index.md b/content/telegraf/v1/processor-plugins/s2geo/_index.md
index 7b4d50bd6..ef843ffd5 100644
--- a/content/telegraf/v1/processor-plugins/s2geo/_index.md
+++ b/content/telegraf/v1/processor-plugins/s2geo/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/s2geo/README.md, S2 Geo Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/s2geo/README.md, S2 Geo Plugin Source
---
# S2 Geo Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/scale/_index.md b/content/telegraf/v1/processor-plugins/scale/_index.md
index 8b47950c4..38cfb4379 100644
--- a/content/telegraf/v1/processor-plugins/scale/_index.md
+++ b/content/telegraf/v1/processor-plugins/scale/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.27.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/scale/README.md, Scale Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/scale/README.md, Scale Plugin Source
---
# Scale Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/snmp_lookup/_index.md b/content/telegraf/v1/processor-plugins/snmp_lookup/_index.md
index b32a1e3ac..7aee599e1 100644
--- a/content/telegraf/v1/processor-plugins/snmp_lookup/_index.md
+++ b/content/telegraf/v1/processor-plugins/snmp_lookup/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.30.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/snmp_lookup/README.md, SNMP Lookup Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/snmp_lookup/README.md, SNMP Lookup Plugin Source
---
# SNMP Lookup Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/split/_index.md b/content/telegraf/v1/processor-plugins/split/_index.md
index 2407f23a9..91bafc2da 100644
--- a/content/telegraf/v1/processor-plugins/split/_index.md
+++ b/content/telegraf/v1/processor-plugins/split/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.28.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/split/README.md, Split Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/split/README.md, Split Plugin Source
---
# Split Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/starlark/_index.md b/content/telegraf/v1/processor-plugins/starlark/_index.md
index 3647123ca..1a5459eae 100644
--- a/content/telegraf/v1/processor-plugins/starlark/_index.md
+++ b/content/telegraf/v1/processor-plugins/starlark/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.15.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/starlark/README.md, Starlark Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/starlark/README.md, Starlark Plugin Source
---
# Starlark Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/strings/_index.md b/content/telegraf/v1/processor-plugins/strings/_index.md
index b5b59e9c8..41e533ebf 100644
--- a/content/telegraf/v1/processor-plugins/strings/_index.md
+++ b/content/telegraf/v1/processor-plugins/strings/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.8.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/strings/README.md, Strings Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/strings/README.md, Strings Plugin Source
---
# Strings Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/tag_limit/_index.md b/content/telegraf/v1/processor-plugins/tag_limit/_index.md
index cb1773c46..6557cc3d0 100644
--- a/content/telegraf/v1/processor-plugins/tag_limit/_index.md
+++ b/content/telegraf/v1/processor-plugins/tag_limit/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/tag_limit/README.md, Tag Limit Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/tag_limit/README.md, Tag Limit Plugin Source
---
# Tag Limit Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/template/_index.md b/content/telegraf/v1/processor-plugins/template/_index.md
index 2fe864e7c..952042189 100644
--- a/content/telegraf/v1/processor-plugins/template/_index.md
+++ b/content/telegraf/v1/processor-plugins/template/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.14.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/template/README.md, Template Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/template/README.md, Template Plugin Source
---
# Template Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/timestamp/_index.md b/content/telegraf/v1/processor-plugins/timestamp/_index.md
index ef3a1b872..a9add1ad8 100644
--- a/content/telegraf/v1/processor-plugins/timestamp/_index.md
+++ b/content/telegraf/v1/processor-plugins/timestamp/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.31.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/timestamp/README.md, Timestamp Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/timestamp/README.md, Timestamp Plugin Source
---
# Timestamp Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/topk/_index.md b/content/telegraf/v1/processor-plugins/topk/_index.md
index 14a1d3290..cd657cb01 100644
--- a/content/telegraf/v1/processor-plugins/topk/_index.md
+++ b/content/telegraf/v1/processor-plugins/topk/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.7.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/topk/README.md, TopK Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/topk/README.md, TopK Plugin Source
---
# TopK Processor Plugin
diff --git a/content/telegraf/v1/processor-plugins/unpivot/_index.md b/content/telegraf/v1/processor-plugins/unpivot/_index.md
index a56eab141..1ee3e9f1a 100644
--- a/content/telegraf/v1/processor-plugins/unpivot/_index.md
+++ b/content/telegraf/v1/processor-plugins/unpivot/_index.md
@@ -10,7 +10,7 @@ introduced: "v1.12.0"
os_support: "freebsd, linux, macos, solaris, windows"
related:
- /telegraf/v1/configure_plugins/
- - https://github.com/influxdata/telegraf/tree/v1.38.0/plugins/processors/unpivot/README.md, Unpivot Plugin Source
+ - https://github.com/influxdata/telegraf/tree/v1.38.1/plugins/processors/unpivot/README.md, Unpivot Plugin Source
---
# Unpivot Processor Plugin
diff --git a/content/telegraf/v1/release-notes.md b/content/telegraf/v1/release-notes.md
index f5ae49a89..973f4b651 100644
--- a/content/telegraf/v1/release-notes.md
+++ b/content/telegraf/v1/release-notes.md
@@ -11,6 +11,36 @@ menu:
weight: 60
---
+## v1.38.1 {date="2026-03-16"}
+
+### Bugfixes
+
+- [#18491](https://github.com/influxdata/telegraf/pull/18491) `inputs.diskio` Sanitize newline characters in serial tag
+- [#18453](https://github.com/influxdata/telegraf/pull/18453) `inputs.docker` Emit status metrics for non-running containers
+- [#18513](https://github.com/influxdata/telegraf/pull/18513) `inputs.exec` Log stderr messages
+- [#18469](https://github.com/influxdata/telegraf/pull/18469) `inputs.mem` Use vm.Cached as vm.Buffers on OpenBSD
+- [#18455](https://github.com/influxdata/telegraf/pull/18455) `inputs.ping` Warn on using timeout parameter for native method
+- [#18471](https://github.com/influxdata/telegraf/pull/18471) `internal` Extract go version even more robustly
+- [#18509](https://github.com/influxdata/telegraf/pull/18509) `outputs.influxdb_v3` Remove duplicate timeout setting
+
+### Dependency Updates
+
+- [#18486](https://github.com/influxdata/telegraf/pull/18486) `deps` Bump github.com/SAP/go-hdb from 1.15.1 to 1.15.2
+- [#18477](https://github.com/influxdata/telegraf/pull/18477) `deps` Bump github.com/alitto/pond/v2 from 2.6.2 to 2.7.0
+- [#18488](https://github.com/influxdata/telegraf/pull/18488) `deps` Bump github.com/apache/arrow-go/v18 from 18.5.1 to 18.5.2
+- [#18487](https://github.com/influxdata/telegraf/pull/18487) `deps` Bump github.com/emiago/sipgo from 1.2.0 to 1.2.1
+- [#18475](https://github.com/influxdata/telegraf/pull/18475) `deps` Bump github.com/gophercloud/gophercloud/v2 from 2.10.0 to 2.11.0
+- [#18481](https://github.com/influxdata/telegraf/pull/18481) `deps` Bump github.com/nats-io/nats-server/v2 from 2.12.4 to 2.12.5
+- [#18075](https://github.com/influxdata/telegraf/pull/18075) `deps` Bump go.opentelemetry.io/collector/pdata from 1.46.0 to 1.53.0
+- [#18483](https://github.com/influxdata/telegraf/pull/18483) `deps` Bump go.opentelemetry.io/proto/otlp from 1.9.0 to 1.10.0
+- [#18485](https://github.com/influxdata/telegraf/pull/18485) `deps` Bump go.opentelemetry.io/proto/otlp/collector/profiles/v1development from 0.2.0 to 0.3.0
+- [#18478](https://github.com/influxdata/telegraf/pull/18478) `deps` Bump golang.org/x/oauth2 from 0.35.0 to 0.36.0
+- [#18484](https://github.com/influxdata/telegraf/pull/18484) `deps` Bump golang.org/x/sync from 0.19.0 to 0.20.0
+- [#18480](https://github.com/influxdata/telegraf/pull/18480) `deps` Bump google.golang.org/api from 0.269.0 to 0.270.0
+- [#18490](https://github.com/influxdata/telegraf/pull/18490) `deps` Bump google.golang.org/grpc from 1.79.1 to 1.79.2
+- [#18474](https://github.com/influxdata/telegraf/pull/18474) `deps` Bump the aws-sdk-go-v2 group with 11 updates
+- [#18473](https://github.com/influxdata/telegraf/pull/18473) `deps` Bump tj-actions/changed-files from 47.0.4 to 47.0.5
+
## v1.38.0 {date="2026-03-09"}
### Important Changes
diff --git a/cypress/e2e/content/code-controls.cy.js b/cypress/e2e/content/code-controls.cy.js
new file mode 100644
index 000000000..0480e29a5
--- /dev/null
+++ b/cypress/e2e/content/code-controls.cy.js
@@ -0,0 +1,345 @@
+///
+
+/**
+ * Code Controls E2E Test Suite
+ *
+ * Tests for the code block controls menu (code-controls.js):
+ * - Initialization: wraps code blocks, appends control menus
+ * - Toggle: opens/closes menu on click, closes on outside click
+ * - Copy to clipboard: success/failure lifecycle
+ * - Fullscreen: opens modal with cloned code, closes and restores
+ * - Ask AI: delegates to global ask-ai-open handler
+ *
+ * TEST SCENARIOS CHECKLIST:
+ *
+ * Initialization:
+ * ---------------
+ * - [x] Code blocks are wrapped in .codeblock divs
+ * - [x] Each codeblock has a .code-controls container
+ * - [x] Controls contain toggle, copy, Ask AI, and fullscreen items
+ * - [x] Menu is hidden by default (toggle visible)
+ * - [x] Ask AI is in the middle (2nd) position
+ * - [x] Controls use accessible markup (buttons, ARIA roles)
+ *
+ * Toggle Behavior:
+ * ----------------
+ * - [x] Clicking toggle opens menu (adds .open class)
+ * - [x] Clicking outside closes menu
+ * - [x] Copy button keeps menu open (stopPropagation)
+ *
+ * Copy to Clipboard:
+ * ------------------
+ * - [x] Copy button shows "Copied!" on success
+ * - [x] Copy button shows success class temporarily
+ * - [x] Success state reverts after timeout
+ *
+ * Fullscreen Mode:
+ * ----------------
+ * - [x] Fullscreen button opens modal
+ * - [x] Modal contains cloned code content
+ * - [x] Close button dismisses modal
+ * - [x] Body scroll is disabled while fullscreen
+ *
+ * Ask AI Code:
+ * ------------
+ * - [x] Ask AI button synthesizes ask-ai-open element with query
+ * - [x] Query includes "Explain this code" prefix and code content
+ */
+
+const TEST_PAGE = '/influxdb3/core/admin/identify-version/';
+
+function beforeTest() {
+ cy.viewport(1440, 900);
+}
+
+describe('Code Controls', function () {
+ describe('Initialization', function () {
+ beforeEach(() => {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+ });
+
+ it('should wrap code blocks in .codeblock divs', function () {
+ cy.get('.article--content .codeblock').should('have.length.at.least', 1);
+ cy.get('.article--content .codeblock > pre').should(
+ 'have.length.at.least',
+ 1
+ );
+ });
+
+ it('should append code-controls to each codeblock', function () {
+ cy.get('.article--content .codeblock').each(($block) => {
+ cy.wrap($block).find('.code-controls').should('exist');
+ cy.wrap($block)
+ .find('.code-controls .code-controls-toggle')
+ .should('exist');
+ cy.wrap($block)
+ .find('.code-controls .code-control-options')
+ .should('exist');
+ });
+ });
+
+ it('should have copy, Ask AI, and fullscreen items in order', function () {
+ cy.get('.article--content .codeblock')
+ .first()
+ .within(() => {
+ cy.get('.code-control-options button[role="menuitem"]')
+ .eq(0)
+ .should('have.class', 'copy-code');
+ cy.get('.code-control-options button[role="menuitem"]')
+ .eq(1)
+ .should('have.class', 'ask-ai-code');
+ cy.get('.code-control-options button[role="menuitem"]')
+ .eq(2)
+ .should('have.class', 'fullscreen-toggle');
+ });
+ });
+
+ it('should use accessible markup for controls', function () {
+ cy.get('.article--content .codeblock')
+ .first()
+ .within(() => {
+ // Toggle is a button with aria attributes
+ cy.get('.code-controls-toggle')
+ .should('have.attr', 'aria-label', 'Code block options')
+ .and('have.attr', 'aria-expanded', 'false');
+
+ // Menu has role="menu"
+ cy.get('.code-control-options').should('have.attr', 'role', 'menu');
+
+ // Menu items are buttons with role="menuitem"
+ cy.get('.code-control-options button[role="menuitem"]').should(
+ 'have.length',
+ 3
+ );
+ });
+ });
+
+ it('should show toggle and hide menu by default', function () {
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('not.have.class', 'open');
+ cy.get('.article--content .code-controls-toggle')
+ .first()
+ .should('be.visible');
+ });
+ });
+
+ describe('Toggle Behavior', function () {
+ beforeEach(() => {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+ });
+
+ it('should open menu when toggle is clicked', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('have.class', 'open');
+ cy.get('.article--content .code-control-options')
+ .first()
+ .should('be.visible');
+ });
+
+ it('should close menu when clicking outside', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('have.class', 'open');
+
+ // Click a heading element (neutral area, not inside a code block)
+ cy.get('.article--content h2').first().click({ force: true });
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('not.have.class', 'open');
+ });
+
+ it('should keep menu open when copy is clicked', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('have.class', 'open');
+
+ // Click copy — menu should stay open (stopPropagation)
+ cy.get('.article--content .copy-code').first().click();
+ cy.get('.article--content .code-controls')
+ .first()
+ .should('have.class', 'open');
+ });
+ });
+
+ describe('Copy to Clipboard', function () {
+ beforeEach(() => {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+
+ // Stub navigator.clipboard.writeText to avoid permission issues
+ cy.window().then((win) => {
+ cy.stub(win.navigator.clipboard, 'writeText').resolves();
+ });
+ });
+
+ it('should show "Copied!" text on successful copy', function () {
+ // Open the menu
+ cy.get('.article--content .code-controls-toggle').first().click();
+
+ // Click copy
+ cy.get('.article--content .copy-code').first().click();
+
+ // Verify success lifecycle
+ cy.get('.article--content .copy-code')
+ .first()
+ .should('have.class', 'success');
+ cy.get('.article--content .copy-code .message')
+ .first()
+ .should('contain', 'Copied!');
+ });
+
+ it('should revert to "Copy" after success timeout', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .copy-code').first().click();
+
+ // Verify success state appears
+ cy.get('.article--content .copy-code')
+ .first()
+ .should('have.class', 'success');
+
+ // Wait for the 2500ms timeout to elapse, then verify revert
+ cy.get('.article--content .copy-code', { timeout: 4000 })
+ .first()
+ .should('not.have.class', 'success');
+ cy.get('.article--content .copy-code .message')
+ .first()
+ .should('contain', 'Copy');
+ });
+ });
+
+ describe('Fullscreen Mode', function () {
+ beforeEach(() => {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+ });
+
+ it('should open fullscreen modal with code content', function () {
+ // Get the code text from the first code block
+ cy.get('.article--content .codeblock pre code')
+ .first()
+ .invoke('text')
+ .then((codeText) => {
+ // Open menu and click fullscreen
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .fullscreen-toggle').first().click();
+
+ // Modal should be visible
+ cy.get('.fullscreen-code').should('be.visible');
+
+ // Modal should contain the code content
+ cy.get('.fullscreen-code pre code').should(
+ 'contain',
+ codeText.trim()
+ );
+ });
+ });
+
+ it('should disable body scroll when fullscreen is open', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .fullscreen-toggle').first().click();
+
+ cy.get('.fullscreen-code').should('be.visible');
+ cy.get('body').should('have.css', 'overflow', 'hidden');
+ });
+
+ it('should close fullscreen and restore scroll on close click', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .fullscreen-toggle').first().click();
+ cy.get('.fullscreen-code').should('be.visible');
+
+ // Click close button
+ cy.get('.fullscreen-close').click();
+
+ // Modal should fade out
+ cy.get('.fullscreen-code').should('not.be.visible');
+ cy.get('body').should('have.css', 'overflow', 'auto');
+ });
+
+ it('should replace code with placeholder after closing', function () {
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .fullscreen-toggle').first().click();
+ cy.get('.fullscreen-code').should('be.visible');
+
+ cy.get('.fullscreen-close').click();
+ cy.get('.fullscreen-code').should('not.be.visible');
+
+ // The placeholder should be restored
+ cy.get('#fullscreen-code-placeholder').should('exist');
+ });
+ });
+
+ describe('Ask AI Code Button', function () {
+ it('should open Ask AI widget when clicked', function () {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+
+ // Open menu and click Ask AI
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .ask-ai-code').first().click();
+
+ // The Kapa modal should become visible
+ cy.get('#kapa-modal-content', {
+ includeShadowDom: true,
+ timeout: 5000,
+ }).should('be.visible');
+ });
+
+ it('should synthesize ask-ai-open element with query from code block', function () {
+ cy.visit(TEST_PAGE);
+ beforeTest();
+
+ // Capture the data-query from the synthesized ask-ai-open element
+ // by observing DOM mutations before code-controls removes it
+ cy.window().then((win) => {
+ const capturedQueries = [];
+
+ // MutationObserver catches the transient
+ // that code-controls appends to body then removes
+ const observer = new win.MutationObserver((mutations) => {
+ for (const mutation of mutations) {
+ for (const node of mutation.addedNodes) {
+ if (
+ node.nodeType === 1 &&
+ node.classList?.contains('ask-ai-open')
+ ) {
+ capturedQueries.push(node.getAttribute('data-query'));
+ }
+ }
+ }
+ });
+ observer.observe(win.document.body, { childList: true });
+
+ // Get first code block text for comparison
+ cy.get('.article--content .codeblock pre')
+ .first()
+ .invoke('text')
+ .then((codeText) => {
+ const firstLine = codeText.trim().split('\n')[0];
+
+ // Open menu and click Ask AI
+ cy.get('.article--content .code-controls-toggle').first().click();
+ cy.get('.article--content .ask-ai-code').first().click();
+
+ // Verify the query was constructed correctly
+ cy.wrap(capturedQueries, { timeout: 3000 }).should(
+ 'have.length.at.least',
+ 1
+ );
+ cy.then(() => {
+ observer.disconnect();
+ const query = capturedQueries[0];
+ expect(query).to.include('Explain this code');
+ expect(query).to.include(firstLine);
+ });
+ });
+ });
+ });
+ });
+});
diff --git a/data/products.yml b/data/products.yml
index 9693cb96d..37517d792 100644
--- a/data/products.yml
+++ b/data/products.yml
@@ -216,7 +216,7 @@ influxdb:
latest: v2.8
latest_patches:
v2: 2.8.0
- v1: 1.12.2
+ v1: 1.12.3
latest_cli:
v2: 2.7.5
detector_config:
@@ -289,7 +289,7 @@ telegraf:
versions: [v1]
latest: v1.38
latest_patches:
- v1: 1.38.0
+ v1: 1.38.1
ai_sample_questions:
- How do I configure Telegraf for InfluxDB 3?
- How do I write a custom Telegraf plugin?
diff --git a/lefthook.yml b/lefthook.yml
index 1595531e0..7f88047e9 100644
--- a/lefthook.yml
+++ b/lefthook.yml
@@ -148,7 +148,16 @@ pre-push:
commands:
packages-audit:
tags: frontend security
- run: yarn audit
+ run: |
+ default_branch=$(git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@') || default_branch="master"
+ current_branch=$(git branch --show-current)
+ yarn audit; status=$?
+ if [ $status -ne 0 ] && [ "$current_branch" != "$default_branch" ]; then
+ echo "⚠️ yarn audit found vulnerabilities (warning only — non-default branch '$current_branch')"
+ echo " Create an issue: https://github.com/influxdata/docs-v2/issues/new?title=yarn+audit+vulnerabilities&labels=security"
+ exit 0
+ fi
+ exit $status
e2e-shortcode-examples:
tags: [frontend, test]
diff --git a/package.json b/package.json
index 9eb534436..54667ff8a 100644
--- a/package.json
+++ b/package.json
@@ -14,7 +14,8 @@
"resolutions": {
"serialize-javascript": "^6.0.2",
"tar": "7.5.11",
- "lodash-es": "^4.17.23"
+ "lodash-es": "^4.17.23",
+ "dompurify": ">=3.3.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
@@ -48,7 +49,7 @@
"dependencies": {
"@types/turndown": "^5.0.6",
"axios": "^1.13.5",
- "glob": "^10.3.10",
+ "glob": "^13.0.6",
"gray-matter": "^4.0.3",
"jquery": "^3.7.1",
"js-cookie": "^3.0.5",
diff --git a/yarn.lock b/yarn.lock
index 49b022d29..5b45f7c84 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -283,18 +283,6 @@
"@iconify/types" "^2.0.0"
mlly "^1.8.0"
-"@isaacs/cliui@^8.0.2":
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550"
- integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==
- dependencies:
- string-width "^5.1.2"
- string-width-cjs "npm:string-width@^4.2.0"
- strip-ansi "^7.0.1"
- strip-ansi-cjs "npm:strip-ansi@^6.0.1"
- wrap-ansi "^8.1.0"
- wrap-ansi-cjs "npm:wrap-ansi@^7.0.0"
-
"@isaacs/fs-minipass@^4.0.0":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@isaacs/fs-minipass/-/fs-minipass-4.0.1.tgz#2d59ae3ab4b38fb4270bfa23d30f8e2e86c7fe32"
@@ -314,11 +302,6 @@
resolved "https://registry.yarnpkg.com/@mixmark-io/domino/-/domino-2.2.0.tgz#4e8ec69bf1afeb7a14f0628b7e2c0f35bdb336c3"
integrity sha512-Y28PR25bHXUg88kCV7nivXrP2Nj2RueZ3/l/jdx6J9f8J4nsEGcgX0Qe6lt7Pa+J79+kPiJU3LguR6O/6zrLOw==
-"@pkgjs/parseargs@^0.11.0":
- version "0.11.0"
- resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33"
- integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==
-
"@puppeteer/browsers@2.13.0":
version "2.13.0"
resolved "https://registry.yarnpkg.com/@puppeteer/browsers/-/browsers-2.13.0.tgz#10f980c6d65efeff77f8a3cac6e1a7ac10604500"
@@ -804,11 +787,6 @@ ansi-regex@^5.0.1:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304"
integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==
-ansi-regex@^6.2.2:
- version "6.2.2"
- resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.2.2.tgz#60216eea464d864597ce2832000738a0589650c1"
- integrity sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==
-
ansi-styles@^4.0.0, ansi-styles@^4.1.0:
version "4.3.0"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937"
@@ -816,11 +794,6 @@ ansi-styles@^4.0.0, ansi-styles@^4.1.0:
dependencies:
color-convert "^2.0.1"
-ansi-styles@^6.1.0:
- version "6.2.3"
- resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.3.tgz#c044d5dcc521a076413472597a1acb1f103c4041"
- integrity sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==
-
anymatch@~3.1.2:
version "3.1.3"
resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e"
@@ -1140,13 +1113,6 @@ brace-expansion@^1.1.7:
balanced-match "^1.0.0"
concat-map "0.0.1"
-brace-expansion@^2.0.2:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.2.tgz#54fc53237a613d854c7bd37463aad17df87214e7"
- integrity sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==
- dependencies:
- balanced-match "^1.0.0"
-
brace-expansion@^5.0.2:
version "5.0.4"
resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-5.0.4.tgz#614daaecd0a688f660bbbc909a8748c3d80d4336"
@@ -2005,10 +1971,10 @@ doctrine@^2.1.0:
dependencies:
esutils "^2.0.2"
-dompurify@^3.2.5:
- version "3.3.2"
- resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.3.2.tgz#58c515d0f8508b8749452a028aa589ad80b36325"
- integrity sha512-6obghkliLdmKa56xdbLOpUZ43pAR6xFy1uOrxBaIDjT+yaRuuybLjGS9eVBoSR/UPU5fq3OXClEHLJNGvbxKpQ==
+dompurify@>=3.3.2, dompurify@^3.2.5:
+ version "3.3.3"
+ resolved "https://registry.yarnpkg.com/dompurify/-/dompurify-3.3.3.tgz#680cae8af3e61320ddf3666a3bc843f7b291b2b6"
+ integrity sha512-Oj6pzI2+RqBfFG+qOaOLbFXLQ90ARpcGG6UePL82bJLtdsa6CYJD7nmiU8MW9nQNOtCHV3lZ/Bzq1X0QYbBZCA==
optionalDependencies:
"@types/trusted-types" "^2.0.7"
@@ -2021,11 +1987,6 @@ dunder-proto@^1.0.0, dunder-proto@^1.0.1:
es-errors "^1.3.0"
gopd "^1.2.0"
-eastasianwidth@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb"
- integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==
-
ecc-jsbn@~0.1.1:
version "0.1.2"
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
@@ -2581,14 +2542,6 @@ for-each@^0.3.3, for-each@^0.3.5:
dependencies:
is-callable "^1.2.7"
-foreground-child@^3.1.0:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.3.1.tgz#32e8e9ed1b68a3497befb9ac2b6adf92a638576f"
- integrity sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==
- dependencies:
- cross-spawn "^7.0.6"
- signal-exit "^4.0.1"
-
forever-agent@~0.6.1:
version "0.6.1"
resolved "https://registry.yarnpkg.com/forever-agent/-/forever-agent-0.6.1.tgz#fbc71f0c41adeb37f96c577ad1ed42d8fdacca91"
@@ -2753,17 +2706,14 @@ glob-parent@~5.1.2:
dependencies:
is-glob "^4.0.1"
-glob@^10.3.10:
- version "10.5.0"
- resolved "https://registry.yarnpkg.com/glob/-/glob-10.5.0.tgz#8ec0355919cd3338c28428a23d4f24ecc5fe738c"
- integrity sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==
+glob@^13.0.6:
+ version "13.0.6"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-13.0.6.tgz#078666566a425147ccacfbd2e332deb66a2be71d"
+ integrity sha512-Wjlyrolmm8uDpm/ogGyXZXb1Z+Ca2B8NbJwqBVg0axK9GbBeoS7yGV6vjXnYdGm6X53iehEuxxbyiKp8QmN4Vw==
dependencies:
- foreground-child "^3.1.0"
- jackspeak "^3.1.2"
- minimatch "^9.0.4"
- minipass "^7.1.2"
- package-json-from-dist "^1.0.0"
- path-scurry "^1.11.1"
+ minimatch "^10.2.2"
+ minipass "^7.1.3"
+ path-scurry "^2.0.2"
global-dirs@^3.0.0:
version "3.0.1"
@@ -3238,15 +3188,6 @@ isstream@~0.1.2:
resolved "https://registry.yarnpkg.com/isstream/-/isstream-0.1.2.tgz#47e63f7af55afa6f92e1500e690eb8b8529c099a"
integrity sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==
-jackspeak@^3.1.2:
- version "3.4.3"
- resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-3.4.3.tgz#8833a9d89ab4acde6188942bd1c53b6390ed5a8a"
- integrity sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==
- dependencies:
- "@isaacs/cliui" "^8.0.2"
- optionalDependencies:
- "@pkgjs/parseargs" "^0.11.0"
-
jquery@^3.7.1:
version "3.7.1"
resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.7.1.tgz#083ef98927c9a6a74d05a6af02806566d16274de"
@@ -3606,12 +3547,7 @@ longest-streak@^3.0.0:
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-3.1.0.tgz#62fa67cd958742a1574af9f39866364102d90cd4"
integrity sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==
-lru-cache@^10.2.0:
- version "10.4.3"
- resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.4.3.tgz#410fc8a17b70e598013df257c2446b7f3383f119"
- integrity sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==
-
-lru-cache@^11.2.4, lru-cache@^11.2.5, lru-cache@^11.2.6:
+lru-cache@^11.0.0, lru-cache@^11.2.4, lru-cache@^11.2.5, lru-cache@^11.2.6:
version "11.2.6"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-11.2.6.tgz#356bf8a29e88a7a2945507b31f6429a65a192c58"
integrity sha512-ESL2CrkS/2wTPfuend7Zhkzo2u0daGJ/A2VucJOgQ/C48S/zB8MMeMHSGKYpXhIjbPxfuezITkaBH1wqv00DDQ==
@@ -4126,19 +4062,12 @@ minimatch@^3.1.2:
dependencies:
brace-expansion "^1.1.7"
-minimatch@^9.0.4:
- version "9.0.9"
- resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.9.tgz#9b0cb9fcb78087f6fd7eababe2511c4d3d60574e"
- integrity sha512-OBwBN9AL4dqmETlpS2zasx+vTeWclWzkblfZk7KTA5j3jeOONz/tRCnZomUyvNg83wL5Zv9Ss6HMJXAgL8R2Yg==
- dependencies:
- brace-expansion "^2.0.2"
-
minimist@^1.2.0, minimist@^1.2.6, minimist@^1.2.8:
version "1.2.8"
resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c"
integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==
-"minipass@^5.0.0 || ^6.0.2 || ^7.0.0", minipass@^7.0.4, minipass@^7.1.2:
+minipass@^7.0.4, minipass@^7.1.2, minipass@^7.1.3:
version "7.1.3"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.1.3.tgz#79389b4eb1bb2d003a9bba87d492f2bd37bdc65b"
integrity sha512-tEBHqDnIoM/1rXME1zgka9g6Q2lcoCkxHLuc7ODJ5BxbP5d4c2Z5cGgtXAku59200Cx7diuHTOYfSBD8n6mm8A==
@@ -4372,11 +4301,6 @@ pac-resolver@^7.0.1:
degenerator "^5.0.0"
netmask "^2.0.2"
-package-json-from-dist@^1.0.0:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz#4f1471a010827a86f94cfd9b0727e36d267de505"
- integrity sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==
-
package-manager-detector@^1.3.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/package-manager-detector/-/package-manager-detector-1.6.0.tgz#70d0cf0aa02c877eeaf66c4d984ede0be9130734"
@@ -4438,13 +4362,13 @@ path-parse@^1.0.7:
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735"
integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==
-path-scurry@^1.11.1:
- version "1.11.1"
- resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.11.1.tgz#7960a668888594a0720b12a911d1a742ab9f11d2"
- integrity sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==
+path-scurry@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-2.0.2.tgz#6be0d0ee02a10d9e0de7a98bae65e182c9061f85"
+ integrity sha512-3O/iVVsJAPsOnpwWIeD+d6z/7PmqApyQePUtCndjatj/9I5LylHvt5qluFaBT3I5h3r1ejfR056c+FCv+NnNXg==
dependencies:
- lru-cache "^10.2.0"
- minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
+ lru-cache "^11.0.0"
+ minipass "^7.1.2"
pathe@^2.0.1, pathe@^2.0.3:
version "2.0.3"
@@ -5049,11 +4973,6 @@ signal-exit@^3.0.2:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9"
integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==
-signal-exit@^4.0.1:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04"
- integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==
-
slash@^5.0.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/slash/-/slash-5.1.0.tgz#be3adddcdf09ac38eebe8dcdc7b1a57a75b095ce"
@@ -5177,15 +5096,6 @@ streamx@^2.12.5, streamx@^2.15.0, streamx@^2.21.0:
fast-fifo "^1.3.2"
text-decoder "^1.1.0"
-"string-width-cjs@npm:string-width@^4.2.0":
- version "4.2.3"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
- integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==
- dependencies:
- emoji-regex "^8.0.0"
- is-fullwidth-code-point "^3.0.0"
- strip-ansi "^6.0.1"
-
string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
version "4.2.3"
resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010"
@@ -5195,15 +5105,6 @@ string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3:
is-fullwidth-code-point "^3.0.0"
strip-ansi "^6.0.1"
-string-width@^5.0.1, string-width@^5.1.2:
- version "5.1.2"
- resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794"
- integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==
- dependencies:
- eastasianwidth "^0.2.0"
- emoji-regex "^9.2.2"
- strip-ansi "^7.0.1"
-
string.prototype.includes@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/string.prototype.includes/-/string.prototype.includes-2.0.1.tgz#eceef21283640761a81dbe16d6c7171a4edf7d92"
@@ -5252,13 +5153,6 @@ string_decoder@^1.1.1:
dependencies:
safe-buffer "~5.2.0"
-"strip-ansi-cjs@npm:strip-ansi@^6.0.1":
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
- integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==
- dependencies:
- ansi-regex "^5.0.1"
-
strip-ansi@^6.0.0, strip-ansi@^6.0.1:
version "6.0.1"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9"
@@ -5266,13 +5160,6 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1:
dependencies:
ansi-regex "^5.0.1"
-strip-ansi@^7.0.1:
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.2.0.tgz#d22a269522836a627af8d04b5c3fd2c7fa3e32e3"
- integrity sha512-yDPMNjp4WyfYBkHnjIRLfca1i6KMyGCtsVgoKe/z1+6vukgaENdgGBZt+ZmKPc4gavvEZ5OgHfHdrazhgNyG7w==
- dependencies:
- ansi-regex "^6.2.2"
-
strip-bom-string@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
@@ -5888,15 +5775,6 @@ word-wrap@^1.2.5:
resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34"
integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==
-"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43"
- integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==
- dependencies:
- ansi-styles "^4.0.0"
- string-width "^4.1.0"
- strip-ansi "^6.0.0"
-
wrap-ansi@^6.2.0:
version "6.2.0"
resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-6.2.0.tgz#e9393ba07102e6c91a3b221478f0257cd2856e53"
@@ -5915,15 +5793,6 @@ wrap-ansi@^7.0.0:
string-width "^4.1.0"
strip-ansi "^6.0.0"
-wrap-ansi@^8.1.0:
- version "8.1.0"
- resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"
- integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==
- dependencies:
- ansi-styles "^6.1.0"
- string-width "^5.0.1"
- strip-ansi "^7.0.1"
-
wrappy@1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"