Update README.md

Sorry, unbreaking the broken commit to master I did earlier. 
Won't do it again, promise!
This commit is contained in:
Alan Pope 2021-09-21 18:39:48 +01:00 committed by GitHub
parent 90d08787f5
commit 9e004623e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -13,10 +13,10 @@ Design goal:
Telegraf is plugin-driven and has the concept of 4 distinct plugin types: Telegraf is plugin-driven and has the concept of 4 distinct plugin types:
1. [Input Plugins](#input-plugins) collect metrics from the system, services, or 3rd party APIs 1. [Input Plugins](/docs/INPUTS.md) collect metrics from the system, services, or 3rd party APIs
2. [Processor Plugins](#processor-plugins) transform, decorate, and/or filter metrics 2. [Processor Plugins](/docs/PROCESSORS.md) transform, decorate, and/or filter metrics
3. [Aggregator Plugins](#aggregator-plugins) create aggregate metrics (e.g. mean, min, max, quantiles, etc.) 3. [Aggregator Plugins](/docs/AGGREGATORS.md) create aggregate metrics (e.g. mean, min, max, quantiles, etc.)
4. [Output Plugins](#output-plugins) write metrics to various destinations 4. [Output Plugins](/docs/OUTPUTS.md) write metrics to various destinations
New plugins are designed to be easy to contribute, pull requests are welcomed and we work to incorporate as many pull requests as possible. If none of the internal plugins fit your needs, you could have a look at the New plugins are designed to be easy to contribute, pull requests are welcomed and we work to incorporate as many pull requests as possible. If none of the internal plugins fit your needs, you could have a look at the
[list of external plugins](EXTERNAL_PLUGINS.md). [list of external plugins](EXTERNAL_PLUGINS.md).
@ -117,14 +117,14 @@ telegraf --config telegraf.conf --input-filter cpu:mem --output-filter influxdb
[Latest Release Documentation][release docs]. [Latest Release Documentation][release docs].
For documentation on the latest development code see the [documentation index][devel docs]. For documentation on the latest development code see the [documentation index](/docs).
[release docs]: https://docs.influxdata.com/telegraf [release docs]: https://docs.influxdata.com/telegraf
[developer docs]: docs [developer docs]: docs
- [Input Plugins](/telegraf/docs/INPUTS.md) - [Input Plugins](/docs/INPUTS.md)
- [Output Plugins](/telegraf/docs/OUTPUTS.md) - [Output Plugins](/docs/OUTPUTS.md)
- [Processor Plugins](/telegraf/docs/PROCESSORS.md) - [Processor Plugins](/docs/PROCESSORS.md)
- [Aggregator Plugins](/telegraf/docs/AGGREGATORS.md) - [Aggregator Plugins](/docs/AGGREGATORS.md)
## Contributing ## Contributing