pkg/tracing/setup.go

69 lines
2.5 KiB
Go

/*
Copyright 2020 The Knative Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package tracing
import (
"fmt"
"go.uber.org/zap"
"knative.dev/pkg/configmap"
"knative.dev/pkg/tracing/config"
)
// SetupStaticPublishing sets up trace publishing for the process. Note that other
// pieces still need to generate the traces, this just ensures that if generated, they are collected
// appropriately. This is normally done by using tracing.HTTPSpanMiddleware as a middleware HTTP
// handler. The configuration will not be dynamically updated.
func SetupStaticPublishing(logger *zap.SugaredLogger, serviceName string, cfg *config.Config) error {
oct := NewOpenCensusTracer(WithExporter(serviceName, logger))
if err := oct.ApplyConfig(cfg); err != nil {
return fmt.Errorf("unable to set OpenCensusTracing config: %w", err)
}
return nil
}
// SetupDynamicPublishing sets up trace publishing for the process, by watching a
// ConfigMap for the configuration. Note that other pieces still need to generate the traces, this
// just ensures that if generated, they are collected appropriately. This is normally done by using
// tracing.HTTPSpanMiddleware as a middleware HTTP handler. The configuration will be dynamically
// updated when the ConfigMap is updated.
func SetupDynamicPublishing(logger *zap.SugaredLogger, configMapWatcher configmap.Watcher, serviceName, tracingConfigName string) error {
oct := NewOpenCensusTracer(WithExporter(serviceName, logger))
tracerUpdater := func(name string, value interface{}) {
if name == tracingConfigName {
cfg := value.(*config.Config)
logger.Debugw("Updating tracing config", zap.Any("cfg", cfg))
if err := oct.ApplyConfig(cfg); err != nil {
logger.Errorw("Unable to apply open census tracer config", zap.Error(err))
}
}
}
// Set up our config store.
configStore := configmap.NewUntypedStore(
"config-tracing-store",
logger,
configmap.Constructors{
"config-tracing": config.NewTracingConfigFromConfigMap,
},
tracerUpdater)
configStore.WatchConfigs(configMapWatcher)
return nil
}