Skip to content
Snippets Groups Projects
Commit 7b550c11 authored by Kostas Botsas's avatar Kostas Botsas Committed by Cameron Sparr
Browse files

Documentation for load balancing on graphite output servers (#1469)

* Added documentation for load balancing on graphite output servers

* clarifications

* updates1

* updates2

* updates3
parent bb4f18ca
No related branches found
No related tags found
No related merge requests found
...@@ -197,6 +197,8 @@ ...@@ -197,6 +197,8 @@
# # Configuration for Graphite server to send metrics to # # Configuration for Graphite server to send metrics to
# [[outputs.graphite]] # [[outputs.graphite]]
# ## TCP endpoint for your graphite instance. # ## TCP endpoint for your graphite instance.
# ## If multiple endpoints are configured, the output will be load balanced.
# ## Only one of the endpoints will be written to with each iteration.
# servers = ["localhost:2003"] # servers = ["localhost:2003"]
# ## Prefix metrics name # ## Prefix metrics name
# prefix = "" # prefix = ""
......
...@@ -9,6 +9,8 @@ via raw TCP. ...@@ -9,6 +9,8 @@ via raw TCP.
# Configuration for Graphite server to send metrics to # Configuration for Graphite server to send metrics to
[[outputs.graphite]] [[outputs.graphite]]
## TCP endpoint for your graphite instance. ## TCP endpoint for your graphite instance.
## If multiple endpoints are configured, the output will be load balanced.
## Only one of the endpoints will be written to with each iteration.
servers = ["localhost:2003"] servers = ["localhost:2003"]
## Prefix metrics name ## Prefix metrics name
prefix = "" prefix = ""
......
...@@ -25,6 +25,8 @@ type Graphite struct { ...@@ -25,6 +25,8 @@ type Graphite struct {
var sampleConfig = ` var sampleConfig = `
## TCP endpoint for your graphite instance. ## TCP endpoint for your graphite instance.
## If multiple endpoints are configured, output will be load balanced.
## Only one of the endpoints will be written to with each iteration.
servers = ["localhost:2003"] servers = ["localhost:2003"]
## Prefix metrics name ## Prefix metrics name
prefix = "" prefix = ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment