otlp_stdout_span_exporter/lib.rs
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 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551
//! A span exporter that writes OpenTelemetry spans to stdout in OTLP format.
//!
//! This crate provides an implementation of OpenTelemetry's [`SpanExporter`] that writes spans to stdout
//! in OTLP (OpenTelemetry Protocol) format. It is particularly useful in serverless environments like
//! AWS Lambda where writing to stdout is a common pattern for exporting telemetry data.
//!
//! # Features
//!
//! - Uses OTLP Protobuf serialization for efficient encoding
//! - Applies GZIP compression with configurable levels
//! - Detects service name from environment variables
//! - Supports custom headers via environment variables
//! - Consistent JSON output format
//!
//! # Example
//!
//! ```rust,no_run
//! use opentelemetry::{trace::{Tracer, TracerProvider}, KeyValue};
//! use opentelemetry_sdk::{trace::TracerProvider as SdkTracerProvider, Resource, runtime};
//! use otlp_stdout_span_exporter::OtlpStdoutSpanExporter;
//!
//! #[tokio::main]
//! async fn main() {
//! // Create a new stdout exporter
//! let exporter = OtlpStdoutSpanExporter::new();
//!
//! // Create a new tracer provider with batch export
//! let provider = SdkTracerProvider::builder()
//! .with_batch_exporter(exporter, runtime::Tokio)
//! .with_resource(Resource::new(vec![KeyValue::new("service.name", "my-service")]))
//! .build();
//!
//! // Create a tracer
//! let tracer = provider.tracer("my-service");
//!
//! // Create spans
//! tracer.in_span("parent-operation", |_cx| {
//! println!("Doing work...");
//!
//! // Create nested spans
//! tracer.in_span("child-operation", |_cx| {
//! println!("Doing more work...");
//! });
//! });
//!
//! // Shut down the provider
//! let _ = provider.shutdown();
//! }
//! ```
//!
//! # Environment Variables
//!
//! The exporter respects the following environment variables:
//!
//! - `OTEL_SERVICE_NAME`: Service name to use in output
//! - `AWS_LAMBDA_FUNCTION_NAME`: Fallback service name (if `OTEL_SERVICE_NAME` not set)
//! - `OTEL_EXPORTER_OTLP_HEADERS`: Global headers for OTLP export
//! - `OTEL_EXPORTER_OTLP_TRACES_HEADERS`: Trace-specific headers (takes precedence)
//!
//! # Output Format
//!
//! The exporter writes each batch of spans as a JSON object to stdout:
//!
//! ```json
//! {
//! "__otel_otlp_stdout": "0.1.0",
//! "source": "my-service",
//! "endpoint": "http://localhost:4318/v1/traces",
//! "method": "POST",
//! "content-type": "application/x-protobuf",
//! "content-encoding": "gzip",
//! "headers": {
//! "api-key": "secret123",
//! "custom-header": "value"
//! },
//! "payload": "<base64-encoded-gzipped-protobuf>",
//! "base64": true
//! }
//! ```
use async_trait::async_trait;
use base64::{engine::general_purpose::STANDARD as base64_engine, Engine};
use flate2::{write::GzEncoder, Compression};
use futures_util::future::BoxFuture;
use opentelemetry::trace::TraceError;
use opentelemetry_proto::tonic::collector::trace::v1::ExportTraceServiceRequest;
use opentelemetry_proto::transform::common::tonic::ResourceAttributesWithSchema;
use opentelemetry_sdk::{
export::trace::{ExportResult, SpanData, SpanExporter},
Resource,
};
use prost::Message;
use serde::Serialize;
#[cfg(test)]
use std::sync::Mutex;
use std::{collections::HashMap, env, io::Write, sync::Arc};
const VERSION: &str = env!("CARGO_PKG_VERSION");
const DEFAULT_ENDPOINT: &str = "http://localhost:4318/v1/traces";
/// Trait for output handling
///
/// This trait defines the interface for writing output lines. It is implemented
/// by both the standard output handler and test output handler.
trait Output: Send + Sync + std::fmt::Debug {
/// Writes a single line of output
///
/// # Arguments
///
/// * `line` - The line to write
///
/// # Returns
///
/// Returns `Ok(())` if the write was successful, or a `TraceError` if it failed
fn write_line(&self, line: &str) -> Result<(), TraceError>;
}
/// Standard output implementation that writes to stdout
#[derive(Debug, Default)]
struct StdOutput;
impl Output for StdOutput {
fn write_line(&self, line: &str) -> Result<(), TraceError> {
println!("{}", line);
Ok(())
}
}
/// Test output implementation that captures to a buffer
#[cfg(test)]
#[derive(Debug, Default)]
struct TestOutput {
buffer: Arc<Mutex<Vec<String>>>,
}
#[cfg(test)]
impl TestOutput {
fn new() -> Self {
Self {
buffer: Arc::new(Mutex::new(Vec::new())),
}
}
fn get_output(&self) -> Vec<String> {
self.buffer.lock().unwrap().clone()
}
}
#[cfg(test)]
impl Output for TestOutput {
fn write_line(&self, line: &str) -> Result<(), TraceError> {
self.buffer.lock().unwrap().push(line.to_string());
Ok(())
}
}
/// Output format for the OTLP stdout exporter
///
/// This struct defines the JSON structure that will be written to stdout
/// for each batch of spans.
#[derive(Debug, Serialize)]
struct ExporterOutput<'a> {
/// Version identifier for the output format
#[serde(rename = "__otel_otlp_stdout")]
version: &'a str,
/// Service name that generated the spans
source: String,
/// OTLP endpoint (always http://localhost:4318/v1/traces)
endpoint: &'a str,
/// HTTP method (always POST)
method: &'a str,
/// Content type (always application/x-protobuf)
#[serde(rename = "content-type")]
content_type: &'a str,
/// Content encoding (always gzip)
#[serde(rename = "content-encoding")]
content_encoding: &'a str,
/// Custom headers from environment variables
#[serde(skip_serializing_if = "HashMap::is_empty")]
headers: HashMap<String, String>,
/// Base64-encoded, gzipped, protobuf-serialized span data
payload: String,
/// Whether the payload is base64 encoded (always true)
base64: bool,
}
/// A span exporter that writes spans to stdout in OTLP format
///
/// This exporter implements the OpenTelemetry [`SpanExporter`] trait and writes spans
/// to stdout in OTLP format with Protobuf serialization and GZIP compression.
///
/// # Features
///
/// - Configurable GZIP compression level (0-9)
/// - Environment variable support for service name and headers
/// - Efficient batching of spans
/// - Base64 encoding of compressed data
///
/// # Example
///
/// ```rust,no_run
/// use opentelemetry_sdk::runtime;
/// use otlp_stdout_span_exporter::OtlpStdoutSpanExporter;
///
/// // Create an exporter with maximum compression
/// let exporter = OtlpStdoutSpanExporter::with_gzip_level(9);
/// ```
#[derive(Debug)]
pub struct OtlpStdoutSpanExporter {
/// GZIP compression level (0-9)
gzip_level: u8,
/// Optional resource to be included with all spans
resource: Option<Resource>,
/// Output implementation (stdout or test buffer)
output: Arc<dyn Output>,
}
impl Default for OtlpStdoutSpanExporter {
fn default() -> Self {
Self::new()
}
}
impl OtlpStdoutSpanExporter {
/// Creates a new exporter with default configuration (GZIP level 6)
///
/// This is the recommended way to create a new exporter unless you have
/// specific compression requirements.
///
/// # Example
///
/// ```rust
/// use otlp_stdout_span_exporter::OtlpStdoutSpanExporter;
///
/// let exporter = OtlpStdoutSpanExporter::new();
/// ```
pub fn new() -> Self {
Self {
gzip_level: 6,
resource: None,
output: Arc::new(StdOutput),
}
}
/// Creates a new exporter with custom GZIP compression level
///
/// # Arguments
///
/// * `gzip_level` - GZIP compression level (0-9, where 0 is no compression and 9 is maximum compression)
///
/// # Example
///
/// ```rust
/// use otlp_stdout_span_exporter::OtlpStdoutSpanExporter;
///
/// // Create an exporter with maximum compression
/// let exporter = OtlpStdoutSpanExporter::with_gzip_level(9);
/// ```
pub fn with_gzip_level(gzip_level: u8) -> Self {
Self {
gzip_level,
resource: None,
output: Arc::new(StdOutput),
}
}
#[cfg(test)]
fn with_test_output() -> (Self, Arc<TestOutput>) {
let output = Arc::new(TestOutput::new());
let exporter = Self {
gzip_level: 6,
resource: None,
output: output.clone() as Arc<dyn Output>,
};
(exporter, output)
}
/// Parse headers from environment variables
///
/// This function reads headers from both global and trace-specific
/// environment variables, with trace-specific headers taking precedence.
fn parse_headers() -> HashMap<String, String> {
let mut headers = HashMap::new();
// Parse global headers first
if let Ok(global_headers) = env::var("OTEL_EXPORTER_OTLP_HEADERS") {
Self::parse_header_string(&global_headers, &mut headers);
}
// Parse trace-specific headers (these take precedence)
if let Ok(trace_headers) = env::var("OTEL_EXPORTER_OTLP_TRACES_HEADERS") {
Self::parse_header_string(&trace_headers, &mut headers);
}
headers
}
/// Parse a header string in the format key1=value1,key2=value2
///
/// # Arguments
///
/// * `header_str` - The header string to parse
/// * `headers` - The map to store parsed headers in
fn parse_header_string(header_str: &str, headers: &mut HashMap<String, String>) {
for pair in header_str.split(',') {
if let Some((key, value)) = pair.split_once('=') {
let key = key.trim().to_lowercase();
// Skip content-type and content-encoding as they are fixed
if key != "content-type" && key != "content-encoding" {
headers.insert(key, value.trim().to_string());
}
}
}
}
/// Get the service name from environment variables
///
/// This function tries to get the service name from:
/// 1. OTEL_SERVICE_NAME
/// 2. AWS_LAMBDA_FUNCTION_NAME
/// 3. Falls back to "unknown-service" if neither is set
fn get_service_name() -> String {
env::var("OTEL_SERVICE_NAME")
.or_else(|_| env::var("AWS_LAMBDA_FUNCTION_NAME"))
.unwrap_or_else(|_| "unknown-service".to_string())
}
}
#[async_trait]
impl SpanExporter for OtlpStdoutSpanExporter {
/// Export spans to stdout in OTLP format
///
/// This function:
/// 1. Converts spans to OTLP format
/// 2. Serializes them to protobuf
/// 3. Compresses the data with GZIP
/// 4. Base64 encodes the result
/// 5. Writes a JSON object to stdout
///
/// # Arguments
///
/// * `batch` - A vector of spans to export
///
/// # Returns
///
/// Returns a resolved future with `Ok(())` if the export was successful, or a `TraceError` if it failed
fn export(&mut self, batch: Vec<SpanData>) -> BoxFuture<'static, ExportResult> {
// Do all work synchronously
let result = (|| {
// Convert resource and spans to OTLP format
let resource = self.resource.clone().unwrap_or_else(Resource::empty);
let resource_attr: ResourceAttributesWithSchema = (&resource).into();
let resource_spans =
opentelemetry_proto::transform::trace::tonic::group_spans_by_resource_and_scope(
batch,
&resource_attr,
);
let request = ExportTraceServiceRequest { resource_spans };
// Serialize to protobuf
let proto_bytes = request.encode_to_vec();
// Compress with GZIP
let mut encoder = GzEncoder::new(Vec::new(), Compression::new(self.gzip_level as u32));
encoder
.write_all(&proto_bytes)
.map_err(|e| TraceError::Other(Box::new(e)))?;
let compressed_bytes = encoder
.finish()
.map_err(|e| TraceError::Other(Box::new(e)))?;
// Base64 encode
let payload = base64_engine.encode(compressed_bytes);
// Prepare the output
let output_data = ExporterOutput {
version: VERSION,
source: Self::get_service_name(),
endpoint: DEFAULT_ENDPOINT,
method: "POST",
content_type: "application/x-protobuf",
content_encoding: "gzip",
headers: Self::parse_headers(),
payload,
base64: true,
};
// Write using the output implementation
self.output.write_line(
&serde_json::to_string(&output_data).map_err(|e| TraceError::Other(Box::new(e)))?,
)?;
Ok(())
})();
// Return a resolved future with the result
Box::pin(std::future::ready(result))
}
/// Shuts down the exporter
///
/// This is a no-op for stdout export as no cleanup is needed.
fn shutdown(&mut self) {
// No special shutdown needed for stdout
}
/// Sets the resource for this exporter.
///
/// This method stores a clone of the provided resource to be used when exporting spans.
/// The resource represents the entity producing telemetry and will be included in the
/// exported trace data.
///
/// # Arguments
///
/// * `resource` - The resource to associate with this exporter
fn set_resource(&mut self, resource: &Resource) {
self.resource = Some(resource.clone());
}
}
#[cfg(test)]
mod tests {
use super::*;
use opentelemetry::{
trace::{SpanContext, SpanId, SpanKind, Status, TraceFlags, TraceId, TraceState},
InstrumentationScope, KeyValue,
};
use opentelemetry_sdk::trace::{SpanEvents, SpanLinks};
use serde_json::Value;
use std::time::SystemTime;
fn create_test_span() -> SpanData {
let trace_id_bytes = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 42];
let span_id_bytes = [0, 0, 0, 0, 0, 0, 0, 123];
let parent_id_bytes = [0, 0, 0, 0, 0, 0, 0, 42];
let span_context = SpanContext::new(
TraceId::from_bytes(trace_id_bytes),
SpanId::from_bytes(span_id_bytes),
TraceFlags::default(),
false,
TraceState::default(),
);
SpanData {
span_context,
parent_span_id: SpanId::from_bytes(parent_id_bytes),
span_kind: SpanKind::Client,
name: "test-span".into(),
start_time: SystemTime::UNIX_EPOCH,
end_time: SystemTime::UNIX_EPOCH,
attributes: vec![KeyValue::new("test.key", "test-value")],
dropped_attributes_count: 0,
events: SpanEvents::default(),
links: SpanLinks::default(),
status: Status::Ok,
instrumentation_scope: InstrumentationScope::builder("test-library")
.with_version("1.0.0")
.with_schema_url("https://opentelemetry.io/schema/1.0.0")
.build(),
}
}
#[test]
fn test_parse_headers() {
std::env::set_var("OTEL_EXPORTER_OTLP_HEADERS", "key1=value1,key2=value2");
std::env::set_var(
"OTEL_EXPORTER_OTLP_TRACES_HEADERS",
"key2=override,key3=value3",
);
let headers = OtlpStdoutSpanExporter::parse_headers();
assert_eq!(headers.get("key1").unwrap(), "value1");
assert_eq!(headers.get("key2").unwrap(), "override");
assert_eq!(headers.get("key3").unwrap(), "value3");
// Clean up
std::env::remove_var("OTEL_EXPORTER_OTLP_HEADERS");
std::env::remove_var("OTEL_EXPORTER_OTLP_TRACES_HEADERS");
}
#[test]
fn test_service_name_resolution() {
// Test OTEL_SERVICE_NAME priority
std::env::set_var("OTEL_SERVICE_NAME", "otel-service");
std::env::set_var("AWS_LAMBDA_FUNCTION_NAME", "lambda-function");
assert_eq!(OtlpStdoutSpanExporter::get_service_name(), "otel-service");
// Test AWS_LAMBDA_FUNCTION_NAME fallback
std::env::remove_var("OTEL_SERVICE_NAME");
assert_eq!(
OtlpStdoutSpanExporter::get_service_name(),
"lambda-function"
);
// Test default value
std::env::remove_var("AWS_LAMBDA_FUNCTION_NAME");
assert_eq!(
OtlpStdoutSpanExporter::get_service_name(),
"unknown-service"
);
}
#[tokio::test]
async fn test_export_single_span() {
let (mut exporter, output) = OtlpStdoutSpanExporter::with_test_output();
let span = create_test_span();
let result = exporter.export(vec![span]).await;
assert!(result.is_ok());
let output = output.get_output();
assert_eq!(output.len(), 1);
// Parse and verify the output
let json: Value = serde_json::from_str(&output[0]).unwrap();
assert_eq!(json["__otel_otlp_stdout"], VERSION);
assert_eq!(json["method"], "POST");
assert_eq!(json["content-type"], "application/x-protobuf");
assert_eq!(json["content-encoding"], "gzip");
assert_eq!(json["base64"], true);
// Verify payload is valid base64 and can be decoded
let payload = json["payload"].as_str().unwrap();
let decoded = base64_engine.decode(payload).unwrap();
// Verify it can be decompressed
let mut decoder = flate2::read::GzDecoder::new(&decoded[..]);
let mut decompressed = Vec::new();
std::io::Read::read_to_end(&mut decoder, &mut decompressed).unwrap();
// Verify it's valid OTLP protobuf
let request = ExportTraceServiceRequest::decode(&*decompressed).unwrap();
assert_eq!(request.resource_spans.len(), 1);
}
#[tokio::test]
async fn test_export_empty_batch() {
let mut exporter = OtlpStdoutSpanExporter::new();
let result = exporter.export(vec![]).await;
assert!(result.is_ok());
}
#[test]
fn test_gzip_level_configuration() {
let exporter = OtlpStdoutSpanExporter::with_gzip_level(9);
assert_eq!(exporter.gzip_level, 9);
}
}