@@ -67,18 +67,12 @@ func buildProcessorsConfig(ctx *common.RenderContext) string {
67
67
return processorsConfig
68
68
}
69
69
70
- func buildExportersConfig (ctx * common. RenderContext ) string {
71
- return fmt . Sprintf ( `exporters:
70
+ func buildExportersConfig () string {
71
+ return `exporters:
72
72
otlp:
73
- endpoint: "api.honeycomb.io:443"
74
- headers:
75
- "x-honeycomb-team": "%s"
76
- "x-honeycomb-dataset": "%s"
77
- otlp/tempo:
78
73
endpoint: "otel-gateway.gitpod.io:4317"
79
74
auth:
80
- authenticator: basicauth/client` ,
81
- ctx .Config .Tracing .HoneycombAPIKey , ctx .Config .Tracing .HoneycombDataset )
75
+ authenticator: basicauth/client`
82
76
}
83
77
84
78
func buildExtensionsConfig (ctx * common.RenderContext ) string {
@@ -103,7 +97,7 @@ func buildServiceConfig(ctx *common.RenderContext) string {
103
97
traces:
104
98
receivers: [jaeger, otlp]
105
99
processors: [%s]
106
- exporters: ["otlp", "otlp/tempo" ]
100
+ exporters: ["otlp"]
107
101
`
108
102
var processors = ""
109
103
@@ -117,7 +111,7 @@ func buildServiceConfig(ctx *common.RenderContext) string {
117
111
func configMapContent (ctx * common.RenderContext ) string {
118
112
var receiversConfig = buildReceiversConfig (ctx )
119
113
var processorsConfig = buildProcessorsConfig (ctx )
120
- var exportersConfig = buildExportersConfig (ctx )
114
+ var exportersConfig = buildExportersConfig ()
121
115
var extensionsConfig = buildExtensionsConfig (ctx )
122
116
var serviceConfig = buildServiceConfig (ctx )
123
117
var config = fmt .Sprintf (`%s
0 commit comments