1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425
use crate::exporter::agent::{AgentAsyncClientUdp, AgentSyncClientUdp};
use crate::exporter::config::{
build_config_and_process, install_tracer_provider_and_get_tracer, HasRequiredConfig,
TransformationConfig,
};
use crate::exporter::uploader::{AsyncUploader, SyncUploader, Uploader};
use crate::{Error, Exporter, JaegerTraceRuntime};
use opentelemetry::sdk;
use opentelemetry::sdk::trace::{BatchConfig, Config, TracerProvider};
use opentelemetry::trace::TraceError;
use std::borrow::BorrowMut;
use std::sync::Arc;
use std::{env, net};
/// The max size of UDP packet we want to send, synced with jaeger-agent
const UDP_PACKET_MAX_LENGTH: usize = 65_000;
/// The hostname for the Jaeger agent.
/// e.g. "localhost"
const ENV_AGENT_HOST: &str = "OTEL_EXPORTER_JAEGER_AGENT_HOST";
/// The port for the Jaeger agent.
/// e.g. 6832
const ENV_AGENT_PORT: &str = "OTEL_EXPORTER_JAEGER_AGENT_PORT";
/// Default agent endpoint if none is provided
const DEFAULT_AGENT_ENDPOINT: &str = "127.0.0.1:6831";
/// AgentPipeline config and build a exporter targeting a jaeger agent using UDP as transport layer protocol.
///
/// ## UDP packet max length
/// The exporter uses UDP to communicate with the agent. UDP requests may be rejected if it's too long.
/// See [UDP packet size] for details.
///
/// Users can utilise [`with_max_packet_size`] and [`with_auto_split_batch`] to avoid spans loss or UDP requests failure.
///
/// The default `max_packet_size` is `65000`([why 65000]?). If your platform has a smaller limit on UDP packet.
/// You will need to adjust the `max_packet_size` accordingly.
///
/// Set `auto_split_batch` to true will config the exporter to split the batch based on `max_packet_size`
/// automatically. Note that it has a performance overhead as every batch could require multiple requests to export.
///
///
/// For example, OSX UDP packet limit is 9216 by default. You can configure the pipeline as following
/// to avoid UDP packet breaches the limit.
///```no_run
/// # use opentelemetry::trace::TraceError;
/// # fn main() -> Result<(), TraceError>{
/// let tracer = opentelemetry_jaeger::new_agent_pipeline()
/// .with_endpoint("localhost:6831")
/// .with_service_name("my_app")
/// .with_max_packet_size(9_216)
/// .with_auto_split_batch(true)
/// .install_batch(opentelemetry::runtime::Tokio).unwrap();
/// # Ok(())
/// # }
///```
///
/// [`with_auto_split_batch`]: AgentPipeline::with_auto_split_batch
/// [`with_max_packet_size`]: AgentPipeline::with_max_packet_size
/// [UDP packet size]: https://stackoverflow.com/questions/1098897/what-is-the-largest-safe-udp-packet-size-on-the-internet
/// [why 65000]: https://serverfault.com/questions/246508/how-is-the-mtu-is-65535-in-udp-but-ethernet-does-not-allow-frame-size-more-than
///
/// ## Environment variables
/// The following environment variables are available to configure the agent exporter.
///
/// - `OTEL_EXPORTER_JAEGER_AGENT_HOST`, set the host of the agent. If the `OTEL_EXPORTER_JAEGER_AGENT_HOST`
/// is not set, the value will be ignored.
/// - `OTEL_EXPORTER_JAEGER_AGENT_PORT`, set the port of the agent. If the `OTEL_EXPORTER_JAEGER_AGENT_HOST`
/// is not set, the exporter will use 127.0.0.1 as the host.
#[derive(Debug)]
pub struct AgentPipeline {
transformation_config: TransformationConfig,
trace_config: Option<sdk::trace::Config>,
batch_config: Option<sdk::trace::BatchConfig>,
agent_endpoint: Result<Vec<net::SocketAddr>, crate::Error>,
max_packet_size: usize,
auto_split_batch: bool,
}
impl Default for AgentPipeline {
fn default() -> Self {
let mut pipeline = AgentPipeline {
transformation_config: Default::default(),
trace_config: Default::default(),
batch_config: Some(Default::default()),
agent_endpoint: Ok(vec![DEFAULT_AGENT_ENDPOINT.parse().unwrap()]),
max_packet_size: UDP_PACKET_MAX_LENGTH,
auto_split_batch: false,
};
if let (Ok(host), Ok(port)) = (env::var(ENV_AGENT_HOST), env::var(ENV_AGENT_PORT)) {
pipeline = pipeline.with_endpoint(format!("{}:{}", host.trim(), port.trim()));
} else if let Ok(port) = env::var(ENV_AGENT_PORT) {
pipeline = pipeline.with_endpoint(format!("127.0.0.1:{}", port.trim()))
}
pipeline
}
}
// implement the seal trait
impl HasRequiredConfig for AgentPipeline {
fn set_transformation_config<T>(&mut self, f: T)
where
T: FnOnce(&mut TransformationConfig),
{
f(self.transformation_config.borrow_mut())
}
fn set_trace_config(&mut self, config: Config) {
self.trace_config = Some(config)
}
fn set_batch_config(&mut self, config: BatchConfig) {
self.batch_config = Some(config)
}
}
/// Start a new pipeline to configure a exporter that target a jaeger agent.
///
/// See details for each configurations at [`AgentPipeline`]
///
/// [`AgentPipeline`]: crate::config::agent::AgentPipeline
pub fn new_agent_pipeline() -> AgentPipeline {
AgentPipeline::default()
}
impl AgentPipeline {
/// set the endpoint of the agent.
///
/// It usually composed by host ip and the port number.
/// Any valid socket address can be used.
///
/// Default to be `127.0.0.1:6831`.
pub fn with_endpoint<T: net::ToSocketAddrs>(self, agent_endpoint: T) -> Self {
AgentPipeline {
agent_endpoint: agent_endpoint
.to_socket_addrs()
.map(|addrs| addrs.collect())
.map_err(|io_err| crate::Error::ConfigError {
pipeline_name: "agent",
config_name: "endpoint",
reason: io_err.to_string(),
}),
..self
}
}
/// Assign the max packet size in bytes.
///
/// It should be consistent with the limit of platforms. Otherwise, UDP requests maybe reject with
/// error like `thrift agent failed with transport error` or `thrift agent failed with message too long`.
///
/// The exporter will cut off spans if the batch is long. To avoid this, set [auto_split_batch](AgentPipeline::with_auto_split_batch) to `true`
/// to split a batch into multiple UDP packets.
///
/// Default to be `65000`.
pub fn with_max_packet_size(self, max_packet_size: usize) -> Self {
AgentPipeline {
max_packet_size,
..self
}
}
/// Config whether to auto split batches.
///
/// When auto split is set to `true`, the exporter will try to split the
/// batch into smaller ones so that there will be minimal data loss. It
/// will impact the performance.
///
/// Note that if the length of one serialized span is longer than the `max_packet_size`.
/// The exporter will return an error as it cannot export the span. Use jaeger collector
/// instead of jaeger agent may be help in this case as the exporter will use HTTP to communicate
/// with jaeger collector.
///
/// Default to be `false`.
pub fn with_auto_split_batch(mut self, should_auto_split: bool) -> Self {
self.auto_split_batch = should_auto_split;
self
}
/// Set the service name of the application. It generally is the name of application.
/// Critically, Jaeger backend depends on `Span.Process.ServiceName` to identify the service
/// that produced the spans.
///
/// Opentelemetry allows set the service name using multiple methods.
/// This functions takes priority over all other methods.
///
/// If the service name is not set. It will default to be `unknown_service`.
pub fn with_service_name<T: Into<String>>(mut self, service_name: T) -> Self {
self.set_transformation_config(|mut config| {
config.service_name = Some(service_name.into());
});
self
}
/// Config whether to export information of instrumentation library.
///
/// It's required to [report instrumentation library as span tags].
/// However it does have a overhead on performance, performance sensitive applications can
/// use this function to opt out reporting instrumentation library.
///
/// Default to be `true`.
///
/// [report instrumentation library as span tags]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk_exporters/non-otlp.md#instrumentationscope
pub fn with_instrumentation_library_tags(mut self, should_export: bool) -> Self {
self.set_transformation_config(|mut config| {
config.export_instrument_library = should_export;
});
self
}
/// Assign the opentelemetry SDK configurations for the exporter pipeline.
///
/// For mapping between opentelemetry configurations and Jaeger spans. Please refer [the spec].
///
/// [the spec]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/trace/sdk_exporters/jaeger.md#mappings
/// # Examples
/// Set service name via resource.
/// ```rust
/// use opentelemetry::{sdk::{self, Resource}, KeyValue};
///
/// let pipeline = opentelemetry_jaeger::new_agent_pipeline()
/// .with_trace_config(
/// sdk::trace::Config::default()
/// .with_resource(Resource::new(vec![KeyValue::new("service.name", "my-service")]))
/// );
///
/// ```
pub fn with_trace_config(mut self, config: sdk::trace::Config) -> Self {
self.set_trace_config(config);
self
}
/// Assign the batch span processor for the exporter pipeline.
///
/// If a simple span processor is used by [`install_simple`][AgentPipeline::install_simple]
/// or [`build_simple`][AgentPipeline::install_simple], then this config will not be ignored.
///
/// # Examples
/// Set max queue size.
/// ```rust
/// use opentelemetry::sdk::trace::BatchConfig;
///
/// let pipeline = opentelemetry_jaeger::new_agent_pipeline()
/// .with_batch_processor_config(
/// BatchConfig::default().with_max_queue_size(200)
/// );
///
/// ```
pub fn with_batch_processor_config(mut self, config: BatchConfig) -> Self {
self.set_batch_config(config);
self
}
/// Build a `TracerProvider` using a blocking exporter and configurations from the pipeline.
///
/// The exporter will send each span to the agent upon the span ends.
pub fn build_simple(mut self) -> Result<TracerProvider, TraceError> {
let mut builder = sdk::trace::TracerProvider::builder();
let (config, process) = build_config_and_process(
self.trace_config.take(),
self.transformation_config.service_name.take(),
);
let exporter = Exporter::new(
process.into(),
self.transformation_config.export_instrument_library,
self.build_sync_agent_uploader()?,
);
builder = builder.with_simple_exporter(exporter);
builder = builder.with_config(config);
Ok(builder.build())
}
/// Build a `TracerProvider` using a async exporter and configurations from the pipeline.
///
/// The exporter will collect spans in a batch and send them to the agent.
///
/// It's possible to lose spans up to a batch when the application shuts down. So users should
/// use [`shut_down_tracer_provider`] to block the shut down process until
/// all remaining spans have been sent.
///
/// Commonly used runtime are provided via `rt-tokio`, `rt-tokio-current-thread`, `rt-async-std`
/// features.
///
/// [`shut_down_tracer_provider`]: opentelemetry::global::shutdown_tracer_provider
pub fn build_batch<R>(mut self, runtime: R) -> Result<TracerProvider, TraceError>
where
R: JaegerTraceRuntime,
{
let mut builder = sdk::trace::TracerProvider::builder();
let export_instrument_library = self.transformation_config.export_instrument_library;
// build sdk trace config and jaeger process.
// some attributes like service name has attributes like service name
let (config, process) = build_config_and_process(
self.trace_config.take(),
self.transformation_config.service_name.take(),
);
let batch_config = self.batch_config.take();
let uploader = self.build_async_agent_uploader(runtime.clone())?;
let exporter = Exporter::new(process.into(), export_instrument_library, uploader);
let batch_processor = sdk::trace::BatchSpanProcessor::builder(exporter, runtime)
.with_batch_config(batch_config.unwrap_or_default())
.build();
builder = builder.with_span_processor(batch_processor);
builder = builder.with_config(config);
Ok(builder.build())
}
/// Similar to [`build_simple`][AgentPipeline::build_simple] but also returns a tracer from the
/// tracer provider.
///
/// The tracer name is `opentelemetry-jaeger`. The tracer version will be the version of this crate.
pub fn install_simple(self) -> Result<sdk::trace::Tracer, TraceError> {
let tracer_provider = self.build_simple()?;
install_tracer_provider_and_get_tracer(tracer_provider)
}
/// Similar to [`build_batch`][AgentPipeline::build_batch] but also returns a tracer from the
/// tracer provider.
///
/// The tracer name is `opentelemetry-jaeger`. The tracer version will be the version of this crate.
pub fn install_batch<R>(self, runtime: R) -> Result<sdk::trace::Tracer, TraceError>
where
R: JaegerTraceRuntime,
{
let tracer_provider = self.build_batch(runtime)?;
install_tracer_provider_and_get_tracer(tracer_provider)
}
/// Build an jaeger exporter targeting a jaeger agent and running on the async runtime.
pub fn build_async_agent_exporter<R>(
mut self,
runtime: R,
) -> Result<crate::Exporter, TraceError>
where
R: JaegerTraceRuntime,
{
let export_instrument_library = self.transformation_config.export_instrument_library;
// build sdk trace config and jaeger process.
// some attributes like service name has attributes like service name
let (_, process) = build_config_and_process(
self.trace_config.take(),
self.transformation_config.service_name.take(),
);
let uploader = self.build_async_agent_uploader(runtime)?;
Ok(Exporter::new(
process.into(),
export_instrument_library,
uploader,
))
}
/// Build an jaeger exporter targeting a jaeger agent and running on the sync runtime.
pub fn build_sync_agent_exporter(mut self) -> Result<crate::Exporter, TraceError> {
let (_, process) = build_config_and_process(
self.trace_config.take(),
self.transformation_config.service_name.take(),
);
Ok(Exporter::new(
process.into(),
self.transformation_config.export_instrument_library,
self.build_sync_agent_uploader()?,
))
}
fn build_async_agent_uploader<R>(self, runtime: R) -> Result<Arc<dyn Uploader>, TraceError>
where
R: JaegerTraceRuntime,
{
let agent = AgentAsyncClientUdp::new(
self.agent_endpoint?.as_slice(),
self.max_packet_size,
runtime,
self.auto_split_batch,
)
.map_err::<Error, _>(Into::into)?;
Ok(Arc::new(AsyncUploader::Agent(futures::lock::Mutex::new(
agent,
))))
}
fn build_sync_agent_uploader(self) -> Result<Arc<dyn Uploader>, TraceError> {
let agent = AgentSyncClientUdp::new(
self.agent_endpoint?.as_slice(),
self.max_packet_size,
self.auto_split_batch,
)
.map_err::<Error, _>(Into::into)?;
Ok(Arc::new(SyncUploader::Agent(std::sync::Mutex::new(agent))))
}
}
#[cfg(test)]
mod tests {
use crate::config::agent::AgentPipeline;
#[test]
fn set_socket_address() {
let test_cases = vec![
// invalid inputs
("invalid_endpoint", false),
("0.0.0.0.0:9123", false),
("127.0.0.1", false), // port is needed
// valid inputs
("[::0]:9123", true),
("127.0.0.1:1001", true),
];
for (socket_str, is_ok) in test_cases.into_iter() {
let pipeline = AgentPipeline::default().with_endpoint(socket_str);
assert_eq!(
pipeline.agent_endpoint.is_ok(),
is_ok,
"endpoint string {}",
socket_str
);
}
}
}