Edited variable names
This commit is contained in:
parent
42fd21c19d
commit
dd75a883ee
|
@ -1,8 +1,8 @@
|
||||||
# Telegraf plugin: Spark
|
# Telegraf plugin: Spark
|
||||||
|
|
||||||
#### Plugin arguments:
|
#### Plugin arguments:
|
||||||
- **SparkServer** []string: List of spark nodes with the format ["host:port"] (optional)
|
- **spark_servers** []string: List of spark nodes with the format ["host:port"] (optional)
|
||||||
- **YarnServer** string: Address of Yarn resource manager (optional)
|
- **yarn_server** string: Address of Yarn resource manager (optional)
|
||||||
|
|
||||||
#### Description
|
#### Description
|
||||||
|
|
||||||
|
@ -17,8 +17,8 @@ Given a configuration like:
|
||||||
|
|
||||||
```toml
|
```toml
|
||||||
[[inputs.spark]]
|
[[inputs.spark]]
|
||||||
SparkServer = ["127.0.0.1:8778"]
|
spark_servers = ["127.0.0.1:8778"]
|
||||||
YarnServer = "127.0.0.1:8088"
|
yarn_server = "127.0.0.1:8088"
|
||||||
```
|
```
|
||||||
|
|
||||||
The maximum collected measurements will be:
|
The maximum collected measurements will be:
|
||||||
|
|
Loading…
Reference in New Issue