use std::sync::LazyLock;
use http::Uri;
use opentelemetry_sdk::trace::BatchSpanProcessor;
use opentelemetry_semantic_conventions::resource::SERVICE_NAME;
use schemars::JsonSchema;
use serde::Deserialize;
use tower::BoxError;
use crate::plugins::telemetry::config::Conf;
use crate::plugins::telemetry::config::GenericWith;
use crate::plugins::telemetry::endpoint::UriEndpoint;
use crate::plugins::telemetry::error_handler::NamedSpanExporter;
use crate::plugins::telemetry::otel::named_runtime_channel::NamedTokioRuntime;
use crate::plugins::telemetry::reload::tracing::TracingBuilder;
use crate::plugins::telemetry::reload::tracing::TracingConfigurator;
use crate::plugins::telemetry::tracing::BatchProcessorConfig;
use crate::plugins::telemetry::tracing::SpanProcessorExt;
static DEFAULT_ENDPOINT: LazyLock<Uri> =
LazyLock::new(|| Uri::from_static("http://127.0.0.1:9411/api/v2/spans"));
#[derive(Debug, Clone, Deserialize, JsonSchema, Default, PartialEq)]
#[serde(deny_unknown_fields)]
#[schemars(rename = "ZipkinConfig")]
pub(crate) struct Config {
pub(crate) enabled: bool,
#[serde(default)]
pub(crate) endpoint: UriEndpoint,
#[serde(default)]
pub(crate) batch_processor: BatchProcessorConfig,
}
impl TracingConfigurator for Config {
fn config(conf: &Conf) -> &Self {
&conf.exporters.tracing.zipkin
}
fn is_enabled(&self) -> bool {
self.enabled
}
fn configure(&self, builder: &mut TracingBuilder) -> Result<(), BoxError> {
tracing::info!("configuring Zipkin tracing: {}", self.batch_processor);
let common: opentelemetry_sdk::trace::Config = builder.tracing_common().into();
let endpoint = &self.endpoint.to_full_uri(&DEFAULT_ENDPOINT);
let exporter = opentelemetry_zipkin::new_pipeline()
.with_collector_endpoint(endpoint.to_string())
.with(
&common.resource.get(SERVICE_NAME.into()),
|builder, service_name| {
builder.with_service_name(service_name.as_str())
},
)
.with_trace_config(common)
.init_exporter()?;
let named_exporter = NamedSpanExporter::new(exporter, "zipkin");
builder.with_span_processor(
BatchSpanProcessor::builder(named_exporter, NamedTokioRuntime::new("zipkin-tracing"))
.with_batch_config(self.batch_processor.clone().into())
.build()
.filtered(),
);
Ok(())
}
}