blob: 9a088a521761162cc040b943e402ae29fd520cc8 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You 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 (
"github.com/apache/camel-k/addons/tracing/discovery"
v1 "github.com/apache/camel-k/pkg/apis/camel/v1"
"github.com/apache/camel-k/pkg/trait"
"github.com/apache/camel-k/pkg/util"
)
// The Tracing trait can be used to automatically publish tracing information to an
// OpenTracing compatible collector.
//
// The trait is able to automatically discover the tracing endpoint available in the namespace (supports **Jaeger**).
//
// The Tracing trait is disabled by default.
//
// +camel-k:trait=tracing
type tracingTrait struct {
trait.BaseTrait `property:",squash"`
// Enables automatic configuration of the trait, including automatic discovery of the tracing endpoint.
Auto *bool `property:"auto"`
// The name of the service that publishes tracing data (defaults to the integration name)
ServiceName string `property:"service-name"`
// The target endpoint of the OpenTracing service (automatically discovered by default)
Endpoint string `property:"endpoint"`
// The sampler type (default "const")
SamplerType *string `property:"sampler-type"`
// The sampler specific param (default "1")
SamplerParam *string `property:"sampler-param"`
}
const (
propEnabled = "propEnabled"
propEndpoint = "propEndpoint"
propServiceName = "propServiceName"
propSamplerType = "propSamplerType"
propSamplerParam = "propSamplerParam"
)
var (
tracingProperties = map[v1.RuntimeProvider]map[string]string{
v1.RuntimeProviderMain: {
propEnabled: "camel.k.customizer.tracing.enabled",
propEndpoint: "camel.k.customizer.tracing.reporter.sender.endpoint",
propServiceName: "camel.k.customizer.tracing.service-name",
propSamplerType: "camel.k.customizer.tracing.sampler.type",
propSamplerParam: "camel.k.customizer.tracing.sampler.param",
},
v1.RuntimeProviderQuarkus: {
propEndpoint: "quarkus.jaeger.endpoint",
propServiceName: "quarkus.jaeger.service-name",
propSamplerType: "quarkus.jaeger.sampler-type",
propSamplerParam: "quarkus.jaeger.sampler-param",
},
}
defaultSamplerType = "const"
defaultSamplerParam = "1"
)
// NewTracingTrait --
func NewTracingTrait() trait.Trait {
return &tracingTrait{
BaseTrait: trait.NewBaseTrait("tracing", trait.TraitOrderBeforeControllerCreation),
}
}
func (t *tracingTrait) Configure(e *trait.Environment) (bool, error) {
if t.Enabled == nil || !*t.Enabled {
return false, nil
}
if t.Auto == nil || *t.Auto {
if t.Endpoint == "" {
for _, locator := range discovery.TracingLocators {
endpoint, err := locator.FindEndpoint(t.Client, t.L, e)
if err != nil {
return false, err
}
if endpoint != "" {
t.L.Infof("Using tracing endpoint: %s", endpoint)
t.Endpoint = endpoint
break
}
}
}
if t.ServiceName == "" {
t.ServiceName = e.Integration.Name
}
if t.SamplerType == nil {
t.SamplerType = &defaultSamplerType
}
if t.SamplerParam == nil {
t.SamplerParam = &defaultSamplerParam
}
}
return true, nil
}
func (t *tracingTrait) Apply(e *trait.Environment) error {
util.StringSliceUniqueAdd(&e.Integration.Status.Capabilities, v1.CapabilityTracing)
if e.CamelCatalog != nil {
provider := e.CamelCatalog.CamelCatalogSpec.Runtime.Provider
properties := tracingProperties[provider]
if appPropEnabled := properties[propEnabled]; appPropEnabled != "" {
e.ApplicationProperties[appPropEnabled] = "true"
}
if appPropEndpoint := properties[propEndpoint]; appPropEndpoint != "" && t.Endpoint != "" {
e.ApplicationProperties[appPropEndpoint] = t.Endpoint
}
if appPropServiceName := properties[propServiceName]; appPropServiceName != "" && t.ServiceName != "" {
e.ApplicationProperties[appPropServiceName] = t.ServiceName
}
if appPropSamplerType := properties[propSamplerType]; appPropSamplerType != "" && t.SamplerType != nil {
e.ApplicationProperties[appPropSamplerType] = *t.SamplerType
}
if appPropSamplerParam := properties[propSamplerParam]; appPropSamplerParam != "" && t.SamplerParam != nil {
e.ApplicationProperties[appPropSamplerParam] = *t.SamplerParam
}
}
return nil
}