File tree 1 file changed +5
-3
lines changed
content/en/docs/collector/deployment/gateway
1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ Let's have a look at such a case where we are using the load-balancing exporter:
40
40
41
41
### NGINX as an "out-of-the-box" load balancer
42
42
43
- Assuming you have two collectors (` collector1 ` and ` collector2 ` ) configured and
44
- you want to load balance traffic across them using NGINX, you can use the
45
- following configuration:
43
+ Assuming you have three collectors (` collector1 ` , ` collector2 ` , and
44
+ ` collector3 ` ) configured and you want to load balance traffic across them using
45
+ NGINX, you can use the following configuration:
46
46
47
47
``` nginx
48
48
server {
@@ -77,11 +77,13 @@ server {
77
77
upstream collector4317 {
78
78
server collector1:4317;
79
79
server collector2:4317;
80
+ server collector3:4317;
80
81
}
81
82
82
83
upstream collector4318 {
83
84
server collector1:4318;
84
85
server collector2:4318;
86
+ server collector3:4318;
85
87
}
86
88
```
87
89
You can’t perform that action at this time.
0 commit comments