@@ -103,46 +103,54 @@ func removeProtocolPrefixForOTLP(endpoint string) string {
103
103
return pieces [1 ]
104
104
}
105
105
106
- func makeMetricsExporterFactory (cfg * config.AgentConfig ) func () (metric.Exporter , error ) {
106
+ func makeMetricsExporterFactory (cfg * config.AgentConfig ) func (opts ... ServiceOption ) (metric.Exporter , error ) {
107
107
// We are only supporting logging and otlp metric exporters for now. We will add support for prometheus
108
108
// metrics later
109
109
switch cfg .Reporting .MetricReporterType {
110
110
case config .MetricReporterType_METRIC_REPORTER_TYPE_LOGGING :
111
111
// stdout exporter
112
- return func () (metric.Exporter , error ) {
112
+ // currently only ServiceOption is WithHeaders so noop-ing ServiceOption for stdout for now
113
+ return func (_ ... ServiceOption ) (metric.Exporter , error ) {
113
114
// TODO: Define if endpoint could be a filepath to write into a file.
114
115
return stdoutmetric .New ()
115
116
}
116
117
default :
117
- endpoint := cfg .GetReporting ().GetMetricEndpoint ().GetValue ()
118
- if len (endpoint ) == 0 {
119
- endpoint = cfg .GetReporting ().GetEndpoint ().GetValue ()
120
- }
118
+ return func (opts ... ServiceOption ) (metric.Exporter , error ) {
119
+ endpoint := cfg .GetReporting ().GetMetricEndpoint ().GetValue ()
120
+ if len (endpoint ) == 0 {
121
+ endpoint = cfg .GetReporting ().GetEndpoint ().GetValue ()
122
+ }
121
123
122
- opts := []otlpmetricgrpc.Option {
123
- otlpmetricgrpc .WithEndpoint (removeProtocolPrefixForOTLP (endpoint )),
124
- }
124
+ serviceOpts := & ServiceOptions {
125
+ headers : make (map [string ]string ),
126
+ }
127
+ for _ , opt := range opts {
128
+ opt (serviceOpts )
129
+ }
125
130
126
- if ! cfg .GetReporting ().GetSecure ().GetValue () {
127
- opts = append (opts , otlpmetricgrpc .WithInsecure ())
128
- }
131
+ metricOpts := []otlpmetricgrpc.Option {
132
+ otlpmetricgrpc .WithEndpoint (removeProtocolPrefixForOTLP (endpoint )),
133
+ otlpmetricgrpc .WithHeaders (serviceOpts .headers ),
134
+ }
129
135
130
- certFile := cfg .GetReporting ().GetCertFile ().GetValue ()
131
- if len (certFile ) > 0 {
132
- if tlsCredentials , err := credentials .NewClientTLSFromFile (certFile , "" ); err == nil {
133
- opts = append (opts , otlpmetricgrpc .WithTLSCredentials (tlsCredentials ))
134
- } else {
135
- log .Printf ("error while creating tls credentials from cert path %s: %v" , certFile , err )
136
+ if ! cfg .GetReporting ().GetSecure ().GetValue () {
137
+ metricOpts = append (metricOpts , otlpmetricgrpc .WithInsecure ())
136
138
}
137
- }
138
139
139
- if cfg .Reporting .GetEnableGrpcLoadbalancing ().GetValue () {
140
- resolver .SetDefaultScheme ("dns" )
141
- opts = append (opts , otlpmetricgrpc .WithServiceConfig (`{"loadBalancingConfig": [ { "round_robin": {} } ]}` ))
142
- }
140
+ certFile := cfg .GetReporting ().GetCertFile ().GetValue ()
141
+ if len (certFile ) > 0 {
142
+ if tlsCredentials , err := credentials .NewClientTLSFromFile (certFile , "" ); err == nil {
143
+ metricOpts = append (metricOpts , otlpmetricgrpc .WithTLSCredentials (tlsCredentials ))
144
+ } else {
145
+ log .Printf ("error while creating tls credentials from cert path %s: %v" , certFile , err )
146
+ }
147
+ }
143
148
144
- return func () (metric.Exporter , error ) {
145
- return otlpmetricgrpc .New (context .Background (), opts ... )
149
+ if cfg .Reporting .GetEnableGrpcLoadbalancing ().GetValue () {
150
+ resolver .SetDefaultScheme ("dns" )
151
+ metricOpts = append (metricOpts , otlpmetricgrpc .WithServiceConfig (`{"loadBalancingConfig": [ { "round_robin": {} } ]}` ))
152
+ }
153
+ return otlpmetricgrpc .New (context .Background (), metricOpts ... )
146
154
}
147
155
}
148
156
}
@@ -305,7 +313,7 @@ func InitWithSpanProcessorWrapper(cfg *config.AgentConfig, wrapper SpanProcessor
305
313
// and returns a shutdown function to flush data immediately on a termination signal.
306
314
// Also sets opentelemetry internal errorhandler to the provider zap errorhandler
307
315
func InitWithSpanProcessorWrapperAndZap (cfg * config.AgentConfig , wrapper SpanProcessorWrapper ,
308
- versionInfoAttrs []attribute.KeyValue , logger * zap.Logger ) func () {
316
+ versionInfoAttrs []attribute.KeyValue , logger * zap.Logger , opts ... ServiceOption ) func () {
309
317
mu .Lock ()
310
318
defer mu .Unlock ()
311
319
if initialized {
@@ -340,7 +348,7 @@ func InitWithSpanProcessorWrapperAndZap(cfg *config.AgentConfig, wrapper SpanPro
340
348
}
341
349
342
350
// Initialize metrics
343
- metricsShutdownFn := initializeMetrics (cfg , versionInfoAttrs )
351
+ metricsShutdownFn := initializeMetrics (cfg , versionInfoAttrs , opts ... )
344
352
345
353
exporterFactory = makeExporterFactory (cfg )
346
354
configFactory = makeConfigFactory (cfg )
@@ -485,13 +493,13 @@ func RegisterServiceWithSpanProcessorWrapper(key string, resourceAttributes map[
485
493
}), tp , nil
486
494
}
487
495
488
- func initializeMetrics (cfg * config.AgentConfig , versionInfoAttrs []attribute.KeyValue ) func () {
496
+ func initializeMetrics (cfg * config.AgentConfig , versionInfoAttrs []attribute.KeyValue , opts ... ServiceOption ) func () {
489
497
if shouldDisableMetrics (cfg ) {
490
498
return func () {}
491
499
}
492
500
493
501
metricsExporterFactory := makeMetricsExporterFactory (cfg )
494
- metricsExporter , err := metricsExporterFactory ()
502
+ metricsExporter , err := metricsExporterFactory (opts ... )
495
503
if err != nil {
496
504
log .Fatal (err )
497
505
}
0 commit comments