From 049e71fd88c8ff3fb1150673d351a3f28d2ac8b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=87=91=E8=8F=B1?= <17816873960@163.com> Date: Fri, 5 Dec 2025 00:20:12 +0800 Subject: [PATCH 001/103] feat(inputs.s7comm): Add option idle_timeout (#18080) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 李金菱 --- plugins/inputs/s7comm/README.md | 3 +++ plugins/inputs/s7comm/s7comm.go | 3 +++ plugins/inputs/s7comm/sample.conf | 3 +++ 3 files changed, 9 insertions(+) diff --git a/plugins/inputs/s7comm/README.md b/plugins/inputs/s7comm/README.md index 39637cf51714b..c3c6df215dd8b 100644 --- a/plugins/inputs/s7comm/README.md +++ b/plugins/inputs/s7comm/README.md @@ -54,6 +54,9 @@ using the `startup_error_behavior` setting. Available values are: ## Timeout for requests # timeout = "10s" + ## Idle timeout for requests + # idle_timeout = "60s" + ## Log detailed connection messages for tracing issues # log_level = "trace" diff --git a/plugins/inputs/s7comm/s7comm.go b/plugins/inputs/s7comm/s7comm.go index e876c7e2798b7..c1bfaab40756d 100644 --- a/plugins/inputs/s7comm/s7comm.go +++ b/plugins/inputs/s7comm/s7comm.go @@ -69,6 +69,7 @@ type S7comm struct { ConnectionType string `toml:"connection_type"` BatchMaxSize int `toml:"pdu_size"` Timeout config.Duration `toml:"timeout"` + IdleTimeout config.Duration `toml:"idle_timeout"` DebugConnection bool `toml:"debug_connection" deprecated:"1.35.0;use 'log_level' 'trace' instead"` Configs []metricDefinition `toml:"metric"` Log telegraf.Logger `toml:"-"` @@ -140,6 +141,7 @@ func (s *S7comm) Init() error { // Create handler for the connection s.handler = gos7.NewTCPClientHandlerWithConnectType(s.Server, s.Rack, s.Slot, connectionTypeMap[s.ConnectionType]) s.handler.Timeout = time.Duration(s.Timeout) + s.handler.IdleTimeout = time.Duration(s.IdleTimeout) if s.Log.Level().Includes(telegraf.Trace) || s.DebugConnection { // for backward compatibility s.handler.Logger = log.New(&tracelogger{log: s.Log}, "", 0) } @@ -431,6 +433,7 @@ func init() { Slot: -1, BatchMaxSize: 20, Timeout: config.Duration(10 * time.Second), + IdleTimeout: config.Duration(60 * time.Second), } }) } diff --git a/plugins/inputs/s7comm/sample.conf b/plugins/inputs/s7comm/sample.conf index ac62cd41752d6..76310b1468328 100644 --- a/plugins/inputs/s7comm/sample.conf +++ b/plugins/inputs/s7comm/sample.conf @@ -17,6 +17,9 @@ ## Timeout for requests # timeout = "10s" + ## Idle timeout for requests + # idle_timeout = "60s" + ## Log detailed connection messages for tracing issues # log_level = "trace" From df660c281c2bff9cab04414559c59f0d9cde5f5e Mon Sep 17 00:00:00 2001 From: Will_i_code <42240136+w1ll-i-code@users.noreply.github.com> Date: Thu, 4 Dec 2025 17:46:45 +0100 Subject: [PATCH 002/103] feat(outputs.nats): Add secret-support for credentials (#18048) --- plugins/outputs/nats/README.md | 9 ++++----- plugins/outputs/nats/nats.go | 24 +++++++++++++++++++++--- plugins/outputs/nats/sample.conf | 2 +- 3 files changed, 26 insertions(+), 9 deletions(-) diff --git a/plugins/outputs/nats/README.md b/plugins/outputs/nats/README.md index 046504296394c..cd7dfddeca11b 100644 --- a/plugins/outputs/nats/README.md +++ b/plugins/outputs/nats/README.md @@ -21,10 +21,9 @@ See the [CONFIGURATION.md][CONFIGURATION.md] for more details. ## Secret-store support -This plugin supports secrets from secret-stores for the `username` and -`password` option. -See the [secret-store documentation][SECRETSTORE] for more details on how -to use them. +This plugin supports secrets from secret-stores for the `username`, `password` +and `credential` option. See the [secret-store documentation][SECRETSTORE] for +more details on how to use them. [SECRETSTORE]: ../../../docs/CONFIGURATION.md#secret-store-secrets @@ -44,7 +43,7 @@ to use them. # password = "" ## Optional NATS 2.0 and NATS NGS compatible user credentials - # credentials = "/etc/telegraf/nats.creds" + # credentials = "" ## Optional authentication with nkey seed file (NATS 2.0) # nkey_seed = "/etc/telegraf/seed.txt" diff --git a/plugins/outputs/nats/nats.go b/plugins/outputs/nats/nats.go index 66e30ce63904b..72698817f96a6 100644 --- a/plugins/outputs/nats/nats.go +++ b/plugins/outputs/nats/nats.go @@ -7,8 +7,10 @@ import ( _ "embed" "errors" "fmt" + "os" "slices" "strings" + "syscall" "text/template" "time" @@ -30,7 +32,7 @@ type NATS struct { Name string `toml:"name"` Username config.Secret `toml:"username"` Password config.Secret `toml:"password"` - Credentials string `toml:"credentials"` + Credentials config.Secret `toml:"credentials"` NkeySeed string `toml:"nkey_seed"` Subject string `toml:"subject"` UseBatchFormat bool `toml:"use_batch_format"` @@ -117,8 +119,24 @@ func (n *NATS) Connect() error { password.Destroy() } - if n.Credentials != "" { - opts = append(opts, nats.UserCredentials(n.Credentials)) + if !n.Credentials.Empty() { + credentialsRaw, secretsErr := n.Credentials.Get() + if secretsErr != nil { + return fmt.Errorf("getting credentials secret failed: %w", secretsErr) + } + credentials := credentialsRaw.String() + credentialsRaw.Destroy() + + _, statsErr := os.Stat(credentials) + if errors.Is(statsErr, os.ErrNotExist) || errors.Is(statsErr, syscall.ENAMETOOLONG) { + opts = append(opts, nats.UserCredentialBytes([]byte(credentials))) + } else { + n.Log.Warn( + "Using a file for 'credentials' is deprecated since v1.37.0 and will be removed with v1.40.0! " + + "Use a secret-store instead to securely handle your credentials.", + ) + opts = append(opts, nats.UserCredentials(credentials)) + } } if n.NkeySeed != "" { diff --git a/plugins/outputs/nats/sample.conf b/plugins/outputs/nats/sample.conf index 5ecf5727c31eb..fb81c61317755 100644 --- a/plugins/outputs/nats/sample.conf +++ b/plugins/outputs/nats/sample.conf @@ -11,7 +11,7 @@ # password = "" ## Optional NATS 2.0 and NATS NGS compatible user credentials - # credentials = "/etc/telegraf/nats.creds" + # credentials = "" ## Optional authentication with nkey seed file (NATS 2.0) # nkey_seed = "/etc/telegraf/seed.txt" From 845fb65b99967ceb37bc4f3033dc642175959bfe Mon Sep 17 00:00:00 2001 From: Sven Rebhan <36194019+srebhan@users.noreply.github.com> Date: Thu, 4 Dec 2025 19:27:42 +0100 Subject: [PATCH 003/103] feat(inputs.sqlserver): Add support for LPC and named-pipe protocols (#17924) --- go.mod | 2 +- go.sum | 4 ++-- plugins/inputs/sqlserver/README.md | 14 ++++++++++++-- plugins/inputs/sqlserver/sqlserver.go | 5 +++-- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/go.mod b/go.mod index 64f8b795a75f4..3b43953a92c13 100644 --- a/go.mod +++ b/go.mod @@ -152,7 +152,7 @@ require ( github.com/mdlayher/apcupsd v0.0.0-20220319200143-473c7b5f3c6a github.com/mdlayher/vsock v1.2.1 github.com/microsoft/ApplicationInsights-Go v0.4.4 - github.com/microsoft/go-mssqldb v1.9.4 + github.com/microsoft/go-mssqldb v1.9.5 github.com/miekg/dns v1.1.68 github.com/moby/ipvs v1.1.0 github.com/multiplay/go-ts3 v1.2.0 diff --git a/go.sum b/go.sum index e806667a076fd..49e8cf04c026d 100644 --- a/go.sum +++ b/go.sum @@ -1934,8 +1934,8 @@ github.com/mgutz/ansi v0.0.0-20170206155736-9520e82c474b/go.mod h1:01TrycV0kFyex github.com/mholt/archiver/v3 v3.5.0/go.mod h1:qqTTPUK/HZPFgFQ/TJ3BzvTpF/dPtFVJXdQbCmeMxwc= github.com/microsoft/ApplicationInsights-Go v0.4.4 h1:G4+H9WNs6ygSCe6sUyxRc2U81TI5Es90b2t/MwX5KqY= github.com/microsoft/ApplicationInsights-Go v0.4.4/go.mod h1:fKRUseBqkw6bDiXTs3ESTiU/4YTIHsQS4W3fP2ieF4U= -github.com/microsoft/go-mssqldb v1.9.4 h1:sHrj3GcdgkxytZ09aZ3+ys72pMeyEXJowT44j74pNgs= -github.com/microsoft/go-mssqldb v1.9.4/go.mod h1:GBbW9ASTiDC+mpgWDGKdm3FnFLTUsLYN3iFL90lQ+PA= +github.com/microsoft/go-mssqldb v1.9.5 h1:orwya0X/5bsL1o+KasupTkk2eNTNFkTQG0BEe/HxCn0= +github.com/microsoft/go-mssqldb v1.9.5/go.mod h1:VCP2a0KEZZtGLRHd1PsLavLFYy/3xX2yJUPycv3Sr2Q= github.com/miekg/dns v1.0.14/go.mod h1:W1PPwlIAgtquWBMBEV9nkV9Cazfe8ScdGz/Lj7v3Nrg= github.com/miekg/dns v1.1.26/go.mod h1:bPDLeHnStXmXAq1m/Ch/hvfNHr14JKNPMBo3VZKjuso= github.com/miekg/dns v1.1.41/go.mod h1:p6aan82bvRIyn+zDIv9xYNUpwa73JcSh9BKwknJysuI= diff --git a/plugins/inputs/sqlserver/README.md b/plugins/inputs/sqlserver/README.md index 65b181faf1d4c..98771cdc4d5b4 100644 --- a/plugins/inputs/sqlserver/README.md +++ b/plugins/inputs/sqlserver/README.md @@ -175,6 +175,16 @@ to use them. # max_idle_connections = 0 ``` +For available options in the `servers` DSN check the [driver documentation][driver]. + +The plugin supports the named-pipe and LPC protocol **on Windows AMD64 and i386** +for connections. On other platforms those protocols are not available. See the +[protocol configuration section][driver_protos] of the driver documentation on +how to specify the protocols. + +[driver]: https://github.com/microsoft/go-mssqldb +[driver_protos]: https://github.com/microsoft/go-mssqldb?tab=readme-ov-file#protocol-configuration + ### Additional Setup You have to create a login on every SQL Server instance or Azure SQL Managed @@ -279,11 +289,11 @@ strings. If more then one managed identity is assigned to the VM, you need specify the `client_id` of the identity you wish to use to authenticate with the SQL Server. -Please check [SQL Server driver][driver] documentation for available options. +Please check [SQL Server driver][driver_azure] documentation for available options. [auth_methods]: https://docs.microsoft.com/en-us/azure/azure-sql/database/security-overview#authentication [auth_aad]: https://docs.microsoft.com/en-us/azure/azure-sql/database/authentication-aad-overview -[driver]: https://github.com/microsoft/go-mssqldb#azure-active-directory-authentication +[driver_azure]: https://github.com/microsoft/go-mssqldb#azure-active-directory-authentication ### Azure Active Directory (AAD) authentication using MSI diff --git a/plugins/inputs/sqlserver/sqlserver.go b/plugins/inputs/sqlserver/sqlserver.go index 76c80e0daa1cf..35c58b9373672 100644 --- a/plugins/inputs/sqlserver/sqlserver.go +++ b/plugins/inputs/sqlserver/sqlserver.go @@ -13,9 +13,10 @@ import ( "github.com/Azure/azure-sdk-for-go/sdk/azcore/policy" "github.com/Azure/azure-sdk-for-go/sdk/azidentity" - // Legacy ADAL package - kept for backward compatibility - "github.com/Azure/go-autorest/autorest/adal" + "github.com/Azure/go-autorest/autorest/adal" // legacy ADAL package for backward compatibility mssql "github.com/microsoft/go-mssqldb" + _ "github.com/microsoft/go-mssqldb/namedpipe" // required to support NP protocol + _ "github.com/microsoft/go-mssqldb/sharedmemory" // required to support LPC protocol "github.com/influxdata/telegraf" "github.com/influxdata/telegraf/config" From 61ccb48ac134764366a95acee89b71bd569d57f0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 4 Dec 2025 20:08:38 +0100 Subject: [PATCH 004/103] chore(deps): Bump the aws-sdk-go-v2 group with 11 updates (#18052) Co-authored-by: Maya Strandboge --- docs/LICENSE_OF_DEPENDENCIES.md | 1 + go.mod | 39 +++++++++-------- go.sum | 78 +++++++++++++++++---------------- 3 files changed, 61 insertions(+), 57 deletions(-) diff --git a/docs/LICENSE_OF_DEPENDENCIES.md b/docs/LICENSE_OF_DEPENDENCIES.md index 4aa2554fe06ad..7085e90b72306 100644 --- a/docs/LICENSE_OF_DEPENDENCIES.md +++ b/docs/LICENSE_OF_DEPENDENCIES.md @@ -92,6 +92,7 @@ following works: - github.com/aws/aws-sdk-go-v2/service/internal/s3shared [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/internal/s3shared/LICENSE.txt) - github.com/aws/aws-sdk-go-v2/service/kinesis [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/kinesis/LICENSE.txt) - github.com/aws/aws-sdk-go-v2/service/s3 [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/s3/LICENSE.txt) +- github.com/aws/aws-sdk-go-v2/service/signin [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/signin/LICENSE.txt) - github.com/aws/aws-sdk-go-v2/service/sso [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/ec2/LICENSE.txt) - github.com/aws/aws-sdk-go-v2/service/ssooidc [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/ssooidc/LICENSE.txt) - github.com/aws/aws-sdk-go-v2/service/sts [Apache License 2.0](https://github.com/aws/aws-sdk-go-v2/blob/main/service/sts/LICENSE.txt) diff --git a/go.mod b/go.mod index 3b43953a92c13..5c5cf4a1ea39f 100644 --- a/go.mod +++ b/go.mod @@ -51,17 +51,17 @@ require ( github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 github.com/awnumar/memguard v0.23.0 github.com/aws/aws-msk-iam-sasl-signer-go v1.0.4 - github.com/aws/aws-sdk-go-v2 v1.39.6 - github.com/aws/aws-sdk-go-v2/config v1.31.20 - github.com/aws/aws-sdk-go-v2/credentials v1.18.24 - github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.13 - github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.3 - github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.58.9 - github.com/aws/aws-sdk-go-v2/service/dynamodb v1.52.6 - github.com/aws/aws-sdk-go-v2/service/ec2 v1.270.0 - github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.3 - github.com/aws/aws-sdk-go-v2/service/sts v1.40.2 - github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.11 + github.com/aws/aws-sdk-go-v2 v1.40.1 + github.com/aws/aws-sdk-go-v2/config v1.32.3 + github.com/aws/aws-sdk-go-v2/credentials v1.19.3 + github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.15 + github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.6 + github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.62.0 + github.com/aws/aws-sdk-go-v2/service/dynamodb v1.53.3 + github.com/aws/aws-sdk-go-v2/service/ec2 v1.275.1 + github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.7 + github.com/aws/aws-sdk-go-v2/service/sts v1.41.3 + github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.14 github.com/aws/smithy-go v1.24.0 github.com/benbjohnson/clock v1.3.5 github.com/bluenviron/gomavlib/v3 v3.3.0 @@ -307,20 +307,21 @@ require ( github.com/aristanetworks/glog v0.0.0-20191112221043-67e8567f59f3 // indirect github.com/armon/go-metrics v0.4.1 // indirect github.com/awnumar/memcall v0.4.0 // indirect - github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.3 // indirect + github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 // indirect github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.43 // indirect - github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.13 // indirect - github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.13 // indirect + github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.15 // indirect + github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.15 // indirect github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 // indirect github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.25 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 // indirect github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.6 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.13 // indirect - github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.13 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.15 // indirect + github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.15 // indirect github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.6 // indirect github.com/aws/aws-sdk-go-v2/service/s3 v1.71.0 // indirect - github.com/aws/aws-sdk-go-v2/service/sso v1.30.3 // indirect - github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.7 // indirect + github.com/aws/aws-sdk-go-v2/service/signin v1.0.3 // indirect + github.com/aws/aws-sdk-go-v2/service/sso v1.30.6 // indirect + github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.11 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bitly/go-hostpool v0.1.0 // indirect github.com/blang/semver/v4 v4.0.0 // indirect diff --git a/go.sum b/go.sum index 49e8cf04c026d..a757d3f7ab76b 100644 --- a/go.sum +++ b/go.sum @@ -892,66 +892,68 @@ github.com/aws/aws-sdk-go v1.20.6/go.mod h1:KmX6BPdI08NWTb3/sm4ZGu5ShLoqVDhKgpiN github.com/aws/aws-sdk-go v1.29.11/go.mod h1:1KvfttTE3SPKMpo8g2c6jL3ZKfXtFvKscTgahTma5Xg= github.com/aws/aws-sdk-go v1.44.263/go.mod h1:aVsgQcEevwlmQ7qHE9I3h+dtQgpqhFB+i8Phjh7fkwI= github.com/aws/aws-sdk-go-v2 v1.18.0/go.mod h1:uzbQtefpm44goOPmdKyAlXSNcwlRgF3ePWVW6EtJvvw= -github.com/aws/aws-sdk-go-v2 v1.39.6 h1:2JrPCVgWJm7bm83BDwY5z8ietmeJUbh3O2ACnn+Xsqk= -github.com/aws/aws-sdk-go-v2 v1.39.6/go.mod h1:c9pm7VwuW0UPxAEYGyTmyurVcNrbF6Rt/wixFqDhcjE= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.3 h1:DHctwEM8P8iTXFxC/QK0MRjwEpWQeM9yzidCRjldUz0= -github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.3/go.mod h1:xdCzcZEtnSTKVDOmUZs4l/j3pSV6rpo1WXl5ugNsL8Y= +github.com/aws/aws-sdk-go-v2 v1.40.1 h1:difXb4maDZkRH0x//Qkwcfpdg1XQVXEAEs2DdXldFFc= +github.com/aws/aws-sdk-go-v2 v1.40.1/go.mod h1:MayyLB8y+buD9hZqkCW3kX1AKq07Y5pXxtgB+rRFhz0= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 h1:489krEF9xIGkOaaX3CE/Be2uWjiXrkCH6gUX+bZA/BU= +github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4/go.mod h1:IOAPF6oT9KCsceNTvvYMNHy0+kMF8akOjeDvPENWxp4= github.com/aws/aws-sdk-go-v2/config v1.18.25/go.mod h1:dZnYpD5wTW/dQF0rRNLVypB396zWCcPiBIvdvSWHEg4= -github.com/aws/aws-sdk-go-v2/config v1.31.20 h1:/jWF4Wu90EhKCgjTdy1DGxcbcbNrjfBHvksEL79tfQc= -github.com/aws/aws-sdk-go-v2/config v1.31.20/go.mod h1:95Hh1Tc5VYKL9NJ7tAkDcqeKt+MCXQB1hQZaRdJIZE0= +github.com/aws/aws-sdk-go-v2/config v1.32.3 h1:cpz7H2uMNTDa0h/5CYL5dLUEzPSLo2g0NkbxTRJtSSU= +github.com/aws/aws-sdk-go-v2/config v1.32.3/go.mod h1:srtPKaJJe3McW6T/+GMBZyIPc+SeqJsNPJsd4mOYZ6s= github.com/aws/aws-sdk-go-v2/credentials v1.13.24/go.mod h1:jYPYi99wUOPIFi0rhiOvXeSEReVOzBqFNOX5bXYoG2o= -github.com/aws/aws-sdk-go-v2/credentials v1.18.24 h1:iJ2FmPT35EaIB0+kMa6TnQ+PwG5A1prEdAw+PsMzfHg= -github.com/aws/aws-sdk-go-v2/credentials v1.18.24/go.mod h1:U91+DrfjAiXPDEGYhh/x29o4p0qHX5HDqG7y5VViv64= +github.com/aws/aws-sdk-go-v2/credentials v1.19.3 h1:01Ym72hK43hjwDeJUfi1l2oYLXBAOR8gNSZNmXmvuas= +github.com/aws/aws-sdk-go-v2/credentials v1.19.3/go.mod h1:55nWF/Sr9Zvls0bGnWkRxUdhzKqj9uRNlPvgV1vgxKc= github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.13.3/go.mod h1:4Q0UFP0YJf0NrsEuEYHpM9fTSEVnD16Z3uyEF7J9JGM= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.13 h1:T1brd5dR3/fzNFAQch/iBKeX07/ffu/cLu+q+RuzEWk= -github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.13/go.mod h1:Peg/GBAQ6JDt+RoBf4meB1wylmAipb7Kg2ZFakZTlwk= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.15 h1:utxLraaifrSBkeyII9mIbVwXXWrZdlPO7FIKmyLCEcY= +github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.15/go.mod h1:hW6zjYUDQwfz3icf4g2O41PHi77u10oAzJ84iSzR/lo= github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.43 h1:iLdpkYZ4cXIQMO7ud+cqMWR1xK5ESbt1rvN77tRi1BY= github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.43/go.mod h1:OgbsKPAswXDd5kxnR4vZov69p3oYjbvUyIRBAAV0y9o= github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.33/go.mod h1:7i0PF1ME/2eUPFcjkVIwq+DOygHEoK92t5cDqNgYbIw= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.13 h1:a+8/MLcWlIxo1lF9xaGt3J/u3yOZx+CdSveSNwjhD40= -github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.13/go.mod h1:oGnKwIYZ4XttyU2JWxFrwvhF6YKiK/9/wmE3v3Iu9K8= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.15 h1:Y5YXgygXwDI5P4RkteB5yF7v35neH7LfJKBG+hzIons= +github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.15/go.mod h1:K+/1EpG42dFSY7CBj+Fruzm8PsCGWTXJ3jdeJ659oGQ= github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.27/go.mod h1:UrHnn3QV/d0pBZ6QBAEQcqFLf8FAzLmoUfPVIueOvoM= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.13 h1:HBSI2kDkMdWz4ZM7FjwE7e/pWDEZ+nR95x8Ztet1ooY= -github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.13/go.mod h1:YE94ZoDArI7awZqJzBAZ3PDD2zSfuP7w6P2knOzIn8M= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.15 h1:AvltKnW9ewxX2hFmQS0FyJH93aSvJVUEFvXfU+HWtSE= +github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.15/go.mod h1:3I4oCdZdmgrREhU74qS1dK9yZ62yumob+58AbFR4cQA= github.com/aws/aws-sdk-go-v2/internal/ini v1.3.34/go.mod h1:Etz2dj6UHYuw+Xw830KfzCfWGMzqvUTCjUj5b76GVDc= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 h1:WKuaxf++XKWlHWu9ECbMlha8WOEGm0OUEZqm4K/Gcfk= github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4/go.mod h1:ZWy7j6v1vWGmPReu0iSGvRiise4YI5SkR3OHKTZ6Wuc= github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.25 h1:r67ps7oHCYnflpgDy2LZU0MAQtQbYIOqNNnqGO6xQkE= github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.25/go.mod h1:GrGY+Q4fIokYLtjCVB/aFfCVL6hhGUFl8inD18fDalE= -github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.3 h1:fD9/X9n4O6fauKLp9BE848I3JcXVEliwlgliernxUhs= -github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.3/go.mod h1:KSWhI1V5x80r8NUqs8QDkOazDolFqFUAjsyE5nYjKro= -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.58.9 h1:+NSIzl59vBK3g3nLUuLSb/I2F2OIucW6hX/B+NAPWDg= -github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.58.9/go.mod h1:9/Q0/HtqBTLMksFse42wZjUq0jJrUuo4XlnXy/uSoeg= -github.com/aws/aws-sdk-go-v2/service/dynamodb v1.52.6 h1:jlPkBSbMSpqVk47u9kqblihtXlmzYv3ZFXtuNKUNwDc= -github.com/aws/aws-sdk-go-v2/service/dynamodb v1.52.6/go.mod h1:6eUUnWOJ8sucL5Uk8rPkFo8FYioM0CTNGHga8hwzXVc= -github.com/aws/aws-sdk-go-v2/service/ec2 v1.270.0 h1:P/45prprtc7hYQMqrRI799Xoj4oKBDZkS0QoblLjAlE= -github.com/aws/aws-sdk-go-v2/service/ec2 v1.270.0/go.mod h1:NDdDLLW5PtLLXN661gKcvJvqAH5OBXsfhMlmKVu1/pY= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3 h1:x2Ibm/Af8Fi+BH+Hsn9TXGdT+hKbDd5XOTZxTMxDk7o= -github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.3/go.mod h1:IW1jwyrQgMdhisceG8fQLmQIydcT/jWY21rFhzgaKwo= +github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.6 h1:sYHFJrflRClDOA/UZ9Y56DS7Rf2CNgjEzE2dlSGU7Yg= +github.com/aws/aws-sdk-go-v2/service/cloudwatch v1.52.6/go.mod h1:MJCj4G367pVtvEfNpfJaw1NFipVkBkIEtIp9PwTi+3Y= +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.62.0 h1:hgZH8UpBYi7/8t3hSk1Re/eDHpzeqEYYDBG6HZgPZh8= +github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.62.0/go.mod h1:6OTPGCCE8AV7UDdYrVn17nNRDExl7mNyp/otIkyLaWo= +github.com/aws/aws-sdk-go-v2/service/dynamodb v1.53.3 h1:iFAc3pUrWHrVzeWesFsdMit7Batp/0BJlV6zzjgTznA= +github.com/aws/aws-sdk-go-v2/service/dynamodb v1.53.3/go.mod h1:WEsxUgfGPWPlFv6MzEqAOZnQubdUHIR7RWSxs1P3/5c= +github.com/aws/aws-sdk-go-v2/service/ec2 v1.275.1 h1:nEpHPUp2UKzxiLBoaLLTnIrWBmb1OL0vf8KHDHjNqcQ= +github.com/aws/aws-sdk-go-v2/service/ec2 v1.275.1/go.mod h1:6xabBAflTTz4OO5f/P4QJrjzZ0WTYjRka+ZWXFqWw8U= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 h1:0ryTNEdJbzUCEWkVXEXoqlXV72J5keC1GvILMOuD00E= +github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4/go.mod h1:HQ4qwNZh32C3CBeO6iJLQlgtMzqeG17ziAA/3KDJFow= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.6 h1:HCpPsWqmYQieU7SS6E9HXfdAMSud0pteVXieJmcpIRI= github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.6/go.mod h1:ngUiVRCco++u+soRRVBIvBZxSMMvOVMXA4PJ36JLfSw= -github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.13 h1:FScsqdRyKFkw3u2ysLeWC0dbaz9I+g0xJ1JlQpH6bPo= -github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.13/go.mod h1:wkhwIaGltEuG4SRwNzPiJmf/tDp+yL5ym55Lt4bheno= +github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.15 h1:eqFpfK7yQOFLlL7Pi6nRcNmw10GWHpz/6eVqmXfyJpg= +github.com/aws/aws-sdk-go-v2/service/internal/endpoint-discovery v1.11.15/go.mod h1:kePbIvbXUXhddSN7CQ4OW8l9mpI611/4iqDdhF6UNkw= github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.27/go.mod h1:EOwBD4J4S5qYszS5/3DpkejfuK+Z5/1uzICfPaZLtqw= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.13 h1:kDqdFvMY4AtKoACfzIGD8A0+hbT41KTKF//gq7jITfM= -github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.13/go.mod h1:lmKuogqSU3HzQCwZ9ZtcqOc5XGMqtDK7OIc2+DxiUEg= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.15 h1:3/u/4yZOffg5jdNk1sDpOQ4Y+R6Xbh+GzpDrSZjuy3U= +github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.13.15/go.mod h1:4Zkjq0FKjE78NKjabuM4tRXKFzUJWXgP0ItEZK8l7JU= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.6 h1:BbGDtTi0T1DYlmjBiCr/le3wzhA37O8QTC5/Ab8+EXk= github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.6/go.mod h1:hLMJt7Q8ePgViKupeymbqI0la+t9/iYFBjxQCFwuAwI= -github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.3 h1:A2HNxrABEFha5831yAU05G0mYNxaxYH4WG85FV6ZWIQ= -github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.3/go.mod h1:jTDNZao/9uv/6JeaeDWEqA4s+l6c8+cqaDeYFpM+818= +github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.7 h1:b2fyvbCawsZhv7ktiVEpp2XFu4MlaCQT3UgDIzdJQ+s= +github.com/aws/aws-sdk-go-v2/service/kinesis v1.42.7/go.mod h1:LnTxOcmmSXBgAm4L0kuaoQQ/HiW8ZH0YOBo9OsjNm2A= github.com/aws/aws-sdk-go-v2/service/s3 v1.71.0 h1:nyuzXooUNJexRT0Oy0UQY6AhOzxPxhtt4DcBIHyCnmw= github.com/aws/aws-sdk-go-v2/service/s3 v1.71.0/go.mod h1:sT/iQz8JK3u/5gZkT+Hmr7GzVZehUMkRZpOaAwYXeGY= +github.com/aws/aws-sdk-go-v2/service/signin v1.0.3 h1:d/6xOGIllc/XW1lzG9a4AUBMmpLA9PXcQnVPTuHHcik= +github.com/aws/aws-sdk-go-v2/service/signin v1.0.3/go.mod h1:fQ7E7Qj9GiW8y0ClD7cUJk3Bz5Iw8wZkWDHsTe8vDKs= github.com/aws/aws-sdk-go-v2/service/sso v1.12.10/go.mod h1:ouy2P4z6sJN70fR3ka3wD3Ro3KezSxU6eKGQI2+2fjI= -github.com/aws/aws-sdk-go-v2/service/sso v1.30.3 h1:NjShtS1t8r5LUfFVtFeI8xLAHQNTa7UI0VawXlrBMFQ= -github.com/aws/aws-sdk-go-v2/service/sso v1.30.3/go.mod h1:fKvyjJcz63iL/ftA6RaM8sRCtN4r4zl4tjL3qw5ec7k= +github.com/aws/aws-sdk-go-v2/service/sso v1.30.6 h1:8sTTiw+9yuNXcfWeqKF2x01GqCF49CpP4Z9nKrrk/ts= +github.com/aws/aws-sdk-go-v2/service/sso v1.30.6/go.mod h1:8WYg+Y40Sn3X2hioaaWAAIngndR8n1XFdRPPX+7QBaM= github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.10/go.mod h1:AFvkxc8xfBe8XA+5St5XIHHrQQtkxqrRincx4hmMHOk= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.7 h1:gTsnx0xXNQ6SBbymoDvcoRHL+q4l/dAFsQuKfDWSaGc= -github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.7/go.mod h1:klO+ejMvYsB4QATfEOIXk8WAEwN4N0aBfJpvC+5SZBo= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.11 h1:E+KqWoVsSrj1tJ6I/fjDIu5xoS2Zacuu1zT+H7KtiIk= +github.com/aws/aws-sdk-go-v2/service/ssooidc v1.35.11/go.mod h1:qyWHz+4lvkXcr3+PoGlGHEI+3DLLiU6/GdrFfMaAhB0= github.com/aws/aws-sdk-go-v2/service/sts v1.19.0/go.mod h1:BgQOMsg8av8jset59jelyPW7NoZcZXLVpDsXunGDrk8= -github.com/aws/aws-sdk-go-v2/service/sts v1.40.2 h1:HK5ON3KmQV2HcAunnx4sKLB9aPf3gKGwVAf7xnx0QT0= -github.com/aws/aws-sdk-go-v2/service/sts v1.40.2/go.mod h1:E19xDjpzPZC7LS2knI9E6BaRFDK43Eul7vd6rSq2HWk= -github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.11 h1:ylTUvLe7i1rEk7nTsL1qW2kUIdZSqYw5Jb0XFfnp6H8= -github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.11/go.mod h1:WOhN8208dG/kUp22L0kch06lMtCQJ/+Ypv2W3TTC6vg= +github.com/aws/aws-sdk-go-v2/service/sts v1.41.3 h1:tzMkjh0yTChUqJDgGkcDdxvZDSrJ/WB6R6ymI5ehqJI= +github.com/aws/aws-sdk-go-v2/service/sts v1.41.3/go.mod h1:T270C0R5sZNLbWUe8ueiAF42XSZxxPocTaGSgs5c/60= +github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.14 h1:2CQ3fsf1RYCm1PigX8hQY8K2SWouxDK9Gbljq0CK54w= +github.com/aws/aws-sdk-go-v2/service/timestreamwrite v1.35.14/go.mod h1:KjfcC5XQBPAB2sRr+1FpNwMSjtamTp7PeNO9XaBSmDs= github.com/aws/smithy-go v1.13.5/go.mod h1:Tg+OJXh4MB2R/uN61Ko2f6hTZwB/ZYGOtib8J3gBHzA= github.com/aws/smithy-go v1.24.0 h1:LpilSUItNPFr1eY85RYgTIg5eIEPtvFbskaFcmmIUnk= github.com/aws/smithy-go v1.24.0/go.mod h1:LEj2LM3rBRQJxPZTB4KuzZkaZYnZPnvgIhb4pu07mx0= From 31a17022ab9db23ded72e681100e565845203b9c Mon Sep 17 00:00:00 2001 From: Sven Rebhan <36194019+srebhan@users.noreply.github.com> Date: Fri, 5 Dec 2025 17:27:22 +0100 Subject: [PATCH 005/103] feat(config): Allow specifying env-handling mode for config check (#18084) --- cmd/telegraf/cmd_config.go | 12 ++++++++++++ cmd/telegraf/main.go | 16 ++++++++-------- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/cmd/telegraf/cmd_config.go b/cmd/telegraf/cmd_config.go index 23d2061c9f163..d597ef067622d 100644 --- a/cmd/telegraf/cmd_config.go +++ b/cmd/telegraf/cmd_config.go @@ -57,6 +57,18 @@ func getConfigCommands(configHandlingFlags []cli.Flag, outputBuffer io.Writer) [ return err } + // Set the environment variables handling mode + if cCtx.Bool("strict-env-handling") && cCtx.Bool("non-strict-env-handling") { + return errors.New("flags --strict-env-handling and --non-strict-env-handling cannot be used together") + } + if !cCtx.Bool("strict-env-handling") && !cCtx.Bool("non-strict-env-handling") { + msg := "Strict environment variable handling will be the new default starting with v1.38.0! " + + "If your configuration works with strict handling or you don't use environment variables it is safe " + + "to ignore this warning. Otherwise please explicitly add the --non-strict-env-handling flag!" + log.Println("W! " + color.YellowString(msg)) + } + config.NonStrictEnvVarHandling = !cCtx.Bool("strict-env-handling") + // Collect the given configuration files configFiles := cCtx.StringSlice("config") configDir := cCtx.StringSlice("config-directory") diff --git a/cmd/telegraf/main.go b/cmd/telegraf/main.go index 1a473f8c16a9c..3a7c0817cda4d 100644 --- a/cmd/telegraf/main.go +++ b/cmd/telegraf/main.go @@ -135,6 +135,14 @@ func runApp(args []string, outputBuffer io.Writer, pprof Server, c TelegrafConfi Name: "secretstore-filter", Usage: "filter the secret-stores to enable, separator is ':'", }, + &cli.BoolFlag{ + Name: "strict-env-handling", + Usage: "enforces strict and secure handling of environment variables; will not work with non-string settings", + }, + &cli.BoolFlag{ + Name: "non-strict-env-handling", + Usage: "allow unsafe non-strict handling of environment variables to replace non-string settings", + }, } mainFlags := append(configHandlingFlags, cliFlags()...) @@ -333,14 +341,6 @@ func runApp(args []string, outputBuffer io.Writer, pprof Server, c TelegrafConfi Name: "old-env-behavior", Usage: "switch back to pre v1.27 environment replacement behavior", }, - &cli.BoolFlag{ - Name: "strict-env-handling", - Usage: "enforces strict and secure handling of environment variables; will not work with non-string settings", - }, - &cli.BoolFlag{ - Name: "non-strict-env-handling", - Usage: "allow unsafe non-strict handling of environment variables to replace non-string settings", - }, &cli.BoolFlag{ Name: "print-plugin-config-source", Usage: "print the source for a given plugin", From 4d32fbfce6ee61c524cfc169b6ddbe5a057cec1b Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Fri, 5 Dec 2025 12:31:17 -0500 Subject: [PATCH 006/103] docs: Improve grammar in global configuration section (#18078) Co-authored-by: Sven Rebhan --- docs/includes/plugin_config.md | 7 +++---- plugins/aggregators/basicstats/README.md | 7 +++---- plugins/aggregators/derivative/README.md | 7 +++---- plugins/aggregators/final/README.md | 7 +++---- plugins/aggregators/histogram/README.md | 7 +++---- plugins/aggregators/merge/README.md | 7 +++---- plugins/aggregators/minmax/README.md | 7 +++---- plugins/aggregators/quantile/README.md | 7 +++---- plugins/aggregators/starlark/README.md | 7 +++---- plugins/aggregators/valuecounter/README.md | 7 +++---- plugins/inputs/activemq/README.md | 7 +++---- plugins/inputs/aerospike/README.md | 7 +++---- plugins/inputs/aliyuncms/README.md | 7 +++---- plugins/inputs/amd_rocm_smi/README.md | 7 +++---- plugins/inputs/amqp_consumer/README.md | 7 +++---- plugins/inputs/apache/README.md | 7 +++---- plugins/inputs/apcupsd/README.md | 7 +++---- plugins/inputs/aurora/README.md | 7 +++---- plugins/inputs/azure_monitor/README.md | 7 +++---- plugins/inputs/azure_storage_queue/README.md | 7 +++---- plugins/inputs/bcache/README.md | 7 +++---- plugins/inputs/beanstalkd/README.md | 7 +++---- plugins/inputs/beat/README.md | 7 +++---- plugins/inputs/bind/README.md | 7 +++---- plugins/inputs/bond/README.md | 7 +++---- plugins/inputs/burrow/README.md | 7 +++---- plugins/inputs/ceph/README.md | 7 +++---- plugins/inputs/cgroup/README.md | 7 +++---- plugins/inputs/chrony/README.md | 7 +++---- plugins/inputs/cisco_telemetry_mdt/README.md | 7 +++---- plugins/inputs/clickhouse/README.md | 7 +++---- plugins/inputs/cloud_pubsub/README.md | 7 +++---- plugins/inputs/cloud_pubsub_push/README.md | 7 +++---- plugins/inputs/cloudwatch/README.md | 7 +++---- plugins/inputs/cloudwatch_metric_streams/README.md | 7 +++---- plugins/inputs/conntrack/README.md | 7 +++---- plugins/inputs/consul/README.md | 7 +++---- plugins/inputs/consul_agent/README.md | 7 +++---- plugins/inputs/couchbase/README.md | 7 +++---- plugins/inputs/couchdb/README.md | 7 +++---- plugins/inputs/cpu/README.md | 7 +++---- plugins/inputs/csgo/README.md | 7 +++---- plugins/inputs/ctrlx_datalayer/README.md | 7 +++---- plugins/inputs/dcos/README.md | 7 +++---- plugins/inputs/directory_monitor/README.md | 7 +++---- plugins/inputs/disk/README.md | 7 +++---- plugins/inputs/diskio/README.md | 7 +++---- plugins/inputs/disque/README.md | 7 +++---- plugins/inputs/dmcache/README.md | 7 +++---- plugins/inputs/dns_query/README.md | 7 +++---- plugins/inputs/docker/README.md | 7 +++---- plugins/inputs/docker_log/README.md | 7 +++---- plugins/inputs/dovecot/README.md | 7 +++---- plugins/inputs/dpdk/README.md | 7 +++---- plugins/inputs/ecs/README.md | 7 +++---- plugins/inputs/elasticsearch/README.md | 7 +++---- plugins/inputs/elasticsearch_query/README.md | 7 +++---- plugins/inputs/ethtool/README.md | 7 +++---- plugins/inputs/eventhub_consumer/README.md | 7 +++---- plugins/inputs/example/README.md | 7 +++---- plugins/inputs/exec/README.md | 7 +++---- plugins/inputs/execd/README.md | 7 +++---- plugins/inputs/fail2ban/README.md | 7 +++---- plugins/inputs/fibaro/README.md | 7 +++---- plugins/inputs/file/README.md | 7 +++---- plugins/inputs/filecount/README.md | 7 +++---- plugins/inputs/filestat/README.md | 7 +++---- plugins/inputs/fireboard/README.md | 7 +++---- plugins/inputs/firehose/README.md | 7 +++---- plugins/inputs/fluentd/README.md | 7 +++---- plugins/inputs/fritzbox/README.md | 7 +++---- plugins/inputs/github/README.md | 7 +++---- plugins/inputs/gnmi/README.md | 7 +++---- plugins/inputs/google_cloud_storage/README.md | 7 +++---- plugins/inputs/graylog/README.md | 7 +++---- plugins/inputs/haproxy/README.md | 7 +++---- plugins/inputs/hddtemp/README.md | 7 +++---- plugins/inputs/http/README.md | 7 +++---- plugins/inputs/http_listener_v2/README.md | 7 +++---- plugins/inputs/http_response/README.md | 7 +++---- plugins/inputs/huebridge/README.md | 7 +++---- plugins/inputs/hugepages/README.md | 7 +++---- plugins/inputs/icinga2/README.md | 7 +++---- plugins/inputs/infiniband/README.md | 7 +++---- plugins/inputs/influxdb/README.md | 7 +++---- plugins/inputs/influxdb_listener/README.md | 7 +++---- plugins/inputs/influxdb_v2_listener/README.md | 7 +++---- plugins/inputs/intel_baseband/README.md | 7 +++---- plugins/inputs/intel_dlb/README.md | 7 +++---- plugins/inputs/intel_pmt/README.md | 7 +++---- plugins/inputs/intel_pmu/README.md | 7 +++---- plugins/inputs/intel_powerstat/README.md | 7 +++---- plugins/inputs/intel_rdt/README.md | 7 +++---- plugins/inputs/internal/README.md | 7 +++---- plugins/inputs/internet_speed/README.md | 7 +++---- plugins/inputs/interrupts/README.md | 7 +++---- plugins/inputs/ipmi_sensor/README.md | 7 +++---- plugins/inputs/ipset/README.md | 7 +++---- plugins/inputs/iptables/README.md | 7 +++---- plugins/inputs/ipvs/README.md | 7 +++---- plugins/inputs/jenkins/README.md | 7 +++---- plugins/inputs/jolokia2_agent/README.md | 7 +++---- plugins/inputs/jolokia2_proxy/README.md | 7 +++---- plugins/inputs/jti_openconfig_telemetry/README.md | 7 +++---- plugins/inputs/kafka_consumer/README.md | 7 +++---- plugins/inputs/kapacitor/README.md | 7 +++---- plugins/inputs/kernel/README.md | 7 +++---- plugins/inputs/kernel_vmstat/README.md | 7 +++---- plugins/inputs/kibana/README.md | 7 +++---- plugins/inputs/kinesis_consumer/README.md | 7 +++---- plugins/inputs/knx_listener/README.md | 7 +++---- plugins/inputs/kube_inventory/README.md | 7 +++---- plugins/inputs/kubernetes/README.md | 7 +++---- plugins/inputs/lanz/README.md | 7 +++---- plugins/inputs/ldap/README.md | 7 +++---- plugins/inputs/leofs/README.md | 7 +++---- plugins/inputs/libvirt/README.md | 7 +++---- plugins/inputs/linux_cpu/README.md | 7 +++---- plugins/inputs/linux_sysctl_fs/README.md | 7 +++---- plugins/inputs/logql/README.md | 7 +++---- plugins/inputs/logstash/README.md | 7 +++---- plugins/inputs/lustre2/README.md | 7 +++---- plugins/inputs/lvm/README.md | 7 +++---- plugins/inputs/mailchimp/README.md | 7 +++---- plugins/inputs/marklogic/README.md | 7 +++---- plugins/inputs/mavlink/README.md | 7 +++---- plugins/inputs/mcrouter/README.md | 7 +++---- plugins/inputs/mdstat/README.md | 7 +++---- plugins/inputs/mem/README.md | 7 +++---- plugins/inputs/memcached/README.md | 7 +++---- plugins/inputs/mesos/README.md | 7 +++---- plugins/inputs/minecraft/README.md | 7 +++---- plugins/inputs/mock/README.md | 7 +++---- plugins/inputs/modbus/README.md | 7 +++---- plugins/inputs/mongodb/README.md | 7 +++---- plugins/inputs/monit/README.md | 7 +++---- plugins/inputs/mqtt_consumer/README.md | 7 +++---- plugins/inputs/multifile/README.md | 7 +++---- plugins/inputs/mysql/README.md | 7 +++---- plugins/inputs/nats/README.md | 7 +++---- plugins/inputs/nats_consumer/README.md | 7 +++---- plugins/inputs/neoom_beaam/README.md | 7 +++---- plugins/inputs/neptune_apex/README.md | 7 +++---- plugins/inputs/net/README.md | 7 +++---- plugins/inputs/net_response/README.md | 7 +++---- plugins/inputs/netflow/README.md | 7 +++---- plugins/inputs/netstat/README.md | 7 +++---- plugins/inputs/nfsclient/README.md | 7 +++---- plugins/inputs/nftables/README.md | 7 +++---- plugins/inputs/nginx/README.md | 7 +++---- plugins/inputs/nginx_plus/README.md | 7 +++---- plugins/inputs/nginx_plus_api/README.md | 7 +++---- plugins/inputs/nginx_sts/README.md | 7 +++---- plugins/inputs/nginx_upstream_check/README.md | 7 +++---- plugins/inputs/nginx_vts/README.md | 7 +++---- plugins/inputs/nomad/README.md | 7 +++---- plugins/inputs/nsd/README.md | 7 +++---- plugins/inputs/nsdp/README.md | 7 +++---- plugins/inputs/nsq/README.md | 7 +++---- plugins/inputs/nsq_consumer/README.md | 7 +++---- plugins/inputs/nstat/README.md | 7 +++---- plugins/inputs/ntpq/README.md | 7 +++---- plugins/inputs/nvidia_smi/README.md | 7 +++---- plugins/inputs/opcua/README.md | 7 +++---- plugins/inputs/opcua_listener/README.md | 7 +++---- plugins/inputs/openldap/README.md | 7 +++---- plugins/inputs/openntpd/README.md | 7 +++---- plugins/inputs/opensearch_query/README.md | 7 +++---- plugins/inputs/opensmtpd/README.md | 7 +++---- plugins/inputs/openstack/README.md | 7 +++---- plugins/inputs/opentelemetry/README.md | 7 +++---- plugins/inputs/openweathermap/README.md | 7 +++---- plugins/inputs/p4runtime/README.md | 7 +++---- plugins/inputs/passenger/README.md | 7 +++---- plugins/inputs/pf/README.md | 7 +++---- plugins/inputs/pgbouncer/README.md | 7 +++---- plugins/inputs/phpfpm/README.md | 7 +++---- plugins/inputs/ping/README.md | 7 +++---- plugins/inputs/postfix/README.md | 7 +++---- plugins/inputs/postgresql/README.md | 7 +++---- plugins/inputs/postgresql_extensible/README.md | 7 +++---- plugins/inputs/powerdns/README.md | 7 +++---- plugins/inputs/powerdns_recursor/README.md | 7 +++---- plugins/inputs/processes/README.md | 7 +++---- plugins/inputs/procstat/README.md | 7 +++---- plugins/inputs/prometheus/README.md | 7 +++---- plugins/inputs/promql/README.md | 7 +++---- plugins/inputs/proxmox/README.md | 7 +++---- plugins/inputs/puppetagent/README.md | 7 +++---- plugins/inputs/rabbitmq/README.md | 7 +++---- plugins/inputs/radius/README.md | 7 +++---- plugins/inputs/raindrops/README.md | 7 +++---- plugins/inputs/ras/README.md | 7 +++---- plugins/inputs/ravendb/README.md | 7 +++---- plugins/inputs/redfish/README.md | 7 +++---- plugins/inputs/redis/README.md | 7 +++---- plugins/inputs/redis_sentinel/README.md | 7 +++---- plugins/inputs/rethinkdb/README.md | 7 +++---- plugins/inputs/riak/README.md | 7 +++---- plugins/inputs/riemann_listener/README.md | 7 +++---- plugins/inputs/s7comm/README.md | 7 +++---- plugins/inputs/salesforce/README.md | 7 +++---- plugins/inputs/sensors/README.md | 7 +++---- plugins/inputs/sflow/README.md | 7 +++---- plugins/inputs/slab/README.md | 7 +++---- plugins/inputs/slurm/README.md | 7 +++---- plugins/inputs/smart/README.md | 7 +++---- plugins/inputs/smartctl/README.md | 7 +++---- plugins/inputs/snmp/README.md | 7 +++---- plugins/inputs/snmp_trap/README.md | 7 +++---- plugins/inputs/socket_listener/README.md | 7 +++---- plugins/inputs/socketstat/README.md | 7 +++---- plugins/inputs/solr/README.md | 7 +++---- plugins/inputs/sql/README.md | 7 +++---- plugins/inputs/sqlserver/README.md | 7 +++---- plugins/inputs/stackdriver/README.md | 7 +++---- plugins/inputs/statsd/README.md | 7 +++---- plugins/inputs/supervisor/README.md | 7 +++---- plugins/inputs/suricata/README.md | 7 +++---- plugins/inputs/swap/README.md | 7 +++---- plugins/inputs/synproxy/README.md | 7 +++---- plugins/inputs/syslog/README.md | 7 +++---- plugins/inputs/sysstat/README.md | 7 +++---- plugins/inputs/system/README.md | 7 +++---- plugins/inputs/systemd_units/README.md | 7 +++---- plugins/inputs/tacacs/README.md | 7 +++---- plugins/inputs/tail/README.md | 7 +++---- plugins/inputs/teamspeak/README.md | 7 +++---- plugins/inputs/temp/README.md | 7 +++---- plugins/inputs/tengine/README.md | 7 +++---- plugins/inputs/timex/README.md | 7 +++---- plugins/inputs/tomcat/README.md | 7 +++---- plugins/inputs/trig/README.md | 7 +++---- plugins/inputs/turbostat/README.md | 7 +++---- plugins/inputs/twemproxy/README.md | 7 +++---- plugins/inputs/unbound/README.md | 7 +++---- plugins/inputs/upsd/README.md | 7 +++---- plugins/inputs/uwsgi/README.md | 7 +++---- plugins/inputs/varnish/README.md | 7 +++---- plugins/inputs/vault/README.md | 7 +++---- plugins/inputs/vsphere/README.md | 7 +++---- plugins/inputs/webhooks/README.md | 7 +++---- plugins/inputs/whois/README.md | 7 +++---- plugins/inputs/win_eventlog/README.md | 7 +++---- plugins/inputs/win_perf_counters/README.md | 7 +++---- plugins/inputs/win_services/README.md | 7 +++---- plugins/inputs/win_wmi/README.md | 7 +++---- plugins/inputs/wireguard/README.md | 7 +++---- plugins/inputs/wireless/README.md | 7 +++---- plugins/inputs/x509_cert/README.md | 7 +++---- plugins/inputs/xtremio/README.md | 7 +++---- plugins/inputs/zfs/README.md | 7 +++---- plugins/inputs/zipkin/README.md | 7 +++---- plugins/inputs/zookeeper/README.md | 7 +++---- plugins/outputs/amon/README.md | 7 +++---- plugins/outputs/amqp/README.md | 7 +++---- plugins/outputs/application_insights/README.md | 7 +++---- plugins/outputs/arc/README.md | 7 +++---- plugins/outputs/azure_data_explorer/README.md | 7 +++---- plugins/outputs/azure_monitor/README.md | 7 +++---- plugins/outputs/bigquery/README.md | 7 +++---- plugins/outputs/clarify/README.md | 7 +++---- plugins/outputs/cloud_pubsub/README.md | 7 +++---- plugins/outputs/cloudwatch/README.md | 7 +++---- plugins/outputs/cloudwatch_logs/README.md | 7 +++---- plugins/outputs/cratedb/README.md | 7 +++---- plugins/outputs/datadog/README.md | 7 +++---- plugins/outputs/discard/README.md | 7 +++---- plugins/outputs/dynatrace/README.md | 7 +++---- plugins/outputs/elasticsearch/README.md | 7 +++---- plugins/outputs/event_hubs/README.md | 7 +++---- plugins/outputs/exec/README.md | 7 +++---- plugins/outputs/execd/README.md | 7 +++---- plugins/outputs/file/README.md | 7 +++---- plugins/outputs/graphite/README.md | 7 +++---- plugins/outputs/graylog/README.md | 7 +++---- plugins/outputs/groundwork/README.md | 7 +++---- plugins/outputs/health/README.md | 7 +++---- plugins/outputs/heartbeat/README.md | 7 +++---- plugins/outputs/http/README.md | 7 +++---- plugins/outputs/influxdb/README.md | 7 +++---- plugins/outputs/influxdb_v2/README.md | 7 +++---- plugins/outputs/inlong/README.md | 7 +++---- plugins/outputs/instrumental/README.md | 7 +++---- plugins/outputs/iotdb/README.md | 7 +++---- plugins/outputs/kafka/README.md | 7 +++---- plugins/outputs/kinesis/README.md | 7 +++---- plugins/outputs/librato/README.md | 7 +++---- plugins/outputs/logzio/README.md | 7 +++---- plugins/outputs/loki/README.md | 7 +++---- plugins/outputs/microsoft_fabric/README.md | 7 +++---- plugins/outputs/mongodb/README.md | 7 +++---- plugins/outputs/mqtt/README.md | 7 +++---- plugins/outputs/nats/README.md | 7 +++---- plugins/outputs/nebius_cloud_monitoring/README.md | 7 +++---- plugins/outputs/newrelic/README.md | 7 +++---- plugins/outputs/nsq/README.md | 7 +++---- plugins/outputs/opensearch/README.md | 7 +++---- plugins/outputs/opentelemetry/README.md | 7 +++---- plugins/outputs/opentsdb/README.md | 7 +++---- plugins/outputs/parquet/README.md | 7 +++---- plugins/outputs/postgresql/README.md | 7 +++---- plugins/outputs/prometheus_client/README.md | 7 +++---- plugins/outputs/quix/README.md | 7 +++---- plugins/outputs/redistimeseries/README.md | 7 +++---- plugins/outputs/remotefile/README.md | 7 +++---- plugins/outputs/riemann/README.md | 7 +++---- plugins/outputs/sensu/README.md | 7 +++---- plugins/outputs/signalfx/README.md | 7 +++---- plugins/outputs/socket_writer/README.md | 7 +++---- plugins/outputs/sql/README.md | 7 +++---- plugins/outputs/stackdriver/README.md | 7 +++---- plugins/outputs/stomp/README.md | 7 +++---- plugins/outputs/sumologic/README.md | 7 +++---- plugins/outputs/syslog/README.md | 7 +++---- plugins/outputs/timestream/README.md | 7 +++---- plugins/outputs/warp10/README.md | 7 +++---- plugins/outputs/wavefront/README.md | 7 +++---- plugins/outputs/websocket/README.md | 7 +++---- plugins/outputs/yandex_cloud_monitoring/README.md | 7 +++---- plugins/outputs/zabbix/README.md | 7 +++---- plugins/processors/aws_ec2/README.md | 7 +++---- plugins/processors/clone/README.md | 7 +++---- plugins/processors/converter/README.md | 7 +++---- plugins/processors/cumulative_sum/README.md | 7 +++---- plugins/processors/date/README.md | 7 +++---- plugins/processors/dedup/README.md | 7 +++---- plugins/processors/defaults/README.md | 7 +++---- plugins/processors/enum/README.md | 7 +++---- plugins/processors/execd/README.md | 7 +++---- plugins/processors/filepath/README.md | 7 +++---- plugins/processors/filter/README.md | 7 +++---- plugins/processors/ifname/README.md | 7 +++---- plugins/processors/lookup/README.md | 7 +++---- plugins/processors/noise/README.md | 7 +++---- plugins/processors/override/README.md | 7 +++---- plugins/processors/parser/README.md | 7 +++---- plugins/processors/pivot/README.md | 7 +++---- plugins/processors/port_name/README.md | 7 +++---- plugins/processors/printer/README.md | 7 +++---- plugins/processors/regex/README.md | 7 +++---- plugins/processors/rename/README.md | 7 +++---- plugins/processors/reverse_dns/README.md | 7 +++---- plugins/processors/round/README.md | 7 +++---- plugins/processors/s2geo/README.md | 7 +++---- plugins/processors/scale/README.md | 7 +++---- plugins/processors/snmp_lookup/README.md | 7 +++---- plugins/processors/split/README.md | 7 +++---- plugins/processors/starlark/README.md | 7 +++---- plugins/processors/strings/README.md | 7 +++---- plugins/processors/tag_limit/README.md | 7 +++---- plugins/processors/template/README.md | 7 +++---- plugins/processors/timestamp/README.md | 7 +++---- plugins/processors/topk/README.md | 7 +++---- plugins/processors/unpivot/README.md | 7 +++---- 355 files changed, 1065 insertions(+), 1420 deletions(-) diff --git a/docs/includes/plugin_config.md b/docs/includes/plugin_config.md index 85ec5d0ecdff4..57217205806aa 100644 --- a/docs/includes/plugin_config.md +++ b/docs/includes/plugin_config.md @@ -1,6 +1,5 @@ -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/basicstats/README.md b/plugins/aggregators/basicstats/README.md index e3b6683873466..8cabba564ad61 100644 --- a/plugins/aggregators/basicstats/README.md +++ b/plugins/aggregators/basicstats/README.md @@ -10,10 +10,9 @@ emits these statistical values every `period`. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/derivative/README.md b/plugins/aggregators/derivative/README.md index a7b917fd43c64..6487584f34e25 100644 --- a/plugins/aggregators/derivative/README.md +++ b/plugins/aggregators/derivative/README.md @@ -8,10 +8,9 @@ This plugin computes the derivative for all fields of the aggregated metrics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/final/README.md b/plugins/aggregators/final/README.md index e9e580b1b3743..b0645d47d014f 100644 --- a/plugins/aggregators/final/README.md +++ b/plugins/aggregators/final/README.md @@ -23,10 +23,9 @@ metrics collected at a higher frequency. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/histogram/README.md b/plugins/aggregators/histogram/README.md index f34c07d944bd7..86ddfc397157a 100644 --- a/plugins/aggregators/histogram/README.md +++ b/plugins/aggregators/histogram/README.md @@ -19,10 +19,9 @@ consecutive buckets in the distribution creating a [cumulative histogram][1]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/merge/README.md b/plugins/aggregators/merge/README.md index d42861137b0aa..249235685820b 100644 --- a/plugins/aggregators/merge/README.md +++ b/plugins/aggregators/merge/README.md @@ -13,10 +13,9 @@ measurement, tag set and timestamp. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/minmax/README.md b/plugins/aggregators/minmax/README.md index 7159a4c831f94..e2e6d3e49a942 100644 --- a/plugins/aggregators/minmax/README.md +++ b/plugins/aggregators/minmax/README.md @@ -10,10 +10,9 @@ and `_max` respectively. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/quantile/README.md b/plugins/aggregators/quantile/README.md index 22156900f3139..89be276d53821 100644 --- a/plugins/aggregators/quantile/README.md +++ b/plugins/aggregators/quantile/README.md @@ -10,10 +10,9 @@ algorithms are supported with varying accuracy and limitations. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/starlark/README.md b/plugins/aggregators/starlark/README.md index 1d3ab49d4450d..d5d8679d59306 100644 --- a/plugins/aggregators/starlark/README.md +++ b/plugins/aggregators/starlark/README.md @@ -36,10 +36,9 @@ More details on the syntax and available functions can be found in the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/aggregators/valuecounter/README.md b/plugins/aggregators/valuecounter/README.md index 4f4df068d5d27..d92de22cf178f 100644 --- a/plugins/aggregators/valuecounter/README.md +++ b/plugins/aggregators/valuecounter/README.md @@ -22,10 +22,9 @@ other categorical values in the defined `period`. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/activemq/README.md b/plugins/inputs/activemq/README.md index 65e28f7a652b8..21342918032b8 100644 --- a/plugins/inputs/activemq/README.md +++ b/plugins/inputs/activemq/README.md @@ -11,10 +11,9 @@ This plugin gathers queue, topics and subscribers metrics using the Console API ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/aerospike/README.md b/plugins/inputs/aerospike/README.md index caa3ce86df95f..96c41c8c06b75 100644 --- a/plugins/inputs/aerospike/README.md +++ b/plugins/inputs/aerospike/README.md @@ -30,10 +30,9 @@ in order. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/aliyuncms/README.md b/plugins/inputs/aliyuncms/README.md index e478a20b47e5b..85c915ce02670 100644 --- a/plugins/inputs/aliyuncms/README.md +++ b/plugins/inputs/aliyuncms/README.md @@ -31,10 +31,9 @@ to authenticate. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/amd_rocm_smi/README.md b/plugins/inputs/amd_rocm_smi/README.md index d1c3e4a3a853f..9efda1cbbc51c 100644 --- a/plugins/inputs/amd_rocm_smi/README.md +++ b/plugins/inputs/amd_rocm_smi/README.md @@ -16,10 +16,9 @@ etc from [AMD ROCm platform][amd_rocm] GPUs. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/amqp_consumer/README.md b/plugins/inputs/amqp_consumer/README.md index 965b3bee92a5a..ec71138d799e2 100644 --- a/plugins/inputs/amqp_consumer/README.md +++ b/plugins/inputs/amqp_consumer/README.md @@ -32,10 +32,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/apache/README.md b/plugins/inputs/apache/README.md index 480160e8860f9..44ae21f6e562f 100644 --- a/plugins/inputs/apache/README.md +++ b/plugins/inputs/apache/README.md @@ -18,10 +18,9 @@ the [module documentation][mod_status_module]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/apcupsd/README.md b/plugins/inputs/apcupsd/README.md index dbbe294519884..f404e8f1339af 100644 --- a/plugins/inputs/apcupsd/README.md +++ b/plugins/inputs/apcupsd/README.md @@ -12,10 +12,9 @@ accessible. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/aurora/README.md b/plugins/inputs/aurora/README.md index 737bf7b799a40..19bb6d72ca8a6 100644 --- a/plugins/inputs/aurora/README.md +++ b/plugins/inputs/aurora/README.md @@ -13,10 +13,9 @@ article. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/azure_monitor/README.md b/plugins/inputs/azure_monitor/README.md index 4bce8e5c281d0..f9581c9751ab0 100644 --- a/plugins/inputs/azure_monitor/README.md +++ b/plugins/inputs/azure_monitor/README.md @@ -52,10 +52,9 @@ subscription with resource type. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/azure_storage_queue/README.md b/plugins/inputs/azure_storage_queue/README.md index 1467b7321094a..95922c480dac1 100644 --- a/plugins/inputs/azure_storage_queue/README.md +++ b/plugins/inputs/azure_storage_queue/README.md @@ -11,10 +11,9 @@ service, storing a large numbers of messages. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/bcache/README.md b/plugins/inputs/bcache/README.md index fafca60ba2806..48fa545070b1b 100644 --- a/plugins/inputs/bcache/README.md +++ b/plugins/inputs/bcache/README.md @@ -11,10 +11,9 @@ from the `stats_total` directory and `dirty_data` file. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/beanstalkd/README.md b/plugins/inputs/beanstalkd/README.md index 43d5bbed5badb..ae6b7ccf424c4 100644 --- a/plugins/inputs/beanstalkd/README.md +++ b/plugins/inputs/beanstalkd/README.md @@ -12,10 +12,9 @@ server commands. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/beat/README.md b/plugins/inputs/beat/README.md index cd90c1663b124..c9c440a438bda 100644 --- a/plugins/inputs/beat/README.md +++ b/plugins/inputs/beat/README.md @@ -11,10 +11,9 @@ to work with Filebeat and Kafkabeat. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/bind/README.md b/plugins/inputs/bind/README.md index 2fee2b62db6e4..cf3150ab8c637 100644 --- a/plugins/inputs/bind/README.md +++ b/plugins/inputs/bind/README.md @@ -23,10 +23,9 @@ distros still do not enable support for JSON statistics in their BIND packages. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/bond/README.md b/plugins/inputs/bond/README.md index d9a015fd1e5ca..9bf40702d640e 100644 --- a/plugins/inputs/bond/README.md +++ b/plugins/inputs/bond/README.md @@ -9,10 +9,9 @@ slave interfaces using `/proc/net/bonding/*` files. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/burrow/README.md b/plugins/inputs/burrow/README.md index 4998ed3e7846f..4b3a9e92120c1 100644 --- a/plugins/inputs/burrow/README.md +++ b/plugins/inputs/burrow/README.md @@ -13,10 +13,9 @@ Burrow v1.x versions are supported. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ceph/README.md b/plugins/inputs/ceph/README.md index 2f4c06db50e49..66d0e8f7439c5 100644 --- a/plugins/inputs/ceph/README.md +++ b/plugins/inputs/ceph/README.md @@ -14,10 +14,9 @@ v13.x Mimic release where data is sent to a socket (see ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cgroup/README.md b/plugins/inputs/cgroup/README.md index f95d3bde3adc8..996b9604f062d 100644 --- a/plugins/inputs/cgroup/README.md +++ b/plugins/inputs/cgroup/README.md @@ -41,10 +41,9 @@ KEY1 ... VAL1\n ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/chrony/README.md b/plugins/inputs/chrony/README.md index dced3a5a2a401..410659c0b7f12 100644 --- a/plugins/inputs/chrony/README.md +++ b/plugins/inputs/chrony/README.md @@ -12,10 +12,9 @@ the meaning of the gathered fields please check the [chronyc manual][manual]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cisco_telemetry_mdt/README.md b/plugins/inputs/cisco_telemetry_mdt/README.md index de17b652bf15a..bd63d43decb1f 100644 --- a/plugins/inputs/cisco_telemetry_mdt/README.md +++ b/plugins/inputs/cisco_telemetry_mdt/README.md @@ -29,10 +29,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/clickhouse/README.md b/plugins/inputs/clickhouse/README.md index d5f74013cdb8f..08c89bc1016df 100644 --- a/plugins/inputs/clickhouse/README.md +++ b/plugins/inputs/clickhouse/README.md @@ -12,10 +12,9 @@ have permissions to query those tables. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cloud_pubsub/README.md b/plugins/inputs/cloud_pubsub/README.md index b521aa89a12cd..bf905c1b237a3 100644 --- a/plugins/inputs/cloud_pubsub/README.md +++ b/plugins/inputs/cloud_pubsub/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cloud_pubsub_push/README.md b/plugins/inputs/cloud_pubsub_push/README.md index 23347b3d3e0ae..78d677fbe080f 100644 --- a/plugins/inputs/cloud_pubsub_push/README.md +++ b/plugins/inputs/cloud_pubsub_push/README.md @@ -32,10 +32,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cloudwatch/README.md b/plugins/inputs/cloudwatch/README.md index 7873a068b9087..daabf2561235f 100644 --- a/plugins/inputs/cloudwatch/README.md +++ b/plugins/inputs/cloudwatch/README.md @@ -23,10 +23,9 @@ API endpoint. In the following order the plugin will attempt to authenticate. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cloudwatch_metric_streams/README.md b/plugins/inputs/cloudwatch_metric_streams/README.md index 7bb02fa0e764e..14c8d1083ae66 100644 --- a/plugins/inputs/cloudwatch_metric_streams/README.md +++ b/plugins/inputs/cloudwatch_metric_streams/README.md @@ -29,10 +29,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/conntrack/README.md b/plugins/inputs/conntrack/README.md index d314c46b0761d..66fa444fa2b95 100644 --- a/plugins/inputs/conntrack/README.md +++ b/plugins/inputs/conntrack/README.md @@ -23,10 +23,9 @@ is ignored. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/consul/README.md b/plugins/inputs/consul/README.md index c96fdae548f1d..82058bd096f27 100644 --- a/plugins/inputs/consul/README.md +++ b/plugins/inputs/consul/README.md @@ -15,10 +15,9 @@ the StatsD protocol if needed. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/consul_agent/README.md b/plugins/inputs/consul_agent/README.md index c17073350e357..068e58ae8ff73 100644 --- a/plugins/inputs/consul_agent/README.md +++ b/plugins/inputs/consul_agent/README.md @@ -11,10 +11,9 @@ present in every node and connect to the agent locally. Tested on Consul v1.10. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/couchbase/README.md b/plugins/inputs/couchbase/README.md index da321b2cdd677..e01d9db8f5e47 100644 --- a/plugins/inputs/couchbase/README.md +++ b/plugins/inputs/couchbase/README.md @@ -12,10 +12,9 @@ each bucket, for a given couchbase server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/couchdb/README.md b/plugins/inputs/couchdb/README.md index 0e853876a4604..ca61099cdc985 100644 --- a/plugins/inputs/couchdb/README.md +++ b/plugins/inputs/couchdb/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics from [Apache CouchDB][couchdb] instances using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/cpu/README.md b/plugins/inputs/cpu/README.md index f44fa1f1f885f..52b05273e620e 100644 --- a/plugins/inputs/cpu/README.md +++ b/plugins/inputs/cpu/README.md @@ -8,10 +8,9 @@ This plugin gathers metrics about the system's CPUs. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/csgo/README.md b/plugins/inputs/csgo/README.md index d974a203da1d0..473df679e7b38 100644 --- a/plugins/inputs/csgo/README.md +++ b/plugins/inputs/csgo/README.md @@ -11,10 +11,9 @@ servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ctrlx_datalayer/README.md b/plugins/inputs/ctrlx_datalayer/README.md index 173181a9cfb58..8d505c3e799d1 100644 --- a/plugins/inputs/ctrlx_datalayer/README.md +++ b/plugins/inputs/ctrlx_datalayer/README.md @@ -14,10 +14,9 @@ automation, building automation, robotics, IoT Gateways or as classical PLC. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/dcos/README.md b/plugins/inputs/dcos/README.md index 1d81149187d79..558164cd2f9b9 100644 --- a/plugins/inputs/dcos/README.md +++ b/plugins/inputs/dcos/README.md @@ -17,10 +17,9 @@ This input plugin gathers metrics from a [Distributed Cloud OS][dcos] cluster's ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/directory_monitor/README.md b/plugins/inputs/directory_monitor/README.md index 768efadb51ecf..fbc4db547c82a 100644 --- a/plugins/inputs/directory_monitor/README.md +++ b/plugins/inputs/directory_monitor/README.md @@ -17,10 +17,9 @@ picked up yet. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/disk/README.md b/plugins/inputs/disk/README.md index 37f260eae63ab..f18e708dbff0d 100644 --- a/plugins/inputs/disk/README.md +++ b/plugins/inputs/disk/README.md @@ -15,10 +15,9 @@ This plugin gathers metrics about disk usage. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/diskio/README.md b/plugins/inputs/diskio/README.md index 43280b867dae5..9136c32c92319 100644 --- a/plugins/inputs/diskio/README.md +++ b/plugins/inputs/diskio/README.md @@ -8,10 +8,9 @@ This plugin gathers metrics about disk traffic and timing. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/disque/README.md b/plugins/inputs/disque/README.md index c33e28d27259f..a6d5e47f0c78b 100644 --- a/plugins/inputs/disque/README.md +++ b/plugins/inputs/disque/README.md @@ -11,10 +11,9 @@ distributed, in-memory, message broker. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/dmcache/README.md b/plugins/inputs/dmcache/README.md index 22de922a91365..2dbcc3f8058c5 100644 --- a/plugins/inputs/dmcache/README.md +++ b/plugins/inputs/dmcache/README.md @@ -16,10 +16,9 @@ This plugin provide a native collection for dmsetup based statistics for ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/dns_query/README.md b/plugins/inputs/dns_query/README.md index a99ebf9a8e1a2..4711577c85b35 100644 --- a/plugins/inputs/dns_query/README.md +++ b/plugins/inputs/dns_query/README.md @@ -9,10 +9,9 @@ result codes. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/docker/README.md b/plugins/inputs/docker/README.md index 50ef32d026668..eac633b06bd63 100644 --- a/plugins/inputs/docker/README.md +++ b/plugins/inputs/docker/README.md @@ -15,10 +15,9 @@ Docker containers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/docker_log/README.md b/plugins/inputs/docker_log/README.md index 75c7de673a083..fd1078b45278a 100644 --- a/plugins/inputs/docker_log/README.md +++ b/plugins/inputs/docker_log/README.md @@ -16,10 +16,9 @@ Docker containers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/dovecot/README.md b/plugins/inputs/dovecot/README.md index d94e77150903e..4783ed544fbac 100644 --- a/plugins/inputs/dovecot/README.md +++ b/plugins/inputs/dovecot/README.md @@ -21,10 +21,9 @@ plugin on Dovecot up to and including version v2.3.x. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/dpdk/README.md b/plugins/inputs/dpdk/README.md index bff2c52c2ca3c..df093aeec7fbb 100644 --- a/plugins/inputs/dpdk/README.md +++ b/plugins/inputs/dpdk/README.md @@ -28,10 +28,9 @@ to use DPDK in your application. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ecs/README.md b/plugins/inputs/ecs/README.md index 85b2eb65b1b92..5ad3e26cbf48c 100644 --- a/plugins/inputs/ecs/README.md +++ b/plugins/inputs/ecs/README.md @@ -22,10 +22,9 @@ present in the metadata/stats endpoints. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/elasticsearch/README.md b/plugins/inputs/elasticsearch/README.md index f4d55b6304ec8..545bbf84fad40 100644 --- a/plugins/inputs/elasticsearch/README.md +++ b/plugins/inputs/elasticsearch/README.md @@ -24,10 +24,9 @@ Additionally, the plugin is able to query [cluster][cluster_stats], ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/elasticsearch_query/README.md b/plugins/inputs/elasticsearch_query/README.md index f2370661e6b4e..def1dcf0ea83a 100644 --- a/plugins/inputs/elasticsearch_query/README.md +++ b/plugins/inputs/elasticsearch_query/README.md @@ -18,10 +18,9 @@ particular field. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ethtool/README.md b/plugins/inputs/ethtool/README.md index f01fec0f98206..be5bbd8a64fd4 100644 --- a/plugins/inputs/ethtool/README.md +++ b/plugins/inputs/ethtool/README.md @@ -9,10 +9,9 @@ strongly depends on the network device and driver. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/eventhub_consumer/README.md b/plugins/inputs/eventhub_consumer/README.md index 24fef285664c6..e193df3035bf0 100644 --- a/plugins/inputs/eventhub_consumer/README.md +++ b/plugins/inputs/eventhub_consumer/README.md @@ -34,10 +34,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/example/README.md b/plugins/inputs/example/README.md index eeba8fcc86b1d..fb5d3bf3ba2cc 100644 --- a/plugins/inputs/example/README.md +++ b/plugins/inputs/example/README.md @@ -14,10 +14,9 @@ Telegraf minimum version: Telegraf x.x Plugin minimum tested version: x.x ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/exec/README.md b/plugins/inputs/exec/README.md index a6bc6ab6c07fd..7839415875bd7 100644 --- a/plugins/inputs/exec/README.md +++ b/plugins/inputs/exec/README.md @@ -12,10 +12,9 @@ This plugin can be used to poll for custom metrics from any source. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/execd/README.md b/plugins/inputs/execd/README.md index 6e456defbfe56..0a166252319cb 100644 --- a/plugins/inputs/execd/README.md +++ b/plugins/inputs/execd/README.md @@ -31,10 +31,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/fail2ban/README.md b/plugins/inputs/fail2ban/README.md index 3a4abeb348fcd..0c064b7f3baa4 100644 --- a/plugins/inputs/fail2ban/README.md +++ b/plugins/inputs/fail2ban/README.md @@ -16,10 +16,9 @@ This plugin gathers the count of failed and banned IP addresses using ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/fibaro/README.md b/plugins/inputs/fibaro/README.md index d866098aae398..4dee81416fa08 100644 --- a/plugins/inputs/fibaro/README.md +++ b/plugins/inputs/fibaro/README.md @@ -13,10 +13,9 @@ are supported. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/file/README.md b/plugins/inputs/file/README.md index 45be2b5cfa41e..0123161c2608b 100644 --- a/plugins/inputs/file/README.md +++ b/plugins/inputs/file/README.md @@ -17,10 +17,9 @@ one of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/filecount/README.md b/plugins/inputs/filecount/README.md index a2afd77f5de96..cf26349e1df9e 100644 --- a/plugins/inputs/filecount/README.md +++ b/plugins/inputs/filecount/README.md @@ -8,10 +8,9 @@ This plugin reports the number and total size of files in specified directories. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/filestat/README.md b/plugins/inputs/filestat/README.md index 03629b21b6a3b..dfd9abe363ee7 100644 --- a/plugins/inputs/filestat/README.md +++ b/plugins/inputs/filestat/README.md @@ -9,10 +9,9 @@ statistics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/fireboard/README.md b/plugins/inputs/fireboard/README.md index 13d75036c8369..3ded2ba592985 100644 --- a/plugins/inputs/fireboard/README.md +++ b/plugins/inputs/fireboard/README.md @@ -16,10 +16,9 @@ thermometers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/firehose/README.md b/plugins/inputs/firehose/README.md index 6c1647cd2c5d3..2f51da919cb26 100644 --- a/plugins/inputs/firehose/README.md +++ b/plugins/inputs/firehose/README.md @@ -26,10 +26,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/fluentd/README.md b/plugins/inputs/fluentd/README.md index b96f1f0996af8..2feaa3082200b 100644 --- a/plugins/inputs/fluentd/README.md +++ b/plugins/inputs/fluentd/README.md @@ -21,10 +21,9 @@ by the `/api/plugin.json` resource, `/api/config.json` is not covered. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/fritzbox/README.md b/plugins/inputs/fritzbox/README.md index 64e06e7af2934..c8e5c5fa7bb17 100644 --- a/plugins/inputs/fritzbox/README.md +++ b/plugins/inputs/fritzbox/README.md @@ -12,10 +12,9 @@ repeaters, etc) using the device's [TR-064][tr064] interface. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/github/README.md b/plugins/inputs/github/README.md index a1bc7d8e35a34..ff2c7688bbfbe 100644 --- a/plugins/inputs/github/README.md +++ b/plugins/inputs/github/README.md @@ -16,10 +16,9 @@ This plugin gathers information from projects and repositories hosted on ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/gnmi/README.md b/plugins/inputs/gnmi/README.md index bd01df2ce721c..f80d1b9133664 100644 --- a/plugins/inputs/gnmi/README.md +++ b/plugins/inputs/gnmi/README.md @@ -27,10 +27,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/google_cloud_storage/README.md b/plugins/inputs/google_cloud_storage/README.md index 73996566f9979..4ba47c6633357 100644 --- a/plugins/inputs/google_cloud_storage/README.md +++ b/plugins/inputs/google_cloud_storage/README.md @@ -12,10 +12,9 @@ buckets in any of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/graylog/README.md b/plugins/inputs/graylog/README.md index 987e06ff4ff24..e4e8fedf6c098 100644 --- a/plugins/inputs/graylog/README.md +++ b/plugins/inputs/graylog/README.md @@ -21,10 +21,9 @@ list of available endpoints. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/haproxy/README.md b/plugins/inputs/haproxy/README.md index 22acf44cdb8d4..9ec46ee0078d1 100644 --- a/plugins/inputs/haproxy/README.md +++ b/plugins/inputs/haproxy/README.md @@ -11,10 +11,9 @@ the HTTP protocol. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/hddtemp/README.md b/plugins/inputs/hddtemp/README.md index a528a8aa9f3c9..18b00fc72ad36 100644 --- a/plugins/inputs/hddtemp/README.md +++ b/plugins/inputs/hddtemp/README.md @@ -24,10 +24,9 @@ anymore, the binary might not be available (e.g. in Ubuntu 22.04 or later). ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/http/README.md b/plugins/inputs/http/README.md index db6bbd20c3727..150f9612f22d3 100644 --- a/plugins/inputs/http/README.md +++ b/plugins/inputs/http/README.md @@ -11,10 +11,9 @@ one of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/http_listener_v2/README.md b/plugins/inputs/http_listener_v2/README.md index 8bf744fbc7e20..62cdbd654b0e8 100644 --- a/plugins/inputs/http_listener_v2/README.md +++ b/plugins/inputs/http_listener_v2/README.md @@ -30,10 +30,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/http_response/README.md b/plugins/inputs/http_response/README.md index 6a5eb8843ba98..122df4fe527e6 100644 --- a/plugins/inputs/http_response/README.md +++ b/plugins/inputs/http_response/README.md @@ -9,10 +9,9 @@ response statistics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/huebridge/README.md b/plugins/inputs/huebridge/README.md index d1a3926bd53e0..9d80a12d088c0 100644 --- a/plugins/inputs/huebridge/README.md +++ b/plugins/inputs/huebridge/README.md @@ -12,10 +12,9 @@ This plugin gathers status from [Hue Bridge][hue] devices using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/hugepages/README.md b/plugins/inputs/hugepages/README.md index ecc84162e5f59..c252dfd6f1dc0 100644 --- a/plugins/inputs/hugepages/README.md +++ b/plugins/inputs/hugepages/README.md @@ -13,10 +13,9 @@ large amounts of memory. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/icinga2/README.md b/plugins/inputs/icinga2/README.md index d2e8aa053ce31..920a4623ef602 100644 --- a/plugins/inputs/icinga2/README.md +++ b/plugins/inputs/icinga2/README.md @@ -11,10 +11,9 @@ This plugin gather services and hosts status information using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/infiniband/README.md b/plugins/inputs/infiniband/README.md index f305f6a076893..c679fb6daf105 100644 --- a/plugins/inputs/infiniband/README.md +++ b/plugins/inputs/infiniband/README.md @@ -12,10 +12,9 @@ and RDMA counters can be found in ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/influxdb/README.md b/plugins/inputs/influxdb/README.md index 933fae2737bc3..fcb6523643aa6 100644 --- a/plugins/inputs/influxdb/README.md +++ b/plugins/inputs/influxdb/README.md @@ -27,10 +27,9 @@ InfluxDB-formatted endpoints. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/influxdb_listener/README.md b/plugins/inputs/influxdb_listener/README.md index 71a7d45ad2d37..79382277abd15 100644 --- a/plugins/inputs/influxdb_listener/README.md +++ b/plugins/inputs/influxdb_listener/README.md @@ -39,10 +39,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/influxdb_v2_listener/README.md b/plugins/inputs/influxdb_v2_listener/README.md index 63c6a52d164a4..3493f5710ce0d 100644 --- a/plugins/inputs/influxdb_v2_listener/README.md +++ b/plugins/inputs/influxdb_v2_listener/README.md @@ -27,10 +27,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_baseband/README.md b/plugins/inputs/intel_baseband/README.md index 54248692219fb..4f5e11c4ba292 100644 --- a/plugins/inputs/intel_baseband/README.md +++ b/plugins/inputs/intel_baseband/README.md @@ -42,10 +42,9 @@ installation guides: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_dlb/README.md b/plugins/inputs/intel_dlb/README.md index 7c8d5c6933e7e..b2a03243d4364 100644 --- a/plugins/inputs/intel_dlb/README.md +++ b/plugins/inputs/intel_dlb/README.md @@ -27,10 +27,9 @@ Intel DLB as eventdev devices accessed via bifurcated driver ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_pmt/README.md b/plugins/inputs/intel_pmt/README.md index adf851296aaa0..010d4d59e019c 100644 --- a/plugins/inputs/intel_pmt/README.md +++ b/plugins/inputs/intel_pmt/README.md @@ -47,10 +47,9 @@ to transformation formulas, and then reports the collected values. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_pmu/README.md b/plugins/inputs/intel_pmu/README.md index 9a51754e05639..b2baf7ec9f15d 100644 --- a/plugins/inputs/intel_pmu/README.md +++ b/plugins/inputs/intel_pmu/README.md @@ -38,10 +38,9 @@ in a safe place on your system. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_powerstat/README.md b/plugins/inputs/intel_powerstat/README.md index 6d03d16179acd..69d51941a45d2 100644 --- a/plugins/inputs/intel_powerstat/README.md +++ b/plugins/inputs/intel_powerstat/README.md @@ -203,10 +203,9 @@ The following processor properties are required by the plugin: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/intel_rdt/README.md b/plugins/inputs/intel_rdt/README.md index 0bdaf29ba2732..f3ba5b6eae7c4 100644 --- a/plugins/inputs/intel_rdt/README.md +++ b/plugins/inputs/intel_rdt/README.md @@ -56,10 +56,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/internal/README.md b/plugins/inputs/internal/README.md index ef177107514ce..b087cf8a9a30d 100644 --- a/plugins/inputs/internal/README.md +++ b/plugins/inputs/internal/README.md @@ -11,10 +11,9 @@ This plugin collects metrics about the telegraf agent and its plugins. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/internet_speed/README.md b/plugins/inputs/internet_speed/README.md index ae5ac75357841..4808fc5345303 100644 --- a/plugins/inputs/internet_speed/README.md +++ b/plugins/inputs/internet_speed/README.md @@ -11,10 +11,9 @@ download/upload speed, latency etc using the [speedtest.net service][speedtest]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/interrupts/README.md b/plugins/inputs/interrupts/README.md index 571572012a8f3..3f463ddd6ca05 100644 --- a/plugins/inputs/interrupts/README.md +++ b/plugins/inputs/interrupts/README.md @@ -9,10 +9,9 @@ soft-interrupts (`/proc/softirqs`). ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ipmi_sensor/README.md b/plugins/inputs/ipmi_sensor/README.md index cf0eb27b3825c..c0b103975365b 100644 --- a/plugins/inputs/ipmi_sensor/README.md +++ b/plugins/inputs/ipmi_sensor/README.md @@ -17,10 +17,9 @@ This plugin gathers metrics from the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ipset/README.md b/plugins/inputs/ipset/README.md index a9eb535bbb1f7..1cef180c10317 100644 --- a/plugins/inputs/ipset/README.md +++ b/plugins/inputs/ipset/README.md @@ -14,10 +14,9 @@ using the `ipset` command line tool. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/iptables/README.md b/plugins/inputs/iptables/README.md index 44c596707a0ba..a071b53f7981f 100644 --- a/plugins/inputs/iptables/README.md +++ b/plugins/inputs/iptables/README.md @@ -23,10 +23,9 @@ may vary when rules are inserted/deleted at start-up or by automatic tools ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ipvs/README.md b/plugins/inputs/ipvs/README.md index 67643d1880302..deff9b000ee01 100644 --- a/plugins/inputs/ipvs/README.md +++ b/plugins/inputs/ipvs/README.md @@ -15,10 +15,9 @@ using the netlink socket interface of the Linux kernel. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/jenkins/README.md b/plugins/inputs/jenkins/README.md index 0571e64d8fb0f..0f110cb354c53 100644 --- a/plugins/inputs/jenkins/README.md +++ b/plugins/inputs/jenkins/README.md @@ -12,10 +12,9 @@ require a plugin on the server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/jolokia2_agent/README.md b/plugins/inputs/jolokia2_agent/README.md index 591baeb485dee..a054ba67c7c1f 100644 --- a/plugins/inputs/jolokia2_agent/README.md +++ b/plugins/inputs/jolokia2_agent/README.md @@ -11,10 +11,9 @@ REST endpoints. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/jolokia2_proxy/README.md b/plugins/inputs/jolokia2_proxy/README.md index a886771c4baa0..d78e9ece0df50 100644 --- a/plugins/inputs/jolokia2_proxy/README.md +++ b/plugins/inputs/jolokia2_proxy/README.md @@ -11,10 +11,9 @@ This plugin reads JMX metrics from one or more _targets_ by interacting with a ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/jti_openconfig_telemetry/README.md b/plugins/inputs/jti_openconfig_telemetry/README.md index 7c52cdb903ac9..432bd3a24a345 100644 --- a/plugins/inputs/jti_openconfig_telemetry/README.md +++ b/plugins/inputs/jti_openconfig_telemetry/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kafka_consumer/README.md b/plugins/inputs/kafka_consumer/README.md index e6f4888fd12e3..95080da64238f 100644 --- a/plugins/inputs/kafka_consumer/README.md +++ b/plugins/inputs/kafka_consumer/README.md @@ -26,10 +26,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kapacitor/README.md b/plugins/inputs/kapacitor/README.md index 0328312e1fe8b..c50e12813512b 100644 --- a/plugins/inputs/kapacitor/README.md +++ b/plugins/inputs/kapacitor/README.md @@ -11,10 +11,9 @@ This plugin collects metrics from the configured ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kernel/README.md b/plugins/inputs/kernel/README.md index f0f77c581f9d9..fc4690a5a756d 100644 --- a/plugins/inputs/kernel/README.md +++ b/plugins/inputs/kernel/README.md @@ -15,10 +15,9 @@ others, the [available entropy][entropy], [Kernel Samepage Merging][ksm] and ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kernel_vmstat/README.md b/plugins/inputs/kernel_vmstat/README.md index e75ed4fa182f1..19b82153fe308 100644 --- a/plugins/inputs/kernel_vmstat/README.md +++ b/plugins/inputs/kernel_vmstat/README.md @@ -15,10 +15,9 @@ description about the fields see the [vmstat man page][man_vmstat]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kibana/README.md b/plugins/inputs/kibana/README.md index a333daf87c59e..831037837ecb1 100644 --- a/plugins/inputs/kibana/README.md +++ b/plugins/inputs/kibana/README.md @@ -14,10 +14,9 @@ instances via the server's API. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kinesis_consumer/README.md b/plugins/inputs/kinesis_consumer/README.md index 8a6ef70d4fd18..e58c4ba93d99d 100644 --- a/plugins/inputs/kinesis_consumer/README.md +++ b/plugins/inputs/kinesis_consumer/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/knx_listener/README.md b/plugins/inputs/knx_listener/README.md index 2c56b86a758dd..51c9099f4f402 100644 --- a/plugins/inputs/knx_listener/README.md +++ b/plugins/inputs/knx_listener/README.md @@ -24,10 +24,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kube_inventory/README.md b/plugins/inputs/kube_inventory/README.md index 9f3f5e2acb17c..952c68da9a5c0 100644 --- a/plugins/inputs/kube_inventory/README.md +++ b/plugins/inputs/kube_inventory/README.md @@ -22,10 +22,9 @@ ingress, nodes, persistent volumes and many more. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/kubernetes/README.md b/plugins/inputs/kubernetes/README.md index 123a5e70e585b..e6e32eab1a518 100644 --- a/plugins/inputs/kubernetes/README.md +++ b/plugins/inputs/kubernetes/README.md @@ -23,10 +23,9 @@ You should configure this plugin to talk to its locally running kubelet. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/lanz/README.md b/plugins/inputs/lanz/README.md index d4b488e29176d..6bb88543f45bf 100644 --- a/plugins/inputs/lanz/README.md +++ b/plugins/inputs/lanz/README.md @@ -28,10 +28,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ldap/README.md b/plugins/inputs/ldap/README.md index 942cee19d41df..31704c95cd3b3 100644 --- a/plugins/inputs/ldap/README.md +++ b/plugins/inputs/ldap/README.md @@ -13,10 +13,9 @@ servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/leofs/README.md b/plugins/inputs/leofs/README.md index abc21510da54e..2415afe9bdef2 100644 --- a/plugins/inputs/leofs/README.md +++ b/plugins/inputs/leofs/README.md @@ -13,10 +13,9 @@ _LeoGateway_, _LeoManager_, and _LeoStorage_ via SNMP. Check the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/libvirt/README.md b/plugins/inputs/libvirt/README.md index 35eb274eb10b8..692460417749b 100644 --- a/plugins/inputs/libvirt/README.md +++ b/plugins/inputs/libvirt/README.md @@ -24,10 +24,9 @@ For proper operation of the plugin, it is required that the host system has: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/linux_cpu/README.md b/plugins/inputs/linux_cpu/README.md index 325c37287ac9c..b750c2ff17005 100644 --- a/plugins/inputs/linux_cpu/README.md +++ b/plugins/inputs/linux_cpu/README.md @@ -10,10 +10,9 @@ This plugin gathers CPU metrics exposed on [Linux][kernel] systems. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/linux_sysctl_fs/README.md b/plugins/inputs/linux_sysctl_fs/README.md index 199d12b8b9069..237faeab95891 100644 --- a/plugins/inputs/linux_sysctl_fs/README.md +++ b/plugins/inputs/linux_sysctl_fs/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics by reading the [system filesystem][sysfs] files on ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/logql/README.md b/plugins/inputs/logql/README.md index 866d8c0ea86e2..5d81b94158a10 100644 --- a/plugins/inputs/logql/README.md +++ b/plugins/inputs/logql/README.md @@ -13,10 +13,9 @@ This plugin gathers metrics from a [Loki][loki] endpoint using ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/logstash/README.md b/plugins/inputs/logstash/README.md index 79c3e841ab431..3f32974b98e1a 100644 --- a/plugins/inputs/logstash/README.md +++ b/plugins/inputs/logstash/README.md @@ -15,10 +15,9 @@ This plugin gathers metrics from a [Logstash][logstash] endpoint using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/lustre2/README.md b/plugins/inputs/lustre2/README.md index 04b419beffe7c..6b919676fcfc9 100644 --- a/plugins/inputs/lustre2/README.md +++ b/plugins/inputs/lustre2/README.md @@ -16,10 +16,9 @@ entries in the `proc` filesystem. Reference the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/lvm/README.md b/plugins/inputs/lvm/README.md index 6066b3ec0073b..09ce5b342cd82 100644 --- a/plugins/inputs/lvm/README.md +++ b/plugins/inputs/lvm/README.md @@ -12,10 +12,9 @@ logical volumes from the Logical Volume Management (LVM) of the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mailchimp/README.md b/plugins/inputs/mailchimp/README.md index dd72855858f24..c445ed84f74ee 100644 --- a/plugins/inputs/mailchimp/README.md +++ b/plugins/inputs/mailchimp/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics from the [Mailchimp][mailchimp] service using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/marklogic/README.md b/plugins/inputs/marklogic/README.md index 5a60e49929c92..ad378373ff38b 100644 --- a/plugins/inputs/marklogic/README.md +++ b/plugins/inputs/marklogic/README.md @@ -11,10 +11,9 @@ hosts. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mavlink/README.md b/plugins/inputs/mavlink/README.md index 98ed9a6dc06db..c3841290fa604 100644 --- a/plugins/inputs/mavlink/README.md +++ b/plugins/inputs/mavlink/README.md @@ -26,10 +26,9 @@ messages available. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mcrouter/README.md b/plugins/inputs/mcrouter/README.md index 6e7ed880c3563..5ed11c51dd9ee 100644 --- a/plugins/inputs/mcrouter/README.md +++ b/plugins/inputs/mcrouter/README.md @@ -13,10 +13,9 @@ protocol router, developed and maintained by Facebook, for scaling ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mdstat/README.md b/plugins/inputs/mdstat/README.md index 16b65737f3f5a..42a7c6fbfb081 100644 --- a/plugins/inputs/mdstat/README.md +++ b/plugins/inputs/mdstat/README.md @@ -15,10 +15,9 @@ details on the fields check the [mdstat wiki][mdstat_wiki]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mem/README.md b/plugins/inputs/mem/README.md index aeb3f56570f11..4ad97cdabf373 100644 --- a/plugins/inputs/mem/README.md +++ b/plugins/inputs/mem/README.md @@ -14,10 +14,9 @@ This plugin collects metrics about the system memory. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/memcached/README.md b/plugins/inputs/memcached/README.md index 37aca0aab6ac5..7a17de09b2578 100644 --- a/plugins/inputs/memcached/README.md +++ b/plugins/inputs/memcached/README.md @@ -10,10 +10,9 @@ This plugin gathers statistics data from [Memcached][memcached] instances. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mesos/README.md b/plugins/inputs/mesos/README.md index ebcb4482c198e..7923549e600fb 100644 --- a/plugins/inputs/mesos/README.md +++ b/plugins/inputs/mesos/README.md @@ -12,10 +12,9 @@ information, please check the [Mesos Observability Metrics][monitoring] page. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/minecraft/README.md b/plugins/inputs/minecraft/README.md index 19ff28f4798fc..ca5e7f6c6ab0b 100644 --- a/plugins/inputs/minecraft/README.md +++ b/plugins/inputs/minecraft/README.md @@ -16,10 +16,9 @@ the RCON protocol. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mock/README.md b/plugins/inputs/mock/README.md index 8208efd4d6d55..e51bb1fa9c13f 100644 --- a/plugins/inputs/mock/README.md +++ b/plugins/inputs/mock/README.md @@ -11,10 +11,9 @@ required. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/modbus/README.md b/plugins/inputs/modbus/README.md index b6eb0a9d71de3..3552a43f777bf 100644 --- a/plugins/inputs/modbus/README.md +++ b/plugins/inputs/modbus/README.md @@ -12,10 +12,9 @@ or serial interfaces with Modbus RTU or Modbus ASCII. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mongodb/README.md b/plugins/inputs/mongodb/README.md index 85a8a5ae537b5..703fa7fa9ef83 100644 --- a/plugins/inputs/mongodb/README.md +++ b/plugins/inputs/mongodb/README.md @@ -16,10 +16,9 @@ running database commands. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/monit/README.md b/plugins/inputs/monit/README.md index 14fdfcd18ed0a..c2bc21371ad52 100644 --- a/plugins/inputs/monit/README.md +++ b/plugins/inputs/monit/README.md @@ -17,10 +17,9 @@ and watched over by [Monit][monit]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mqtt_consumer/README.md b/plugins/inputs/mqtt_consumer/README.md index 7dfd992fccdf5..eae47f2a2432c 100644 --- a/plugins/inputs/mqtt_consumer/README.md +++ b/plugins/inputs/mqtt_consumer/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/multifile/README.md b/plugins/inputs/multifile/README.md index b811351ce2f06..bab1a9ec04a8a 100644 --- a/plugins/inputs/multifile/README.md +++ b/plugins/inputs/multifile/README.md @@ -16,10 +16,9 @@ metrics from the `/sys` or `/proc` filesystems. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/mysql/README.md b/plugins/inputs/mysql/README.md index 0d6594b8544a4..27f161ed7d8f9 100644 --- a/plugins/inputs/mysql/README.md +++ b/plugins/inputs/mysql/README.md @@ -15,10 +15,9 @@ This plugin gathers statistics from [MySQL][mysql] server instances. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nats/README.md b/plugins/inputs/nats/README.md index f8110196766aa..5edf4ba4c4a0a 100644 --- a/plugins/inputs/nats/README.md +++ b/plugins/inputs/nats/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics of a [NATS][nats] server instance using its ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nats_consumer/README.md b/plugins/inputs/nats_consumer/README.md index 862b8b8ec6d22..bc6252c855667 100644 --- a/plugins/inputs/nats_consumer/README.md +++ b/plugins/inputs/nats_consumer/README.md @@ -31,10 +31,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/neoom_beaam/README.md b/plugins/inputs/neoom_beaam/README.md index c7ff4ea72a0e8..1131f93f8dca7 100644 --- a/plugins/inputs/neoom_beaam/README.md +++ b/plugins/inputs/neoom_beaam/README.md @@ -15,10 +15,9 @@ token. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/neptune_apex/README.md b/plugins/inputs/neptune_apex/README.md index d715a71485d02..d606657a3b3ab 100644 --- a/plugins/inputs/neptune_apex/README.md +++ b/plugins/inputs/neptune_apex/README.md @@ -12,10 +12,9 @@ probes. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/net/README.md b/plugins/inputs/net/README.md index bb9ad0528dd02..a35888cf49174 100644 --- a/plugins/inputs/net/README.md +++ b/plugins/inputs/net/README.md @@ -8,10 +8,9 @@ This plugin gathers metrics about network interface and protocol usage. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/net_response/README.md b/plugins/inputs/net_response/README.md index 9f404e3e28435..631fca2c8353b 100644 --- a/plugins/inputs/net_response/README.md +++ b/plugins/inputs/net_response/README.md @@ -9,10 +9,9 @@ response time and optionally verifies text in the response. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/netflow/README.md b/plugins/inputs/netflow/README.md index 82d7b16bd6ce7..6d3f217e022d0 100644 --- a/plugins/inputs/netflow/README.md +++ b/plugins/inputs/netflow/README.md @@ -32,10 +32,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/netstat/README.md b/plugins/inputs/netstat/README.md index f27fd81ead53e..9baa53401caf9 100644 --- a/plugins/inputs/netstat/README.md +++ b/plugins/inputs/netstat/README.md @@ -9,10 +9,9 @@ counts. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nfsclient/README.md b/plugins/inputs/nfsclient/README.md index ee02be8e73b38..432d3f55fd484 100644 --- a/plugins/inputs/nfsclient/README.md +++ b/plugins/inputs/nfsclient/README.md @@ -20,10 +20,9 @@ enabled. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nftables/README.md b/plugins/inputs/nftables/README.md index 4163aae2510d5..c4c9563beaedc 100644 --- a/plugins/inputs/nftables/README.md +++ b/plugins/inputs/nftables/README.md @@ -15,10 +15,9 @@ Linux's [nftables][nftables] firewall. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx/README.md b/plugins/inputs/nginx/README.md index f10bc98d8cb89..7c4bf8663a873 100644 --- a/plugins/inputs/nginx/README.md +++ b/plugins/inputs/nginx/README.md @@ -13,10 +13,9 @@ between Nginx (F/OSS) and Nginx Plus, see the Nginx [documentation][diff_doc]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx_plus/README.md b/plugins/inputs/nginx_plus/README.md index df1b2b5f1750c..3c3203816d339 100644 --- a/plugins/inputs/nginx_plus/README.md +++ b/plugins/inputs/nginx_plus/README.md @@ -19,10 +19,9 @@ the Nginx [documentation][diff_doc]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx_plus_api/README.md b/plugins/inputs/nginx_plus_api/README.md index 0e514e0189582..fb6d5f9bb12bf 100644 --- a/plugins/inputs/nginx_plus_api/README.md +++ b/plugins/inputs/nginx_plus_api/README.md @@ -19,10 +19,9 @@ the Nginx [documentation][diff_doc]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx_sts/README.md b/plugins/inputs/nginx_sts/README.md index 38b35a62405dd..82ba1d59ccc72 100644 --- a/plugins/inputs/nginx_sts/README.md +++ b/plugins/inputs/nginx_sts/README.md @@ -17,10 +17,9 @@ Nginx plus. For module configuration details please see the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx_upstream_check/README.md b/plugins/inputs/nginx_upstream_check/README.md index 7f97d2de9b586..49bf070260ee1 100644 --- a/plugins/inputs/nginx_upstream_check/README.md +++ b/plugins/inputs/nginx_upstream_check/README.md @@ -14,10 +14,9 @@ availability. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nginx_vts/README.md b/plugins/inputs/nginx_vts/README.md index 4992fd078925a..a5b66757cda3e 100644 --- a/plugins/inputs/nginx_vts/README.md +++ b/plugins/inputs/nginx_vts/README.md @@ -17,10 +17,9 @@ Nginx plus. For module configuration details please see the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nomad/README.md b/plugins/inputs/nomad/README.md index bb32c5a669ba7..42c338b4cbbe7 100644 --- a/plugins/inputs/nomad/README.md +++ b/plugins/inputs/nomad/README.md @@ -11,10 +11,9 @@ cluster. Telegraf may be present in every node and connect to the agent locally. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nsd/README.md b/plugins/inputs/nsd/README.md index 50bd7977eddc7..03725c4240628 100644 --- a/plugins/inputs/nsd/README.md +++ b/plugins/inputs/nsd/README.md @@ -11,10 +11,9 @@ authoritative DNS name server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nsdp/README.md b/plugins/inputs/nsdp/README.md index 2e7bd312fb656..ad6a9f787a81d 100644 --- a/plugins/inputs/nsdp/README.md +++ b/plugins/inputs/nsdp/README.md @@ -11,10 +11,9 @@ This plugin gathers metrics from devices via the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nsq/README.md b/plugins/inputs/nsq/README.md index 832fcfa1b5265..bc3a1f5d8282e 100644 --- a/plugins/inputs/nsq/README.md +++ b/plugins/inputs/nsq/README.md @@ -12,10 +12,9 @@ platform instances using the [NSQD API][api]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nsq_consumer/README.md b/plugins/inputs/nsq_consumer/README.md index 53296c132d6b8..c445396081066 100644 --- a/plugins/inputs/nsq_consumer/README.md +++ b/plugins/inputs/nsq_consumer/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nstat/README.md b/plugins/inputs/nstat/README.md index 754254cbeb517..06c9bd2c3a1ae 100644 --- a/plugins/inputs/nstat/README.md +++ b/plugins/inputs/nstat/README.md @@ -9,10 +9,9 @@ and `/proc/net/snmp6` files ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ntpq/README.md b/plugins/inputs/ntpq/README.md index 64dab42d3339b..7049496bdb8aa 100644 --- a/plugins/inputs/ntpq/README.md +++ b/plugins/inputs/ntpq/README.md @@ -13,10 +13,9 @@ This plugin gathers metrics about [Network Time Protocol][ntp] queries. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/nvidia_smi/README.md b/plugins/inputs/nvidia_smi/README.md index f214bbe70190d..44e9d06c3dc4c 100644 --- a/plugins/inputs/nvidia_smi/README.md +++ b/plugins/inputs/nvidia_smi/README.md @@ -16,10 +16,9 @@ GPU usage, temperature and other, using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/opcua/README.md b/plugins/inputs/opcua/README.md index 3ac73e1e7dea6..7db7a36f18368 100644 --- a/plugins/inputs/opcua/README.md +++ b/plugins/inputs/opcua/README.md @@ -11,10 +11,9 @@ configured nodes. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/opcua_listener/README.md b/plugins/inputs/opcua_listener/README.md index 6ca8900963b06..e6d8b71de9e96 100644 --- a/plugins/inputs/opcua_listener/README.md +++ b/plugins/inputs/opcua_listener/README.md @@ -22,10 +22,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/openldap/README.md b/plugins/inputs/openldap/README.md index 25ec634606663..84a400243b1dc 100644 --- a/plugins/inputs/openldap/README.md +++ b/plugins/inputs/openldap/README.md @@ -16,10 +16,9 @@ To use this plugin you must enable the [slapd monitoring][slapd_docs] backend. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/openntpd/README.md b/plugins/inputs/openntpd/README.md index 5db00f347a9ab..8af57e4771a35 100644 --- a/plugins/inputs/openntpd/README.md +++ b/plugins/inputs/openntpd/README.md @@ -15,10 +15,9 @@ command. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/opensearch_query/README.md b/plugins/inputs/opensearch_query/README.md index 6136c51d12168..99178ffd111a0 100644 --- a/plugins/inputs/opensearch_query/README.md +++ b/plugins/inputs/opensearch_query/README.md @@ -16,10 +16,9 @@ statistics on numeric fields, document counts, etc. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/opensmtpd/README.md b/plugins/inputs/opensmtpd/README.md index 5349fb16dcbc7..5f8ccdb224cf7 100644 --- a/plugins/inputs/opensmtpd/README.md +++ b/plugins/inputs/opensmtpd/README.md @@ -15,10 +15,9 @@ binary. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/openstack/README.md b/plugins/inputs/openstack/README.md index 66319cd6b2f66..16ba6af3a4ff2 100644 --- a/plugins/inputs/openstack/README.md +++ b/plugins/inputs/openstack/README.md @@ -17,10 +17,9 @@ endpoints. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/opentelemetry/README.md b/plugins/inputs/opentelemetry/README.md index 086facb26682c..df95dd4c935e6 100644 --- a/plugins/inputs/opentelemetry/README.md +++ b/plugins/inputs/opentelemetry/README.md @@ -30,10 +30,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/openweathermap/README.md b/plugins/inputs/openweathermap/README.md index 332ccfde023e8..285480783de03 100644 --- a/plugins/inputs/openweathermap/README.md +++ b/plugins/inputs/openweathermap/README.md @@ -15,10 +15,9 @@ This plugin collects weather and forecast data from the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/p4runtime/README.md b/plugins/inputs/p4runtime/README.md index a6cc6e25f1e0c..171640b2caa13 100644 --- a/plugins/inputs/p4runtime/README.md +++ b/plugins/inputs/p4runtime/README.md @@ -21,10 +21,9 @@ server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/passenger/README.md b/plugins/inputs/passenger/README.md index d85964b2b0ce1..3e9f715badab4 100644 --- a/plugins/inputs/passenger/README.md +++ b/plugins/inputs/passenger/README.md @@ -22,10 +22,9 @@ The plugin uses the `passenger-status` command line tool. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/pf/README.md b/plugins/inputs/pf/README.md index dac04d0be6213..8f8a641b7b01b 100644 --- a/plugins/inputs/pf/README.md +++ b/plugins/inputs/pf/README.md @@ -14,10 +14,9 @@ inserts, and removals to tables using the `pfctl` command. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/pgbouncer/README.md b/plugins/inputs/pgbouncer/README.md index dff8442c37508..1458f13b4e0d5 100644 --- a/plugins/inputs/pgbouncer/README.md +++ b/plugins/inputs/pgbouncer/README.md @@ -16,10 +16,9 @@ meaning. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/phpfpm/README.md b/plugins/inputs/phpfpm/README.md index 1bb1107b9dd90..b0221bcfd338c 100644 --- a/plugins/inputs/phpfpm/README.md +++ b/plugins/inputs/phpfpm/README.md @@ -11,10 +11,9 @@ using either the HTTP status page or the fpm socket. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ping/README.md b/plugins/inputs/ping/README.md index d2619a0050abc..610291b8ac289 100644 --- a/plugins/inputs/ping/README.md +++ b/plugins/inputs/ping/README.md @@ -13,10 +13,9 @@ response times and other packet statistics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/postfix/README.md b/plugins/inputs/postfix/README.md index 684502ef22dd3..2d0d5bb06ec50 100644 --- a/plugins/inputs/postfix/README.md +++ b/plugins/inputs/postfix/README.md @@ -13,10 +13,9 @@ the length, size and age of the active, hold, incoming, maildrop, and deferred ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/postgresql/README.md b/plugins/inputs/postgresql/README.md index 32e9b946ffd39..a285752b4bc1d 100644 --- a/plugins/inputs/postgresql/README.md +++ b/plugins/inputs/postgresql/README.md @@ -12,10 +12,9 @@ by PostgreSQL. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/postgresql_extensible/README.md b/plugins/inputs/postgresql_extensible/README.md index a5a50d378cc7b..244de9584b84e 100644 --- a/plugins/inputs/postgresql_extensible/README.md +++ b/plugins/inputs/postgresql_extensible/README.md @@ -16,10 +16,9 @@ additional metrics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/powerdns/README.md b/plugins/inputs/powerdns/README.md index 4e47c88adfc93..5fb2cdbcf21b6 100644 --- a/plugins/inputs/powerdns/README.md +++ b/plugins/inputs/powerdns/README.md @@ -14,10 +14,9 @@ sockets. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/powerdns_recursor/README.md b/plugins/inputs/powerdns_recursor/README.md index 13d94851efa8a..fa5f560720f6f 100644 --- a/plugins/inputs/powerdns_recursor/README.md +++ b/plugins/inputs/powerdns_recursor/README.md @@ -15,10 +15,9 @@ instances using the unix control-sockets. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/processes/README.md b/plugins/inputs/processes/README.md index 6b0c74c106bc8..63ad4e8d1d3f1 100644 --- a/plugins/inputs/processes/README.md +++ b/plugins/inputs/processes/README.md @@ -13,10 +13,9 @@ status (zombie, sleeping, running, etc.) ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/procstat/README.md b/plugins/inputs/procstat/README.md index a2b907b723746..f2d5bb6e3fe08 100644 --- a/plugins/inputs/procstat/README.md +++ b/plugins/inputs/procstat/README.md @@ -12,10 +12,9 @@ process or the service that started the process. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/prometheus/README.md b/plugins/inputs/prometheus/README.md index 74491433d955e..223a534852908 100644 --- a/plugins/inputs/prometheus/README.md +++ b/plugins/inputs/prometheus/README.md @@ -12,10 +12,9 @@ plugin also supports various service-discovery methods. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/promql/README.md b/plugins/inputs/promql/README.md index 85c9a3b3445e5..7c33b2f6e0693 100644 --- a/plugins/inputs/promql/README.md +++ b/plugins/inputs/promql/README.md @@ -13,10 +13,9 @@ This plugin gathers metrics from a [Prometheus][prometheus] endpoint using ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/proxmox/README.md b/plugins/inputs/proxmox/README.md index d21b096d27484..620f627e367de 100644 --- a/plugins/inputs/proxmox/README.md +++ b/plugins/inputs/proxmox/README.md @@ -11,10 +11,9 @@ This plugin gathers metrics about containers and VMs running on a ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/puppetagent/README.md b/plugins/inputs/puppetagent/README.md index 6aa36001ab897..594c61b6c0305 100644 --- a/plugins/inputs/puppetagent/README.md +++ b/plugins/inputs/puppetagent/README.md @@ -11,10 +11,9 @@ from the local last-run-summary file. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/rabbitmq/README.md b/plugins/inputs/rabbitmq/README.md index 2190278ce8418..a604527e644e3 100644 --- a/plugins/inputs/rabbitmq/README.md +++ b/plugins/inputs/rabbitmq/README.md @@ -12,10 +12,9 @@ This plugin gathers statistics from [RabbitMQ][rabbitmq] servers via the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/radius/README.md b/plugins/inputs/radius/README.md index aa7730a736400..8d18ed30f9c43 100644 --- a/plugins/inputs/radius/README.md +++ b/plugins/inputs/radius/README.md @@ -11,10 +11,9 @@ requests. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/raindrops/README.md b/plugins/inputs/raindrops/README.md index d6020b18547b8..f8b36e79a2006 100644 --- a/plugins/inputs/raindrops/README.md +++ b/plugins/inputs/raindrops/README.md @@ -10,10 +10,9 @@ This plugin collects statistics for [Raindrops middleware][raindrops] instances. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ras/README.md b/plugins/inputs/ras/README.md index decdcd52c4903..9c0aa2445c84e 100644 --- a/plugins/inputs/ras/README.md +++ b/plugins/inputs/ras/README.md @@ -15,10 +15,9 @@ This plugin gathers statistics and error counts provided by the local ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/ravendb/README.md b/plugins/inputs/ravendb/README.md index a1e306fe18b74..3f30a2bd08fe8 100644 --- a/plugins/inputs/ravendb/README.md +++ b/plugins/inputs/ravendb/README.md @@ -14,10 +14,9 @@ API. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/redfish/README.md b/plugins/inputs/redfish/README.md index d14eed57f0228..6498d624e652b 100644 --- a/plugins/inputs/redfish/README.md +++ b/plugins/inputs/redfish/README.md @@ -11,10 +11,9 @@ enabled [DMTF's Redfish][redfish] support. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/redis/README.md b/plugins/inputs/redis/README.md index df0532682cf4b..463be29528f33 100644 --- a/plugins/inputs/redis/README.md +++ b/plugins/inputs/redis/README.md @@ -10,10 +10,9 @@ This plugin gathers metrics from [Redis][redis] servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/redis_sentinel/README.md b/plugins/inputs/redis_sentinel/README.md index f8a256149da19..c0031d78067e2 100644 --- a/plugins/inputs/redis_sentinel/README.md +++ b/plugins/inputs/redis_sentinel/README.md @@ -11,10 +11,9 @@ Redis servers and replicas. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/rethinkdb/README.md b/plugins/inputs/rethinkdb/README.md index 0d7fe58297469..117cc8d383c55 100644 --- a/plugins/inputs/rethinkdb/README.md +++ b/plugins/inputs/rethinkdb/README.md @@ -10,10 +10,9 @@ This plugin collects metrics from [RethinkDB][rethinkdb] servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/riak/README.md b/plugins/inputs/riak/README.md index b890b610ee0c5..777efea7fdecf 100644 --- a/plugins/inputs/riak/README.md +++ b/plugins/inputs/riak/README.md @@ -10,10 +10,9 @@ This plugin gathers metrics from [Riak][riak] instances. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/riemann_listener/README.md b/plugins/inputs/riemann_listener/README.md index 6c80991a03c31..9d4b95bc0d595 100644 --- a/plugins/inputs/riemann_listener/README.md +++ b/plugins/inputs/riemann_listener/README.md @@ -22,10 +22,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/s7comm/README.md b/plugins/inputs/s7comm/README.md index c3c6df215dd8b..d7b72fde7f199 100644 --- a/plugins/inputs/s7comm/README.md +++ b/plugins/inputs/s7comm/README.md @@ -8,10 +8,9 @@ This plugin reads metrics from Siemens PLCs via the S7 protocol. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/salesforce/README.md b/plugins/inputs/salesforce/README.md index d90f868fb96ff..cca58d1aa4b36 100644 --- a/plugins/inputs/salesforce/README.md +++ b/plugins/inputs/salesforce/README.md @@ -13,10 +13,9 @@ Salesforce's REST API. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/sensors/README.md b/plugins/inputs/sensors/README.md index b6f21a9bb6017..316343aae81b9 100644 --- a/plugins/inputs/sensors/README.md +++ b/plugins/inputs/sensors/README.md @@ -15,10 +15,9 @@ This plugin collects metrics from hardware sensors using ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/sflow/README.md b/plugins/inputs/sflow/README.md index 3e2dde70a6cf6..56a00dd9b6cd2 100644 --- a/plugins/inputs/sflow/README.md +++ b/plugins/inputs/sflow/README.md @@ -32,10 +32,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/slab/README.md b/plugins/inputs/slab/README.md index 2fb18aae96401..e1e0b3fe3ba27 100644 --- a/plugins/inputs/slab/README.md +++ b/plugins/inputs/slab/README.md @@ -15,10 +15,9 @@ variable. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/slurm/README.md b/plugins/inputs/slurm/README.md index 78ea79b0f2e38..e0d96bd5120d8 100644 --- a/plugins/inputs/slurm/README.md +++ b/plugins/inputs/slurm/README.md @@ -18,10 +18,9 @@ daemon. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/smart/README.md b/plugins/inputs/smart/README.md index e6103d930c20b..d8d8420e1f41f 100644 --- a/plugins/inputs/smart/README.md +++ b/plugins/inputs/smart/README.md @@ -19,10 +19,9 @@ using the [`nvme-cli`][nvmecli] package. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/smartctl/README.md b/plugins/inputs/smartctl/README.md index 3b77e1995c237..9692605994d1e 100644 --- a/plugins/inputs/smartctl/README.md +++ b/plugins/inputs/smartctl/README.md @@ -22,10 +22,9 @@ package to collect additional information about NVMe devices. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/snmp/README.md b/plugins/inputs/snmp/README.md index db40e7b009140..3d6c38eec7d02 100644 --- a/plugins/inputs/snmp/README.md +++ b/plugins/inputs/snmp/README.md @@ -14,10 +14,9 @@ or complete SNMP tables. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/snmp_trap/README.md b/plugins/inputs/snmp_trap/README.md index 8cfbe37811d0e..8bd29c49d2bf8 100644 --- a/plugins/inputs/snmp_trap/README.md +++ b/plugins/inputs/snmp_trap/README.md @@ -25,10 +25,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/socket_listener/README.md b/plugins/inputs/socket_listener/README.md index 0acae45d9108c..8283e1cea1309 100644 --- a/plugins/inputs/socket_listener/README.md +++ b/plugins/inputs/socket_listener/README.md @@ -23,10 +23,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/socketstat/README.md b/plugins/inputs/socketstat/README.md index 929dd3533e58d..3129ce4091ffa 100644 --- a/plugins/inputs/socketstat/README.md +++ b/plugins/inputs/socketstat/README.md @@ -18,10 +18,9 @@ privileges. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/solr/README.md b/plugins/inputs/solr/README.md index 48874bc5a0280..f6320602df81d 100644 --- a/plugins/inputs/solr/README.md +++ b/plugins/inputs/solr/README.md @@ -17,10 +17,9 @@ performance statistics check the [performance statistics reference][reference]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/sql/README.md b/plugins/inputs/sql/README.md index 6a995592f10b4..f7729f61e5d43 100644 --- a/plugins/inputs/sql/README.md +++ b/plugins/inputs/sql/README.md @@ -15,10 +15,9 @@ for the data-source-name (`dsn`) options. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/sqlserver/README.md b/plugins/inputs/sqlserver/README.md index 98771cdc4d5b4..81b45fd3d3e61 100644 --- a/plugins/inputs/sqlserver/README.md +++ b/plugins/inputs/sqlserver/README.md @@ -18,10 +18,9 @@ metrics are lightweight and use Dynamic Management Views supplied by SQL Server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/stackdriver/README.md b/plugins/inputs/stackdriver/README.md index 34e1e5530b393..9528f10c1485f 100644 --- a/plugins/inputs/stackdriver/README.md +++ b/plugins/inputs/stackdriver/README.md @@ -16,10 +16,9 @@ This plugin collects metrics from [Google Cloud Monitoring][gcm] ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/statsd/README.md b/plugins/inputs/statsd/README.md index 3c8a37c05ec8a..9279858de0adb 100644 --- a/plugins/inputs/statsd/README.md +++ b/plugins/inputs/statsd/README.md @@ -21,10 +21,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/supervisor/README.md b/plugins/inputs/supervisor/README.md index 211a3b7bf17c9..b7fc1acf0c061 100644 --- a/plugins/inputs/supervisor/README.md +++ b/plugins/inputs/supervisor/README.md @@ -15,10 +15,9 @@ This plugin gathers information about processes running under ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/suricata/README.md b/plugins/inputs/suricata/README.md index 699c1d0ac16c4..f7263de58344e 100644 --- a/plugins/inputs/suricata/README.md +++ b/plugins/inputs/suricata/README.md @@ -26,10 +26,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/swap/README.md b/plugins/inputs/swap/README.md index cea5f3eec2d1d..3c7efb225ccde 100644 --- a/plugins/inputs/swap/README.md +++ b/plugins/inputs/swap/README.md @@ -8,10 +8,9 @@ This plugin collects metrics on the operating-system's swap memory. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/synproxy/README.md b/plugins/inputs/synproxy/README.md index 28ecdd12d6488..dd71f7e3418c8 100644 --- a/plugins/inputs/synproxy/README.md +++ b/plugins/inputs/synproxy/README.md @@ -11,10 +11,9 @@ module used for mitigating SYN attacks. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/syslog/README.md b/plugins/inputs/syslog/README.md index 944344377d028..a0ac592de49d3 100644 --- a/plugins/inputs/syslog/README.md +++ b/plugins/inputs/syslog/README.md @@ -31,10 +31,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/sysstat/README.md b/plugins/inputs/sysstat/README.md index 7a97196717faf..3ab802e74126c 100644 --- a/plugins/inputs/sysstat/README.md +++ b/plugins/inputs/sysstat/README.md @@ -16,10 +16,9 @@ the created binary data file using the `sadf` utility. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/system/README.md b/plugins/inputs/system/README.md index ece336f0157fc..c81e0e975eabd 100644 --- a/plugins/inputs/system/README.md +++ b/plugins/inputs/system/README.md @@ -9,10 +9,9 @@ number of users logged in. It is similar to the unix `uptime` command. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/systemd_units/README.md b/plugins/inputs/systemd_units/README.md index 2b97a6c347e47..3b73ad370a782 100644 --- a/plugins/inputs/systemd_units/README.md +++ b/plugins/inputs/systemd_units/README.md @@ -12,10 +12,9 @@ interface. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/tacacs/README.md b/plugins/inputs/tacacs/README.md index 310d13eece9bd..7d733b718760d 100644 --- a/plugins/inputs/tacacs/README.md +++ b/plugins/inputs/tacacs/README.md @@ -21,10 +21,9 @@ fully handle an authentication request, including all potential dependent calls ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/tail/README.md b/plugins/inputs/tail/README.md index 9bb79f75d08bd..9a2505ed5b8e2 100644 --- a/plugins/inputs/tail/README.md +++ b/plugins/inputs/tail/README.md @@ -24,10 +24,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/teamspeak/README.md b/plugins/inputs/teamspeak/README.md index 159ed6b531858..6bcffcb8d1fb3 100644 --- a/plugins/inputs/teamspeak/README.md +++ b/plugins/inputs/teamspeak/README.md @@ -16,10 +16,9 @@ Teamspeak 3 servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/temp/README.md b/plugins/inputs/temp/README.md index 188689ca6f508..42bcddff5fe8b 100644 --- a/plugins/inputs/temp/README.md +++ b/plugins/inputs/temp/README.md @@ -8,10 +8,9 @@ This plugin gathers metrics on system temperatures. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/tengine/README.md b/plugins/inputs/tengine/README.md index bc19655a84c33..6e13e86aa309c 100644 --- a/plugins/inputs/tengine/README.md +++ b/plugins/inputs/tengine/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics from the [Tengine Web Server][tengine] via the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/timex/README.md b/plugins/inputs/timex/README.md index acecdb961bb6c..b61877816f868 100644 --- a/plugins/inputs/timex/README.md +++ b/plugins/inputs/timex/README.md @@ -14,10 +14,9 @@ by the ntpd, systemd-timesyncd, chrony or other time synchronization services. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/tomcat/README.md b/plugins/inputs/tomcat/README.md index 381cb61c082c2..9162202e535dd 100644 --- a/plugins/inputs/tomcat/README.md +++ b/plugins/inputs/tomcat/README.md @@ -13,10 +13,9 @@ details of these statistics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/trig/README.md b/plugins/inputs/trig/README.md index c9d7f6e060b4f..3661ecee5b700 100644 --- a/plugins/inputs/trig/README.md +++ b/plugins/inputs/trig/README.md @@ -9,10 +9,9 @@ as metrics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/turbostat/README.md b/plugins/inputs/turbostat/README.md index 0dfa6fc0161a5..406f2a1c0f178 100644 --- a/plugins/inputs/turbostat/README.md +++ b/plugins/inputs/turbostat/README.md @@ -25,10 +25,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/twemproxy/README.md b/plugins/inputs/twemproxy/README.md index d88205a47b1c6..c46325a461f9d 100644 --- a/plugins/inputs/twemproxy/README.md +++ b/plugins/inputs/twemproxy/README.md @@ -10,10 +10,9 @@ This plugin gathers statistics from [Twemproxy][twemproxy] servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/unbound/README.md b/plugins/inputs/unbound/README.md index b068269834b8a..aa9e05da2f6b0 100644 --- a/plugins/inputs/unbound/README.md +++ b/plugins/inputs/unbound/README.md @@ -10,10 +10,9 @@ This plugin gathers stats from an [Unbound][unbound] DNS resolver. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/upsd/README.md b/plugins/inputs/upsd/README.md index ca98ad677e2c8..0ad2e9c01bfdf 100644 --- a/plugins/inputs/upsd/README.md +++ b/plugins/inputs/upsd/README.md @@ -11,10 +11,9 @@ This plugin reads data of one or more Uninterruptible Power Supplies from a ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/uwsgi/README.md b/plugins/inputs/uwsgi/README.md index cd004536a9593..430de5f617eb7 100644 --- a/plugins/inputs/uwsgi/README.md +++ b/plugins/inputs/uwsgi/README.md @@ -12,10 +12,9 @@ This plugin gathers metrics about [uWSGI][uwsgi] using its ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/varnish/README.md b/plugins/inputs/varnish/README.md index e74c9f5ff3a15..095aa13eae8c9 100644 --- a/plugins/inputs/varnish/README.md +++ b/plugins/inputs/varnish/README.md @@ -16,10 +16,9 @@ instance using the `varnishstat` command. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/vault/README.md b/plugins/inputs/vault/README.md index 2e73f57e3f7c4..863339ce01b91 100644 --- a/plugins/inputs/vault/README.md +++ b/plugins/inputs/vault/README.md @@ -13,10 +13,9 @@ This plugin collects metrics from every [Vault][vault] agent of a cluster. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/vsphere/README.md b/plugins/inputs/vsphere/README.md index a8f35de74501f..295404064be23 100644 --- a/plugins/inputs/vsphere/README.md +++ b/plugins/inputs/vsphere/README.md @@ -14,10 +14,9 @@ including clusters, hosts, resource pools, VMs, datastores and vSAN information. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/webhooks/README.md b/plugins/inputs/webhooks/README.md index ba6de34b45b85..c55d354d06aff 100644 --- a/plugins/inputs/webhooks/README.md +++ b/plugins/inputs/webhooks/README.md @@ -20,10 +20,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/whois/README.md b/plugins/inputs/whois/README.md index d65d886b2dfe2..19557ef537a8c 100644 --- a/plugins/inputs/whois/README.md +++ b/plugins/inputs/whois/README.md @@ -14,10 +14,9 @@ status from e.g. [IANA][iana] or [ICANN][icann] servers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/win_eventlog/README.md b/plugins/inputs/win_eventlog/README.md index 19cd2f983348a..84dced090b6b7 100644 --- a/plugins/inputs/win_eventlog/README.md +++ b/plugins/inputs/win_eventlog/README.md @@ -15,10 +15,9 @@ Windows Vista and higher. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/win_perf_counters/README.md b/plugins/inputs/win_perf_counters/README.md index 3036ab68de5db..b8f8d9b37af5b 100644 --- a/plugins/inputs/win_perf_counters/README.md +++ b/plugins/inputs/win_perf_counters/README.md @@ -11,10 +11,9 @@ This plugin produces metrics from the collected ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/win_services/README.md b/plugins/inputs/win_services/README.md index 5d27b58de13a7..95b313ab1d57e 100644 --- a/plugins/inputs/win_services/README.md +++ b/plugins/inputs/win_services/README.md @@ -12,10 +12,9 @@ This plugin collects information about the status of Windows services. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/win_wmi/README.md b/plugins/inputs/win_wmi/README.md index 708c21cb04a28..f45dfe8670439 100644 --- a/plugins/inputs/win_wmi/README.md +++ b/plugins/inputs/win_wmi/README.md @@ -17,10 +17,9 @@ filtering virtually any configuration or metric value exposed through WMI. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/wireguard/README.md b/plugins/inputs/wireguard/README.md index 15b281b27fa64..c3ddc7b3b0331 100644 --- a/plugins/inputs/wireguard/README.md +++ b/plugins/inputs/wireguard/README.md @@ -13,10 +13,9 @@ Wireguard interface device(s) and its peers. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/wireless/README.md b/plugins/inputs/wireless/README.md index 7ae071e7274df..28ca8eeae54cd 100644 --- a/plugins/inputs/wireless/README.md +++ b/plugins/inputs/wireless/README.md @@ -9,10 +9,9 @@ This plugin gathers metrics about wireless link quality by reading the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/x509_cert/README.md b/plugins/inputs/x509_cert/README.md index 5822367005246..7c787b6aaa0fa 100644 --- a/plugins/inputs/x509_cert/README.md +++ b/plugins/inputs/x509_cert/README.md @@ -17,10 +17,9 @@ Certificate Store. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/xtremio/README.md b/plugins/inputs/xtremio/README.md index d401e6ea5997d..0863ef7cdaffc 100644 --- a/plugins/inputs/xtremio/README.md +++ b/plugins/inputs/xtremio/README.md @@ -12,10 +12,9 @@ instance using the [v3 Rest API][api]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/zfs/README.md b/plugins/inputs/zfs/README.md index e87192003c52d..0bb9db7135e70 100644 --- a/plugins/inputs/zfs/README.md +++ b/plugins/inputs/zfs/README.md @@ -11,10 +11,9 @@ This plugin gathers metrics from [ZFS][zfs] filesystems using ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/zipkin/README.md b/plugins/inputs/zipkin/README.md index ea996b1d0c1a1..9043657cc4a34 100644 --- a/plugins/inputs/zipkin/README.md +++ b/plugins/inputs/zipkin/README.md @@ -29,10 +29,9 @@ normal plugins: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/inputs/zookeeper/README.md b/plugins/inputs/zookeeper/README.md index 9f71b63c7552f..a16d85ab316f9 100644 --- a/plugins/inputs/zookeeper/README.md +++ b/plugins/inputs/zookeeper/README.md @@ -17,10 +17,9 @@ This plugin collects variables from [Zookeeper][zookeeper] instances using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/amon/README.md b/plugins/outputs/amon/README.md index e17e2deeb083b..ba766b3f10b7f 100644 --- a/plugins/outputs/amon/README.md +++ b/plugins/outputs/amon/README.md @@ -19,10 +19,9 @@ This plugin writes metrics to [Amon monitoring platform][amon]. It requires a ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/amqp/README.md b/plugins/outputs/amqp/README.md index ca1ba841a479c..53874ca5c0f8d 100644 --- a/plugins/outputs/amqp/README.md +++ b/plugins/outputs/amqp/README.md @@ -19,10 +19,9 @@ For an introduction check the [AMQP concepts page][amqp_concepts] and the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/application_insights/README.md b/plugins/outputs/application_insights/README.md index 25834e2b9e343..45df4e9dd24ff 100644 --- a/plugins/outputs/application_insights/README.md +++ b/plugins/outputs/application_insights/README.md @@ -11,10 +11,9 @@ service. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/arc/README.md b/plugins/outputs/arc/README.md index 758791edfd191..64a24c598fe82 100644 --- a/plugins/outputs/arc/README.md +++ b/plugins/outputs/arc/README.md @@ -12,10 +12,9 @@ performance** than the line-protocol format. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/azure_data_explorer/README.md b/plugins/outputs/azure_data_explorer/README.md index bf9f92db327dd..e86486f76a2a5 100644 --- a/plugins/outputs/azure_data_explorer/README.md +++ b/plugins/outputs/azure_data_explorer/README.md @@ -25,10 +25,9 @@ type of logs, metrics and time series data. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/azure_monitor/README.md b/plugins/outputs/azure_monitor/README.md index d6955f1a3bf4c..8421c553d2ad4 100644 --- a/plugins/outputs/azure_monitor/README.md +++ b/plugins/outputs/azure_monitor/README.md @@ -25,10 +25,9 @@ dimension on each Azure Monitor metric. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/bigquery/README.md b/plugins/outputs/bigquery/README.md index 3feae9b8595ad..164a339352c97 100644 --- a/plugins/outputs/bigquery/README.md +++ b/plugins/outputs/bigquery/README.md @@ -18,10 +18,9 @@ service account or user credentials. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/clarify/README.md b/plugins/outputs/clarify/README.md index cf27bd6e696f9..31fa1cfc58745 100644 --- a/plugins/outputs/clarify/README.md +++ b/plugins/outputs/clarify/README.md @@ -9,10 +9,9 @@ need to obtain a set of [credentials][credentials]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/cloud_pubsub/README.md b/plugins/outputs/cloud_pubsub/README.md index d9f6a2354a295..7880f0c4ce3de 100644 --- a/plugins/outputs/cloud_pubsub/README.md +++ b/plugins/outputs/cloud_pubsub/README.md @@ -9,10 +9,9 @@ of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/cloudwatch/README.md b/plugins/outputs/cloudwatch/README.md index 264b3a614d542..3820779516f07 100644 --- a/plugins/outputs/cloudwatch/README.md +++ b/plugins/outputs/cloudwatch/README.md @@ -35,10 +35,9 @@ The IAM user needs only the `cloudwatch:PutMetricData` permission. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/cloudwatch_logs/README.md b/plugins/outputs/cloudwatch_logs/README.md index 97b05687c27ff..56454abaa2e69 100644 --- a/plugins/outputs/cloudwatch_logs/README.md +++ b/plugins/outputs/cloudwatch_logs/README.md @@ -41,10 +41,9 @@ The IAM user needs the following permissions (see this [reference][4] for more): ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/cratedb/README.md b/plugins/outputs/cratedb/README.md index 1d4edff370a12..a5a917cc9d75b 100644 --- a/plugins/outputs/cratedb/README.md +++ b/plugins/outputs/cratedb/README.md @@ -31,10 +31,9 @@ config option, see below. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/datadog/README.md b/plugins/outputs/datadog/README.md index ce616e6bb9060..e6af0a98ed25d 100644 --- a/plugins/outputs/datadog/README.md +++ b/plugins/outputs/datadog/README.md @@ -15,10 +15,9 @@ This plugin writes metrics to the [Datadog Metrics API][metrics] and requires an ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/discard/README.md b/plugins/outputs/discard/README.md index efc67481a835d..79cf4c30ba03f 100644 --- a/plugins/outputs/discard/README.md +++ b/plugins/outputs/discard/README.md @@ -9,10 +9,9 @@ purposes. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/dynatrace/README.md b/plugins/outputs/dynatrace/README.md index a3c81f70718eb..63dfa79e361ba 100644 --- a/plugins/outputs/dynatrace/README.md +++ b/plugins/outputs/dynatrace/README.md @@ -101,10 +101,9 @@ You can learn more about how to use the [Dynatrace API][api]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/elasticsearch/README.md b/plugins/outputs/elasticsearch/README.md index e90e6d39349bc..1bfce4bfd3149 100644 --- a/plugins/outputs/elasticsearch/README.md +++ b/plugins/outputs/elasticsearch/README.md @@ -231,10 +231,9 @@ POST https://es.us-east-1.amazonaws.com/2021-01-01/opensearch/upgradeDomain ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/event_hubs/README.md b/plugins/outputs/event_hubs/README.md index 8707999e15860..4bbe93a0d3bc2 100644 --- a/plugins/outputs/event_hubs/README.md +++ b/plugins/outputs/event_hubs/README.md @@ -18,10 +18,9 @@ partition key is specified the batches will be automatically load-balanced ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/exec/README.md b/plugins/outputs/exec/README.md index f486f9eda6a1b..d43b2da46680b 100644 --- a/plugins/outputs/exec/README.md +++ b/plugins/outputs/exec/README.md @@ -18,10 +18,9 @@ All outputs of the executable to `stderr` will be logged in the Telegraf log. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/execd/README.md b/plugins/outputs/execd/README.md index bd94f618c3caf..bb0884dcf1b7b 100644 --- a/plugins/outputs/execd/README.md +++ b/plugins/outputs/execd/README.md @@ -16,10 +16,9 @@ Telegraf minimum version: Telegraf 1.15.0 ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/file/README.md b/plugins/outputs/file/README.md index e98a499f9650b..82b6fe431a912 100644 --- a/plugins/outputs/file/README.md +++ b/plugins/outputs/file/README.md @@ -11,10 +11,9 @@ This plugin writes metrics to one or more local files in one of the supported ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/graphite/README.md b/plugins/outputs/graphite/README.md index 15dfa82e6d3b6..0aa12d0a75440 100644 --- a/plugins/outputs/graphite/README.md +++ b/plugins/outputs/graphite/README.md @@ -13,10 +13,9 @@ translation between Telegraf Metrics and Graphite output see the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/graylog/README.md b/plugins/outputs/graylog/README.md index 31b584393f95d..cfacb5503985f 100644 --- a/plugins/outputs/graylog/README.md +++ b/plugins/outputs/graylog/README.md @@ -29,10 +29,9 @@ the field name. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/groundwork/README.md b/plugins/outputs/groundwork/README.md index d9a619fa3ccd5..8ad67dd09914b 100644 --- a/plugins/outputs/groundwork/README.md +++ b/plugins/outputs/groundwork/README.md @@ -13,10 +13,9 @@ This plugin writes metrics to a [GroundWork Monitor][groundwork] instance. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/health/README.md b/plugins/outputs/health/README.md index c53b3d8a92235..f792157c42fe3 100644 --- a/plugins/outputs/health/README.md +++ b/plugins/outputs/health/README.md @@ -13,10 +13,9 @@ must fail in order for the resource to enter the failed state. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/heartbeat/README.md b/plugins/outputs/heartbeat/README.md index c906abd2704ae..0ee2810a173ac 100644 --- a/plugins/outputs/heartbeat/README.md +++ b/plugins/outputs/heartbeat/README.md @@ -10,10 +10,9 @@ deployment. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/http/README.md b/plugins/outputs/http/README.md index ed83543b29492..b9f8ccbed752f 100644 --- a/plugins/outputs/http/README.md +++ b/plugins/outputs/http/README.md @@ -12,10 +12,9 @@ sent in batches by default. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/influxdb/README.md b/plugins/outputs/influxdb/README.md index 24ba9d8a89f71..9e54bf77c27e1 100644 --- a/plugins/outputs/influxdb/README.md +++ b/plugins/outputs/influxdb/README.md @@ -11,10 +11,9 @@ HTTP or UDP protocol. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/influxdb_v2/README.md b/plugins/outputs/influxdb_v2/README.md index 7d8986719b2eb..f2c971575b95c 100644 --- a/plugins/outputs/influxdb_v2/README.md +++ b/plugins/outputs/influxdb_v2/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to a [InfluxDB v2.x][influxdb_v2] instance via HTTP. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/inlong/README.md b/plugins/outputs/inlong/README.md index 1df93aeee0c9c..07504645784cf 100644 --- a/plugins/outputs/inlong/README.md +++ b/plugins/outputs/inlong/README.md @@ -10,10 +10,9 @@ This plugin publishes metrics to an [Apache InLong][inlong] instance. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/instrumental/README.md b/plugins/outputs/instrumental/README.md index 9e160dc602872..7e3ff6fccb0a6 100644 --- a/plugins/outputs/instrumental/README.md +++ b/plugins/outputs/instrumental/README.md @@ -17,10 +17,9 @@ used if the metric comes in as a counter via the [statsd input plugin][statsd]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/iotdb/README.md b/plugins/outputs/iotdb/README.md index b2a25ed765d02..b81999d17db83 100644 --- a/plugins/outputs/iotdb/README.md +++ b/plugins/outputs/iotdb/README.md @@ -70,10 +70,9 @@ Name="root.sg.device", Tags={tag1="private", tag2="working"}, Fields={s1=100, s2 ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/kafka/README.md b/plugins/outputs/kafka/README.md index 54a2793086c8b..acfbb2dee3f40 100644 --- a/plugins/outputs/kafka/README.md +++ b/plugins/outputs/kafka/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to a [Kafka Broker][kafka] acting a Kafka Producer. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/kinesis/README.md b/plugins/outputs/kinesis/README.md index a7133eb92329a..48643811ff1d1 100644 --- a/plugins/outputs/kinesis/README.md +++ b/plugins/outputs/kinesis/README.md @@ -38,10 +38,9 @@ will be used. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/librato/README.md b/plugins/outputs/librato/README.md index ea4a4d40eb69f..fc7b47a6945f9 100644 --- a/plugins/outputs/librato/README.md +++ b/plugins/outputs/librato/README.md @@ -21,10 +21,9 @@ does not send any additional associated Point Tags. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/logzio/README.md b/plugins/outputs/logzio/README.md index 6d765f1a29458..f908377429af6 100644 --- a/plugins/outputs/logzio/README.md +++ b/plugins/outputs/logzio/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to the [Logz.io][logzio] service via HTTP. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/loki/README.md b/plugins/outputs/loki/README.md index 27c5d12c51a5f..4cbd3c97d8729 100644 --- a/plugins/outputs/loki/README.md +++ b/plugins/outputs/loki/README.md @@ -14,10 +14,9 @@ Logs within each stream are sorted by timestamp before being sent to Loki. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/microsoft_fabric/README.md b/plugins/outputs/microsoft_fabric/README.md index 4538405f38e57..8b3421647b08c 100644 --- a/plugins/outputs/microsoft_fabric/README.md +++ b/plugins/outputs/microsoft_fabric/README.md @@ -22,10 +22,9 @@ It offers an end-to-end solution for event-driven scenarios, ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/mongodb/README.md b/plugins/outputs/mongodb/README.md index 0430ab70ffa8b..08069411be9ce 100644 --- a/plugins/outputs/mongodb/README.md +++ b/plugins/outputs/mongodb/README.md @@ -14,10 +14,9 @@ collections as time series collections if they don't exist. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/mqtt/README.md b/plugins/outputs/mqtt/README.md index 33d6d638b935d..a922e38a69389 100644 --- a/plugins/outputs/mqtt/README.md +++ b/plugins/outputs/mqtt/README.md @@ -18,10 +18,9 @@ The plugin supports the MQTT protocols `3.1.1` and `5`. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/nats/README.md b/plugins/outputs/nats/README.md index cd7dfddeca11b..28ea4a8833d40 100644 --- a/plugins/outputs/nats/README.md +++ b/plugins/outputs/nats/README.md @@ -12,10 +12,9 @@ one of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/nebius_cloud_monitoring/README.md b/plugins/outputs/nebius_cloud_monitoring/README.md index 6223feac50408..9c4772ae7ecba 100644 --- a/plugins/outputs/nebius_cloud_monitoring/README.md +++ b/plugins/outputs/nebius_cloud_monitoring/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to the [Nebuis Cloud Monitoring][nebius] service. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/newrelic/README.md b/plugins/outputs/newrelic/README.md index 9fc3c41b2f8cc..cc25eea1f61a4 100644 --- a/plugins/outputs/newrelic/README.md +++ b/plugins/outputs/newrelic/README.md @@ -14,10 +14,9 @@ This plugins writes metrics to [New Relic Insights][newrelic] using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/nsq/README.md b/plugins/outputs/nsq/README.md index ed5f5c67dec24..550529d9417e0 100644 --- a/plugins/outputs/nsq/README.md +++ b/plugins/outputs/nsq/README.md @@ -12,10 +12,9 @@ producer in one of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/opensearch/README.md b/plugins/outputs/opensearch/README.md index 79facb2308227..395a63a545405 100644 --- a/plugins/outputs/opensearch/README.md +++ b/plugins/outputs/opensearch/README.md @@ -15,10 +15,9 @@ not guaranteed and instead will focus on 2.x support. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/opentelemetry/README.md b/plugins/outputs/opentelemetry/README.md index db874719b1764..88aa329ee8074 100644 --- a/plugins/outputs/opentelemetry/README.md +++ b/plugins/outputs/opentelemetry/README.md @@ -11,10 +11,9 @@ via gRPC. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/opentsdb/README.md b/plugins/outputs/opentsdb/README.md index 56d4b124b31c5..75085e614b8de 100644 --- a/plugins/outputs/opentsdb/README.md +++ b/plugins/outputs/opentsdb/README.md @@ -11,10 +11,9 @@ the telnet or HTTP mode. Using the HTTP API is recommended since OpenTSDB 2.0. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/parquet/README.md b/plugins/outputs/parquet/README.md index 97dc9ec1cf56d..19627cd5da2c4 100644 --- a/plugins/outputs/parquet/README.md +++ b/plugins/outputs/parquet/README.md @@ -19,10 +19,9 @@ well as a blog post on [querying parquet][querying]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/postgresql/README.md b/plugins/outputs/postgresql/README.md index a32e12e87a3af..b9c208cb1a034 100644 --- a/plugins/outputs/postgresql/README.md +++ b/plugins/outputs/postgresql/README.md @@ -11,10 +11,9 @@ managing the schema and automatically updating missing columns. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/prometheus_client/README.md b/plugins/outputs/prometheus_client/README.md index 013940df0bb31..785ca010be0ac 100644 --- a/plugins/outputs/prometheus_client/README.md +++ b/plugins/outputs/prometheus_client/README.md @@ -12,10 +12,9 @@ by a Prometheus server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/quix/README.md b/plugins/outputs/quix/README.md index 870f7e36d4f70..94646fe653e84 100644 --- a/plugins/outputs/quix/README.md +++ b/plugins/outputs/quix/README.md @@ -14,10 +14,9 @@ Quix platform architecture and concepts. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/redistimeseries/README.md b/plugins/outputs/redistimeseries/README.md index a68b427a556a8..f3fd5e28b7e6e 100644 --- a/plugins/outputs/redistimeseries/README.md +++ b/plugins/outputs/redistimeseries/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to a [Redis time-series][redists] server. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/remotefile/README.md b/plugins/outputs/remotefile/README.md index 0fee3dcac5597..ef5f6c0bd4c9d 100644 --- a/plugins/outputs/remotefile/README.md +++ b/plugins/outputs/remotefile/README.md @@ -15,10 +15,9 @@ This plugin writes metrics to files in a remote location using the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/riemann/README.md b/plugins/outputs/riemann/README.md index a50f8696b79bd..1b069b317e6bc 100644 --- a/plugins/outputs/riemann/README.md +++ b/plugins/outputs/riemann/README.md @@ -10,10 +10,9 @@ This plugin writes metric to the [Riemann][riemann] serice via TCP or UDP. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/sensu/README.md b/plugins/outputs/sensu/README.md index 49542ac389d96..cb64baa97f101 100644 --- a/plugins/outputs/sensu/README.md +++ b/plugins/outputs/sensu/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to [Sensu Go][sensu] via its HTTP events API. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/signalfx/README.md b/plugins/outputs/signalfx/README.md index afc0b79784d65..a9003c0462608 100644 --- a/plugins/outputs/signalfx/README.md +++ b/plugins/outputs/signalfx/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to [SignalFx][docs]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/socket_writer/README.md b/plugins/outputs/socket_writer/README.md index 5da9e3d4547c7..5cfbf038d6ea6 100644 --- a/plugins/outputs/socket_writer/README.md +++ b/plugins/outputs/socket_writer/README.md @@ -11,10 +11,9 @@ the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/sql/README.md b/plugins/outputs/sql/README.md index eb180413512d8..86dc200fc2449 100644 --- a/plugins/outputs/sql/README.md +++ b/plugins/outputs/sql/README.md @@ -72,10 +72,9 @@ you could improve the ingestion rate, by enabling `batch_transactions` ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/stackdriver/README.md b/plugins/outputs/stackdriver/README.md index be042ec3dcb56..93c5126330dd7 100644 --- a/plugins/outputs/stackdriver/README.md +++ b/plugins/outputs/stackdriver/README.md @@ -21,10 +21,9 @@ the global namespace is not set, it is omitted as well. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/stomp/README.md b/plugins/outputs/stomp/README.md index 938d44d8e13c4..c5d09e4de98b7 100644 --- a/plugins/outputs/stomp/README.md +++ b/plugins/outputs/stomp/README.md @@ -15,10 +15,9 @@ of the supported [data formats][data_formats]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/sumologic/README.md b/plugins/outputs/sumologic/README.md index bd1d865728275..0d33142c2d797 100644 --- a/plugins/outputs/sumologic/README.md +++ b/plugins/outputs/sumologic/README.md @@ -15,10 +15,9 @@ of the following data formats: ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/syslog/README.md b/plugins/outputs/syslog/README.md index a6d1ae2ca8d05..2e4a9467dbe20 100644 --- a/plugins/outputs/syslog/README.md +++ b/plugins/outputs/syslog/README.md @@ -22,10 +22,9 @@ TLS in [RFC5425 format][rfc5425], with or without the octet counting framing. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/timestream/README.md b/plugins/outputs/timestream/README.md index d955e419c194d..e1ca5b3c1fa09 100644 --- a/plugins/outputs/timestream/README.md +++ b/plugins/outputs/timestream/README.md @@ -38,10 +38,9 @@ endpoint will be used. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/warp10/README.md b/plugins/outputs/warp10/README.md index 3f2a31a1cd490..60f6c2fd68a24 100644 --- a/plugins/outputs/warp10/README.md +++ b/plugins/outputs/warp10/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to the [Warp 10][warp10] service. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/wavefront/README.md b/plugins/outputs/wavefront/README.md index 6a207536c5b56..bcb235f9ff0b1 100644 --- a/plugins/outputs/wavefront/README.md +++ b/plugins/outputs/wavefront/README.md @@ -11,10 +11,9 @@ Proxy instance over HTTP or HTTPS. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/websocket/README.md b/plugins/outputs/websocket/README.md index 64dbcba2d40e4..d1604b910bd7d 100644 --- a/plugins/outputs/websocket/README.md +++ b/plugins/outputs/websocket/README.md @@ -11,10 +11,9 @@ This plugin writes metrics to a WebSocket endpoint in one of the supported ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/yandex_cloud_monitoring/README.md b/plugins/outputs/yandex_cloud_monitoring/README.md index 022ba6f694a21..1d7a6bbe3573f 100644 --- a/plugins/outputs/yandex_cloud_monitoring/README.md +++ b/plugins/outputs/yandex_cloud_monitoring/README.md @@ -10,10 +10,9 @@ This plugin writes metrics to the [Yandex Cloud Monitoring][yandex] service. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/outputs/zabbix/README.md b/plugins/outputs/zabbix/README.md index 2cfcc75838f93..fe9557db4bb19 100644 --- a/plugins/outputs/zabbix/README.md +++ b/plugins/outputs/zabbix/README.md @@ -13,10 +13,9 @@ of Zabbix as long as the protocol doesn't change. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/aws_ec2/README.md b/plugins/processors/aws_ec2/README.md index 9630370aec495..123fde43910fd 100644 --- a/plugins/processors/aws_ec2/README.md +++ b/plugins/processors/aws_ec2/README.md @@ -11,10 +11,9 @@ to metrics associated with EC2 instances. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/clone/README.md b/plugins/processors/clone/README.md index b7d81eed4628e..5071d9aa3e089 100644 --- a/plugins/processors/clone/README.md +++ b/plugins/processors/clone/README.md @@ -17,10 +17,9 @@ in the copied metric. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/converter/README.md b/plugins/processors/converter/README.md index 4b7c8e630e870..d20d81c4dd5bf 100644 --- a/plugins/processors/converter/README.md +++ b/plugins/processors/converter/README.md @@ -15,10 +15,9 @@ type. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/cumulative_sum/README.md b/plugins/processors/cumulative_sum/README.md index 078e4603030f8..ba956efe37dcd 100644 --- a/plugins/processors/cumulative_sum/README.md +++ b/plugins/processors/cumulative_sum/README.md @@ -14,10 +14,9 @@ relying on monotonically increasing values ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/date/README.md b/plugins/processors/date/README.md index 671c4e1bce903..7b47e911bb91e 100644 --- a/plugins/processors/date/README.md +++ b/plugins/processors/date/README.md @@ -9,10 +9,9 @@ to add a tag that can be used to group by month or year. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/dedup/README.md b/plugins/processors/dedup/README.md index 2607fc9de80bc..834f8c93b45cd 100644 --- a/plugins/processors/dedup/README.md +++ b/plugins/processors/dedup/README.md @@ -10,10 +10,9 @@ previous values. This plugin will store its state between runs if the ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/defaults/README.md b/plugins/processors/defaults/README.md index c3774853c515b..923ccd7dc323f 100644 --- a/plugins/processors/defaults/README.md +++ b/plugins/processors/defaults/README.md @@ -9,10 +9,9 @@ where the tag or field does not exist or has an empty value. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/enum/README.md b/plugins/processors/enum/README.md index 6546c5e0f0bc1..49d4341653d27 100644 --- a/plugins/processors/enum/README.md +++ b/plugins/processors/enum/README.md @@ -11,10 +11,9 @@ used for all remaining values. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/execd/README.md b/plugins/processors/execd/README.md index d958f51becb5f..c9e97186d9780 100644 --- a/plugins/processors/execd/README.md +++ b/plugins/processors/execd/README.md @@ -21,10 +21,9 @@ output on `stderr` is logged. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/filepath/README.md b/plugins/processors/filepath/README.md index 87ab15b7c7b64..0b5e2760841a9 100644 --- a/plugins/processors/filepath/README.md +++ b/plugins/processors/filepath/README.md @@ -10,10 +10,9 @@ stored in another key. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/filter/README.md b/plugins/processors/filter/README.md index 2291aa97acd1f..1a140a82b963c 100644 --- a/plugins/processors/filter/README.md +++ b/plugins/processors/filter/README.md @@ -15,10 +15,9 @@ stream. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/ifname/README.md b/plugins/processors/ifname/README.md index 2ffd3e31acb5c..a87adcb9c5a22 100644 --- a/plugins/processors/ifname/README.md +++ b/plugins/processors/ifname/README.md @@ -8,10 +8,9 @@ This plugin looks up network interface names using SNMP. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/lookup/README.md b/plugins/processors/lookup/README.md index ad7bb90102cea..3a18aeaf389ed 100644 --- a/plugins/processors/lookup/README.md +++ b/plugins/processors/lookup/README.md @@ -24,10 +24,9 @@ existing tag-values are overwritten. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/noise/README.md b/plugins/processors/noise/README.md index bff69bfa6fa58..313f11e412a1a 100644 --- a/plugins/processors/noise/README.md +++ b/plugins/processors/noise/README.md @@ -11,10 +11,9 @@ _Uniform_. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/override/README.md b/plugins/processors/override/README.md index f8871612d199e..5e1f6a7d396a4 100644 --- a/plugins/processors/override/README.md +++ b/plugins/processors/override/README.md @@ -18,10 +18,9 @@ are adhered to irrespective of input plugin configurations, e.g. by ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/parser/README.md b/plugins/processors/parser/README.md index 3dd5b7af0740f..67a8834c575bd 100644 --- a/plugins/processors/parser/README.md +++ b/plugins/processors/parser/README.md @@ -12,10 +12,9 @@ fields and tags. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/pivot/README.md b/plugins/processors/pivot/README.md index fbd9f247277fb..b4d9520585433 100644 --- a/plugins/processors/pivot/README.md +++ b/plugins/processors/pivot/README.md @@ -15,10 +15,9 @@ comparisons between metrics or flatten fields. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/port_name/README.md b/plugins/processors/port_name/README.md index ec592fcff1889..e54a97d919e78 100644 --- a/plugins/processors/port_name/README.md +++ b/plugins/processors/port_name/README.md @@ -10,10 +10,9 @@ either a number (e.g. `80`) for TCP ports or a port and protocol ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/printer/README.md b/plugins/processors/printer/README.md index 86b18357ed051..a56412170a8f3 100644 --- a/plugins/processors/printer/README.md +++ b/plugins/processors/printer/README.md @@ -8,10 +8,9 @@ This plugin prints every metric passing through it to the standard output. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/regex/README.md b/plugins/processors/regex/README.md index 8d2f144b11309..8b477356be556 100644 --- a/plugins/processors/regex/README.md +++ b/plugins/processors/regex/README.md @@ -13,10 +13,9 @@ any other data types, like an integer or float. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/rename/README.md b/plugins/processors/rename/README.md index beaaf664c7a61..ad870c3c977d6 100644 --- a/plugins/processors/rename/README.md +++ b/plugins/processors/rename/README.md @@ -8,10 +8,9 @@ This plugin allows to rename measurements, fields and tags. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/reverse_dns/README.md b/plugins/processors/reverse_dns/README.md index fc1a6ae00ae08..578519cd2e179 100644 --- a/plugins/processors/reverse_dns/README.md +++ b/plugins/processors/reverse_dns/README.md @@ -9,10 +9,9 @@ creates a tag or field containing the corresponding DNS name. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/round/README.md b/plugins/processors/round/README.md index bdadd5aa63491..8df6bbc11b6be 100644 --- a/plugins/processors/round/README.md +++ b/plugins/processors/round/README.md @@ -13,10 +13,9 @@ is required for the values. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/s2geo/README.md b/plugins/processors/s2geo/README.md index d89715119a2a8..93bd8768585a6 100644 --- a/plugins/processors/s2geo/README.md +++ b/plugins/processors/s2geo/README.md @@ -12,10 +12,9 @@ token of specified [cell level][cell levels]. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/scale/README.md b/plugins/processors/scale/README.md index e62350edd13ba..0f1e6f551f65d 100644 --- a/plugins/processors/scale/README.md +++ b/plugins/processors/scale/README.md @@ -28,10 +28,9 @@ fields that cannot be converted are ignored and keep their original value. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/snmp_lookup/README.md b/plugins/processors/snmp_lookup/README.md index 0587d47d5d3d3..78e6274bb8483 100644 --- a/plugins/processors/snmp_lookup/README.md +++ b/plugins/processors/snmp_lookup/README.md @@ -9,10 +9,9 @@ tags. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/split/README.md b/plugins/processors/split/README.md index 836a539c62456..8d49969495f2d 100644 --- a/plugins/processors/split/README.md +++ b/plugins/processors/split/README.md @@ -16,10 +16,9 @@ and as a result end up in multiple metrics. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/starlark/README.md b/plugins/processors/starlark/README.md index 1a7ee69afc582..6c14f5689e3e7 100644 --- a/plugins/processors/starlark/README.md +++ b/plugins/processors/starlark/README.md @@ -20,10 +20,9 @@ available functions. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/strings/README.md b/plugins/processors/strings/README.md index d79b670e44c35..1991ab64723e4 100644 --- a/plugins/processors/strings/README.md +++ b/plugins/processors/strings/README.md @@ -9,10 +9,9 @@ field values using different functions. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/tag_limit/README.md b/plugins/processors/tag_limit/README.md index 2a6e0dfe98396..8a5f00873efd0 100644 --- a/plugins/processors/tag_limit/README.md +++ b/plugins/processors/tag_limit/README.md @@ -14,10 +14,9 @@ levels of cardinality are computationally and/or financially expensive. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/template/README.md b/plugins/processors/template/README.md index 724a872383d14..f43e3b9cfca1e 100644 --- a/plugins/processors/template/README.md +++ b/plugins/processors/template/README.md @@ -17,10 +17,9 @@ timestamp. Templates follow the [Go Template syntax][template] and may contain ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/timestamp/README.md b/plugins/processors/timestamp/README.md index a8b7bfe06b01b..33846fe56f5bd 100644 --- a/plugins/processors/timestamp/README.md +++ b/plugins/processors/timestamp/README.md @@ -9,10 +9,9 @@ other format. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/topk/README.md b/plugins/processors/topk/README.md index a04292e37b6ad..e024262a369d0 100644 --- a/plugins/processors/topk/README.md +++ b/plugins/processors/topk/README.md @@ -11,10 +11,9 @@ functions for each group every period and outputting the top `K` groups. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins diff --git a/plugins/processors/unpivot/README.md b/plugins/processors/unpivot/README.md index 2c57c28146dac..6b0f6da99568f 100644 --- a/plugins/processors/unpivot/README.md +++ b/plugins/processors/unpivot/README.md @@ -14,10 +14,9 @@ The resulting metrics allow to more easily aggregate data across fields. ## Global configuration options -In addition to the plugin-specific configuration settings, plugins support -additional global and plugin configuration settings. These settings are used to -modify metrics, tags, and field or create aliases and configure ordering, etc. -See the [CONFIGURATION.md][CONFIGURATION.md] for more details. +Plugins support additional global and plugin configuration settings for tasks +such as modifying metrics, tags, and fields, creating aliases, and configuring +plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. [CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins From 2040e522b21dff40c7490c144999795311dcc62e Mon Sep 17 00:00:00 2001 From: "T.M.J. Guldenmundt" Date: Mon, 8 Dec 2025 17:32:06 +0100 Subject: [PATCH 007/103] feat(common.socket): Add option to specify source IP restrictions (#18044) Co-authored-by: Sven Rebhan <36194019+srebhan@users.noreply.github.com> --- plugins/common/socket/datagram.go | 17 ++++++++++- plugins/common/socket/socket.conf | 6 +++- plugins/common/socket/socket.go | 29 ++++++++++++++++-- plugins/common/socket/stream.go | 34 ++++++++++++++++++++++ plugins/inputs/socket_listener/README.md | 4 +++ plugins/inputs/socket_listener/sample.conf | 4 +++ plugins/inputs/syslog/README.md | 4 +++ plugins/inputs/syslog/sample.conf | 4 +++ 8 files changed, 97 insertions(+), 5 deletions(-) diff --git a/plugins/common/socket/datagram.go b/plugins/common/socket/datagram.go index d3698be9bf1f4..42f87417c1997 100644 --- a/plugins/common/socket/datagram.go +++ b/plugins/common/socket/datagram.go @@ -22,6 +22,7 @@ import ( ) type packetListener struct { + AllowedSources []net.IP Encoding string MaxDecompressionSize int64 SocketMode string @@ -35,9 +36,11 @@ type packetListener struct { parsePool *pond.WorkerPool } -func newPacketListener(encoding string, maxDecompressionSize config.Size, maxWorkers int) *packetListener { +func newPacketListener(encoding string, maxDecompressionSize config.Size, maxWorkers int, allowedSources []net.IP, logger telegraf.Logger) *packetListener { return &packetListener{ + AllowedSources: allowedSources, Encoding: encoding, + Log: logger, MaxDecompressionSize: int64(maxDecompressionSize), parsePool: pond.New(maxWorkers, 0, pond.MinWorkers(maxWorkers/2+1)), } @@ -62,6 +65,18 @@ func (l *packetListener) listenData(onData CallbackData, onError CallbackError) break } + if allowed, err := isSourceAllowed(l.AllowedSources, src); err != nil { + // Drop message if the check failed as security-by-default + if onError != nil { + onError(err) + } + continue + } else if !allowed { + l.Log.Debugf("Received message from blocked IP: %s", src) + // Drop message if it is not from an allowed IP source + continue + } + d := make([]byte, n) copy(d, buf[:n]) l.parsePool.Submit(func() { diff --git a/plugins/common/socket/socket.conf b/plugins/common/socket/socket.conf index cbe7cf66cc904..52d872da44384 100644 --- a/plugins/common/socket/socket.conf +++ b/plugins/common/socket/socket.conf @@ -34,4 +34,8 @@ # content_encoding = "identity" ## Maximum size of decoded packet (in bytes when no unit specified) - # max_decompression_size = "500MB" \ No newline at end of file + # max_decompression_size = "500MB" + + ## List of allowed source IP addresses for incoming packets/messages. + ## If not specified or empty, all sources are allowed. + # allowed_sources = [] \ No newline at end of file diff --git a/plugins/common/socket/socket.go b/plugins/common/socket/socket.go index 4f12a9a0fe53f..c0518c43f87e4 100644 --- a/plugins/common/socket/socket.go +++ b/plugins/common/socket/socket.go @@ -8,6 +8,7 @@ import ( "net" "net/url" "regexp" + "slices" "strings" "time" @@ -36,6 +37,7 @@ type Config struct { ContentEncoding string `toml:"content_encoding"` MaxDecompressionSize config.Size `toml:"max_decompression_size"` MaxParallelParsers int `toml:"max_parallel_parsers"` + AllowedSources []net.IP `toml:"allowed_sources"` common_tls.ServerConfig } @@ -123,19 +125,19 @@ func (s *Socket) Setup() error { } s.listener = l case "udp", "udp4", "udp6": - l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers) + l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers, s.AllowedSources, s.log) if err := l.setupUDP(s.url, s.interfaceName, int(s.ReadBufferSize)); err != nil { return err } s.listener = l case "ip", "ip4", "ip6": - l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers) + l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers, s.AllowedSources, s.log) if err := l.setupIP(s.url); err != nil { return err } s.listener = l case "unixgram": - l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers) + l := newPacketListener(s.ContentEncoding, s.MaxDecompressionSize, s.MaxParallelParsers, s.AllowedSources, s.log) if err := l.setupUnixgram(s.url, s.SocketMode, int(s.ReadBufferSize)); err != nil { return err } @@ -179,3 +181,24 @@ func (s *Socket) Close() { func (s *Socket) Address() net.Addr { return s.listener.address() } + +func isSourceAllowed(allowed []net.IP, addr net.Addr) (bool, error) { + if len(allowed) == 0 { + // No filtering, allow all + return true, nil + } + var src net.IP + switch a := addr.(type) { + case *net.UDPAddr: + src = a.IP + case *net.TCPAddr: + src = a.IP + case *net.IPAddr: + src = a.IP + default: + return false, fmt.Errorf("source address %q (%T) has no IP", addr, addr) + } + return slices.ContainsFunc(allowed, func(allowedIP net.IP) bool { + return src.Equal(allowedIP) + }), nil +} diff --git a/plugins/common/socket/stream.go b/plugins/common/socket/stream.go index 36e642b347f14..a06657f01bcf7 100644 --- a/plugins/common/socket/stream.go +++ b/plugins/common/socket/stream.go @@ -32,6 +32,7 @@ type hasSetReadBuffer interface { } type streamListener struct { + AllowedSources []net.IP Encoding string ReadBufferSize int MaxConnections uint64 @@ -52,6 +53,7 @@ type streamListener struct { func newStreamListener(conf Config, splitter bufio.SplitFunc, log telegraf.Logger) *streamListener { return &streamListener{ + AllowedSources: conf.AllowedSources, ReadBufferSize: int(conf.ReadBufferSize), ReadTimeout: conf.ReadTimeout, KeepAlivePeriod: conf.KeepAlivePeriod, @@ -258,6 +260,21 @@ func (l *streamListener) listenData(onData CallbackData, onError CallbackError) break } + if allowed, err := isSourceAllowed(l.AllowedSources, conn.RemoteAddr()); err != nil { + if onError != nil { + onError(err) + } + if err := conn.Close(); err != nil { + onError(fmt.Errorf("closing connection from %q failed: %w", conn.RemoteAddr(), err)) + } + continue + } else if !allowed { + if err = conn.Close(); err != nil { + onError(fmt.Errorf("closing connection from %q failed: %w", conn.RemoteAddr(), err)) + } + continue + } + if err := l.setupConnection(conn); err != nil && onError != nil { onError(err) continue @@ -307,6 +324,23 @@ func (l *streamListener) listenConnection(onConnection CallbackConnection, onErr } break } + + if allowed, err := isSourceAllowed(l.AllowedSources, conn.RemoteAddr()); err != nil { + if onError != nil { + onError(err) + } + if err = conn.Close(); err != nil { + onError(fmt.Errorf("closing connection from %q failed: %w", conn.RemoteAddr(), err)) + } + continue + } else if !allowed { + if err = conn.Close(); err != nil { + onError(fmt.Errorf("closing connection from %q failed: %w", conn.RemoteAddr(), err)) + } + l.Log.Debugf("Received message from blocked IP: %s", conn.RemoteAddr()) + continue + } + if err := l.setupConnection(conn); err != nil && onError != nil { onError(err) continue diff --git a/plugins/inputs/socket_listener/README.md b/plugins/inputs/socket_listener/README.md index 8283e1cea1309..0255977c1f24a 100644 --- a/plugins/inputs/socket_listener/README.md +++ b/plugins/inputs/socket_listener/README.md @@ -85,6 +85,10 @@ plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. ## Maximum size of decoded packet (in bytes when no unit specified) # max_decompression_size = "500MB" + ## List of allowed source IP addresses for incoming packets/messages. + ## If not specified or empty, all sources are allowed. + # allowed_sources = [] + ## Message splitting strategy and corresponding settings for stream sockets ## (tcp, tcp4, tcp6, unix or unixpacket). The setting is ignored for packet ## listeners such as udp. diff --git a/plugins/inputs/socket_listener/sample.conf b/plugins/inputs/socket_listener/sample.conf index 33162ae811fb2..ee326ed20be00 100644 --- a/plugins/inputs/socket_listener/sample.conf +++ b/plugins/inputs/socket_listener/sample.conf @@ -51,6 +51,10 @@ ## Maximum size of decoded packet (in bytes when no unit specified) # max_decompression_size = "500MB" + ## List of allowed source IP addresses for incoming packets/messages. + ## If not specified or empty, all sources are allowed. + # allowed_sources = [] + ## Message splitting strategy and corresponding settings for stream sockets ## (tcp, tcp4, tcp6, unix or unixpacket). The setting is ignored for packet ## listeners such as udp. diff --git a/plugins/inputs/syslog/README.md b/plugins/inputs/syslog/README.md index a0ac592de49d3..af2fc26a364c5 100644 --- a/plugins/inputs/syslog/README.md +++ b/plugins/inputs/syslog/README.md @@ -90,6 +90,10 @@ plugin ordering. See [CONFIGURATION.md][CONFIGURATION.md] for more details. ## Maximum size of decoded packet (in bytes when no unit specified) # max_decompression_size = "500MB" + ## List of allowed source IP addresses for incoming packets/messages. + ## If not specified or empty, all sources are allowed. + # allowed_sources = [] + ## Framing technique used for messages transport ## Available settings are: ## octet-counting -- see RFC5425#section-4.3.1 and RFC6587#section-3.4.1 diff --git a/plugins/inputs/syslog/sample.conf b/plugins/inputs/syslog/sample.conf index d4910fc8fac37..c60d886e12c92 100644 --- a/plugins/inputs/syslog/sample.conf +++ b/plugins/inputs/syslog/sample.conf @@ -48,6 +48,10 @@ ## Maximum size of decoded packet (in bytes when no unit specified) # max_decompression_size = "500MB" + ## List of allowed source IP addresses for incoming packets/messages. + ## If not specified or empty, all sources are allowed. + # allowed_sources = [] + ## Framing technique used for messages transport ## Available settings are: ## octet-counting -- see RFC5425#section-4.3.1 and RFC6587#section-3.4.1 From 1339aab6c3036b64d35a62014f77e02740ed4b31 Mon Sep 17 00:00:00 2001 From: Jason Stirnaman Date: Mon, 8 Dec 2025 11:32:44 -0500 Subject: [PATCH 008/103] docs(inputs.logql): Clarify sorting and limit example (#18087) --- plugins/inputs/logql/README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/inputs/logql/README.md b/plugins/inputs/logql/README.md index 5d81b94158a10..2026eaecf9b0a 100644 --- a/plugins/inputs/logql/README.md +++ b/plugins/inputs/logql/README.md @@ -139,8 +139,8 @@ returned results. Vector and metric results will produce one or more metrics with the metric named being either `logql` or the `name` specified in the query. -Labels of the results will be kept as tags if they are not internal i.e. they -are not starting and ending with a double underscore (`__