Adding upstream version 1.34.4.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
e393c3af3f
commit
4978089aab
4963 changed files with 677545 additions and 0 deletions
95
plugins/outputs/nats/README.md
Normal file
95
plugins/outputs/nats/README.md
Normal file
|
@ -0,0 +1,95 @@
|
|||
# NATS Output Plugin
|
||||
|
||||
This plugin writes metrics to subjects of a set of [NATS][nats] instances in
|
||||
one of the supported [data formats][data_formats].
|
||||
|
||||
⭐ Telegraf v1.1.0
|
||||
🏷️ messaging
|
||||
💻 all
|
||||
|
||||
[nats]: https://nats.io
|
||||
[data_formats]: /docs/DATA_FORMATS_OUTPUT.md
|
||||
|
||||
## Global configuration options <!-- @/docs/includes/plugin_config.md -->
|
||||
|
||||
In addition to the plugin-specific configuration settings, plugins support
|
||||
additional global and plugin configuration settings. These settings are used to
|
||||
modify metrics, tags, and field or create aliases and configure ordering, etc.
|
||||
See the [CONFIGURATION.md][CONFIGURATION.md] for more details.
|
||||
|
||||
[CONFIGURATION.md]: ../../../docs/CONFIGURATION.md#plugins
|
||||
|
||||
## 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.
|
||||
|
||||
[SECRETSTORE]: ../../../docs/CONFIGURATION.md#secret-store-secrets
|
||||
|
||||
## Configuration
|
||||
|
||||
```toml @sample.conf
|
||||
# Send telegraf measurements to NATS
|
||||
[[outputs.nats]]
|
||||
## URLs of NATS servers
|
||||
servers = ["nats://localhost:4222"]
|
||||
|
||||
## Optional client name
|
||||
# name = ""
|
||||
|
||||
## Optional credentials
|
||||
# username = ""
|
||||
# password = ""
|
||||
|
||||
## Optional NATS 2.0 and NATS NGS compatible user credentials
|
||||
# credentials = "/etc/telegraf/nats.creds"
|
||||
|
||||
## NATS subject for producer messages
|
||||
## For jetstream this is also the subject where messages will be published
|
||||
subject = "telegraf"
|
||||
|
||||
## Use Transport Layer Security
|
||||
# secure = false
|
||||
|
||||
## Optional TLS Config
|
||||
# tls_ca = "/etc/telegraf/ca.pem"
|
||||
# tls_cert = "/etc/telegraf/cert.pem"
|
||||
# tls_key = "/etc/telegraf/key.pem"
|
||||
## Use TLS but skip chain & host verification
|
||||
# insecure_skip_verify = false
|
||||
|
||||
## Data format to output.
|
||||
## Each data format has its own unique set of configuration options, read
|
||||
## more about them here:
|
||||
## https://github.com/influxdata/telegraf/blob/master/docs/DATA_FORMATS_OUTPUT.md
|
||||
data_format = "influx"
|
||||
|
||||
## Jetstream specific configuration. If not nil, it will assume Jetstream context.
|
||||
## Since this is a table, it should be present at the end of the plugin section. Else you can use inline table format.
|
||||
# [outputs.nats.jetstream]
|
||||
## Name of the stream, required when using jetstream. Telegraf will
|
||||
## use the union of the above subject and below the subjects array.
|
||||
# name = ""
|
||||
# subjects = []
|
||||
|
||||
## Full jetstream create stream config, refer: https://docs.nats.io/nats-concepts/jetstream/streams
|
||||
# retention = "limits"
|
||||
# max_consumers = -1
|
||||
# max_msgs_per_subject = -1
|
||||
# max_msgs = -1
|
||||
# max_bytes = -1
|
||||
# max_age = 0
|
||||
# max_msg_size = -1
|
||||
# storage = "file"
|
||||
# discard = "old"
|
||||
# num_replicas = 1
|
||||
# duplicate_window = 120000000000
|
||||
# sealed = false
|
||||
# deny_delete = false
|
||||
# deny_purge = false
|
||||
# allow_rollup_hdrs = false
|
||||
# allow_direct = true
|
||||
# mirror_direct = false
|
||||
```
|
Loading…
Add table
Add a link
Reference in a new issue