From 271834cf74758bb209bcf3d3932335140f80fb5d Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Wed, 10 Dec 2025 11:27:01 -0500 Subject: [PATCH] feat(telegraf): add related links to plugin directory pages (#6597) Add related frontmatter links from configure_plugins pages to the dedicated plugin directory pages for easier navigation. closes #6415 --- .../v1/configure_plugins/aggregator_processor/_index.md | 3 +++ content/telegraf/v1/configure_plugins/input_plugins/_index.md | 2 ++ .../telegraf/v1/configure_plugins/output_plugins/_index.md | 4 +++- 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/content/telegraf/v1/configure_plugins/aggregator_processor/_index.md b/content/telegraf/v1/configure_plugins/aggregator_processor/_index.md index b3c5f6aae..f10bbfade 100644 --- a/content/telegraf/v1/configure_plugins/aggregator_processor/_index.md +++ b/content/telegraf/v1/configure_plugins/aggregator_processor/_index.md @@ -7,6 +7,9 @@ menu: name: Aggregator and processor plugins weight: 50 parent: Configure plugins +related: + - /telegraf/v1/aggregator-plugins/ + - /telegraf/v1/processor-plugins/ --- diff --git a/content/telegraf/v1/configure_plugins/input_plugins/_index.md b/content/telegraf/v1/configure_plugins/input_plugins/_index.md index 257a61913..bb6f8c77f 100644 --- a/content/telegraf/v1/configure_plugins/input_plugins/_index.md +++ b/content/telegraf/v1/configure_plugins/input_plugins/_index.md @@ -8,6 +8,8 @@ menu: name: Input plugins weight: 10 parent: Configure plugins +related: + - /telegraf/v1/input-plugins/ --- Telegraf input plugins are used with the InfluxData time series platform to collect metrics from the system, services, or third-party APIs. All metrics are gathered from the inputs you enable and configure in the [Telegraf configuration file](/telegraf/v1/configuration/). diff --git a/content/telegraf/v1/configure_plugins/output_plugins/_index.md b/content/telegraf/v1/configure_plugins/output_plugins/_index.md index f6f8019e9..881607404 100644 --- a/content/telegraf/v1/configure_plugins/output_plugins/_index.md +++ b/content/telegraf/v1/configure_plugins/output_plugins/_index.md @@ -1,13 +1,15 @@ --- title: Write data with output plugins description: | - Output plugins define where Telegraf will deliver the collected metrics. + Output plugins define where Telegraf will deliver the collected metrics. menu: telegraf_v1: name: Output plugins weight: 20 parent: Configure plugins +related: + - /telegraf/v1/output-plugins/ --- Output plugins define where Telegraf will deliver the collected metrics. Send metrics to InfluxDB or to a variety of other datastores, services, and message queues, including Graphite, OpenTSDB, Datadog, Librato, Kafka, MQTT, and NSQ.