diff --git a/assets/styles/product-overrides/telegraf.scss b/assets/styles/product-overrides/telegraf.scss index 2ab41a95b..87f158764 100644 --- a/assets/styles/product-overrides/telegraf.scss +++ b/assets/styles/product-overrides/telegraf.scss @@ -83,6 +83,11 @@ } + .plugin-card { + .github-link { @include gradient($telegraf-btn-gradient); } + &:hover .github-link { @include gradient($telegraf-btn-gradient); } + } + .algolia-autocomplete .algolia-docsearch-suggestion--highlight { color: $telegraf-article-link; } } diff --git a/assets/styles/themes/dark/telegraf.scss b/assets/styles/themes/dark/telegraf.scss index b1420dea0..239c3dff7 100644 --- a/assets/styles/themes/dark/telegraf.scss +++ b/assets/styles/themes/dark/telegraf.scss @@ -25,7 +25,7 @@ $telegraf-article-table-header: $grad-SavannaHeat; // Article Buttons $telegraf-btn-gradient: $grad-red; -$telegraf-btn-gradient-hover: $grad-yellow-dark; +$telegraf-btn-gradient-hover: $grad-red-light; // Article Tabs for tabbed content $telegraf-article-tab-active-text: $g20-white; diff --git a/assets/styles/themes/light/telegraf.scss b/assets/styles/themes/light/telegraf.scss index ec481244c..fafe47f7d 100644 --- a/assets/styles/themes/light/telegraf.scss +++ b/assets/styles/themes/light/telegraf.scss @@ -25,7 +25,7 @@ $telegraf-article-table-header: $grad-Miyazakisky !default; // Article Buttons $telegraf-btn-gradient: $grad-red !default; -$telegraf-btn-gradient-hover: $grad-yellow-dark !default; +$telegraf-btn-gradient-hover: $grad-red-light !default; // Article Tabs for tabbed content $telegraf-article-tab-active-text: $g20-white !default; diff --git a/content/telegraf/v1.13/guides/using_http.md b/content/telegraf/v1.13/guides/using_http.md index 0bf88ccd8..df1cdf8b5 100644 --- a/content/telegraf/v1.13/guides/using_http.md +++ b/content/telegraf/v1.13/guides/using_http.md @@ -10,7 +10,7 @@ menu: This example walks through using the Telegraf HTTP input plugin to collect live metrics on Citi Bike stations in New York City. Live station data is available in JSON format from [NYC OpenData](https://data.cityofnewyork.us/NYC-BigApps/Citi-Bike-Live-Station-Feed-JSON-/p94q-8hxh). -For the following example to work, configure [`influxdb` output plugin](telegraf/v1.13/plugins/plugin-list/#influxdb). This plugin is what allows Telegraf to write the metrics to your InfluxDB. +For the following example to work, configure [`influxdb` output plugin](/telegraf/v1.13/plugins/plugin-list/#influxdb). This plugin is what allows Telegraf to write the metrics to your InfluxDB. ## Configure the HTTP Input plugin in your Telegraf configuration file diff --git a/content/telegraf/v1.14/about_the_project/release-notes-changelog.md b/content/telegraf/v1.14/about_the_project/release-notes-changelog.md index 54d652967..cb0587143 100644 --- a/content/telegraf/v1.14/about_the_project/release-notes-changelog.md +++ b/content/telegraf/v1.14/about_the_project/release-notes-changelog.md @@ -80,7 +80,7 @@ Telegraf now uses the [Go TLS library](https://golang.org/pkg/crypto/tls/). #### Inputs -- [Arista LANZ Consumer](`lanz`) - Contributed by [@timhughes](https://github.com/timhughes) +- [Arista LANZ Consumer](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/lanz) (`lanz`) - Contributed by [@timhughes](https://github.com/timhughes) - [ClickHouse](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/clickhouse/README.md)(`clickhouse`) - Contributed by [@kshvakov](https://github.com/kshvakov) - [Execd](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/execd/README.md)(`execd`) - Contributed by [@jgraichen](https://github.com/jgraichen) - [Event Hub Consumer](https://github.com/influxdata/telegraf/blob/master/plugins/inputs/eventhub_consumer/README.md)(`eventhub_consumer`) - Contributed by [@R290](https://github.com/R290) @@ -92,13 +92,13 @@ Telegraf now uses the [Go TLS library](https://golang.org/pkg/crypto/tls/). #### Processors -- [Dedup](`dedup`) - Contributed by [@igomura](https://github.com/igomura) -- [S2 Geo](`s2geo`) - Contributed by [@alespour](https://github.com/alespour) -- [Template](`template`) - Contributed by [@RobMalvern](https://github.com/RobMalvern) +- [Dedup](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/processors/dedup) (`dedup`) - Contributed by [@igomura](https://github.com/igomura) +- [S2 Geo](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/processors/s2geo) (`s2geo`) - Contributed by [@alespour](https://github.com/alespour) +- [Template](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/processors/template) (`template`) - Contributed by [@RobMalvern](https://github.com/RobMalvern) #### Outputs -- [Warp10](`warp10`) - Contributed by [@aurrelhebert](https://github.com/aurrelhebert) +- [Warp10](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/outputs/warp10) (`warp10`) - Contributed by [@aurrelhebert](https://github.com/aurrelhebert) ### Features diff --git a/content/telegraf/v1.14/guides/using_http.md b/content/telegraf/v1.14/guides/using_http.md index 03a81850f..953c09cfc 100644 --- a/content/telegraf/v1.14/guides/using_http.md +++ b/content/telegraf/v1.14/guides/using_http.md @@ -93,7 +93,7 @@ The timezone We'll set this to the Unix TZ value where our bike data takes place ## Start Telegraf and verify data appears -[Start the Telegraf service](/telegraf/v1.14/introduction/getting-started/#start-the-telegraf-service). +[Start the Telegraf service](/telegraf/v1.14/introduction/getting-started/#start-telegraf-service). To test that the data is being sent to InfluxDB, run the following (replacing `telegraf.conf` with the path to your configuration file): diff --git a/content/telegraf/v1.15/about_the_project/release-notes-changelog.md b/content/telegraf/v1.15/about_the_project/release-notes-changelog.md index bd993425a..402b1a785 100644 --- a/content/telegraf/v1.15/about_the_project/release-notes-changelog.md +++ b/content/telegraf/v1.15/about_the_project/release-notes-changelog.md @@ -208,7 +208,7 @@ Telegraf now uses the [Go TLS library](https://golang.org/pkg/crypto/tls/). #### Inputs -- [Arista LANZ Consumer](`lanz`) - Contributed by [@timhughes](https://github.com/timhughes) +- [Arista LANZ Consumer](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/lanz/README.md) - Contributed by [@timhughes](https://github.com/timhughes) - [ClickHouse](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/clickhouse/README.md)(`clickhouse`) - Contributed by [@kshvakov](https://github.com/kshvakov) - [Execd](https://github.com/influxdata/telegraf/blob/release-1.14/plugins/inputs/execd/README.md)(`execd`) - Contributed by [@jgraichen](https://github.com/jgraichen) - [Event Hub Consumer](https://github.com/influxdata/telegraf/blob/master/plugins/inputs/eventhub_consumer/README.md)(`eventhub_consumer`) - Contributed by [@R290](https://github.com/R290) @@ -220,13 +220,13 @@ Telegraf now uses the [Go TLS library](https://golang.org/pkg/crypto/tls/). #### Processors -- [Dedup](`dedup`) - Contributed by [@igomura](https://github.com/igomura) -- [S2 Geo](`s2geo`) - Contributed by [@alespour](https://github.com/alespour) -- [Template](`template`) - Contributed by [@RobMalvern](https://github.com/RobMalvern) +- [Dedup](https://github.com/influxdata/telegraf/blob/master/plugins/processors/dedup/README.md)(`dedup`) - Contributed by [@igomura](https://github.com/igomura) +- [S2 Geo](https://github.com/influxdata/telegraf/blob/master/plugins/processors/s2geo/README.md)(`s2geo`) - Contributed by [@alespour](https://github.com/alespour) +- [Template](https://github.com/influxdata/telegraf/blob/master/plugins/processors/template/README.md) (`template`) - Contributed by [@RobMalvern](https://github.com/RobMalvern) #### Outputs -- [Warp10](`warp10`) - Contributed by [@aurrelhebert](https://github.com/aurrelhebert) +- [Warp10](https://github.com/influxdata/telegraf/blob/master/plugins/outputs/warp10/README.md)(`warp10`) - Contributed by [@aurrelhebert](https://github.com/aurrelhebert) ### Features diff --git a/content/telegraf/v1.15/guides/using_http.md b/content/telegraf/v1.15/guides/using_http.md index cd10658f6..5cf138a20 100644 --- a/content/telegraf/v1.15/guides/using_http.md +++ b/content/telegraf/v1.15/guides/using_http.md @@ -93,7 +93,7 @@ The timezone We'll set this to the Unix TZ value where our bike data takes place ## Start Telegraf and verify data appears -[Start the Telegraf service](/telegraf/v1.15/introduction/getting-started/#start-the-telegraf-service). +[Start the Telegraf service](/telegraf/v1.15/introduction/getting-started/#start-telegraf-service). To test that the data is being sent to InfluxDB, run the following (replacing `telegraf.conf` with the path to your configuration file): diff --git a/layouts/shortcodes/telegraf/plugins.html b/layouts/shortcodes/telegraf/plugins.html index a6e896315..d350650dc 100644 --- a/layouts/shortcodes/telegraf/plugins.html +++ b/layouts/shortcodes/telegraf/plugins.html @@ -5,8 +5,11 @@ {{ range (index .Site.Data.telegraf_plugins $type ) }} {{ $pluginTags := delimit .tags " " }} {{ $minorVer := replaceRE `\.[^.]*$` "" .introduced }} - - {{ if ge $currentTelegrafVersion $minorVer}} + + {{ $supported := cond (le (index (split $minorVer ".") 0) (index (split $currentTelegrafVersion ".") 0)) (le (index (split $minorVer ".") 1) (index (split $currentTelegrafVersion ".") 1)) false }} + + + {{ if $supported }}