forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Daemonset => Gateway Setup (#4376)
* Add Daemonset => Gateway Setup * increase limits * reduce replicas to 3 * reduce batch size to avoid 413 * decrease send_batch_max_size * disable logs staging * reset mem * increase batch size * reincrease to 1000 for testing * reset send_batch_size * remove unnecessary config
- Loading branch information
Showing
8 changed files
with
72 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
mode: deployment | ||
replicaCount: 3 | ||
nodeSelector: | ||
alpha.eksctl.io/nodegroup-name: ng-6 | ||
clusterRole: | ||
name: "opentelemetry-collector-ds-gateway" | ||
clusterRoleBinding: | ||
name: opentelemetry-collector-ds-gateway | ||
presets: | ||
logsCollection: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
mode: deployment | ||
replicaCount: 3 | ||
nodeSelector: | ||
alpha.eksctl.io/nodegroup-name: ng-5 | ||
clusterRole: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
nodeSelector: | ||
alpha.eksctl.io/nodegroup-name: ng-6 | ||
clusterRole: | ||
name: "opentelemetry-collector-ds" | ||
clusterRoleBinding: | ||
name: opentelemetry-collector-ds | ||
config: | ||
exporters: | ||
otlp: | ||
endpoint: opentelemetry-collector-gateway:4317 | ||
tls: | ||
insecure: true | ||
service: | ||
pipelines: | ||
metrics: | ||
exporters: [otlp] | ||
traces: | ||
exporters: [otlp] | ||
logs: | ||
exporters: [otlp] | ||
resources: | ||
limits: | ||
# necessary to decrease memory from 2 to 1 Gi in order to | ||
# have sufficient memory to schedule all pods on Nodes. | ||
memory: 1Gi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
nodeSelector: | ||
alpha.eksctl.io/nodegroup-name: ng-3 | ||
presets: | ||
logsCollection: | ||
enabled: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters