otlp-arrow-library 0.6.4

Cross-platform Rust library for receiving OTLP messages via gRPC and writing to Arrow IPC files
Documentation
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
//! Configuration loader
//!
//! Loads configuration from YAML files, environment variables, or programmatic API.
//! Priority: provided config > environment variables > defaults

use std::env;
use std::path::PathBuf;

use crate::config::types::Config;
use crate::error::OtlpConfigError;
use tracing::{debug, info, warn};

/// Configuration loader
pub struct ConfigLoader;

impl ConfigLoader {
    /// Load configuration from YAML file
    pub fn from_yaml(path: impl AsRef<std::path::Path>) -> Result<Config, OtlpConfigError> {
        let path = path.as_ref();
        info!(
            config_path = %path.display(),
            "Loading configuration from YAML file"
        );

        let content = std::fs::read_to_string(path).map_err(|e| {
            warn!(
                config_path = %path.display(),
                error = %e,
                "Failed to read configuration file"
            );
            OtlpConfigError::InvalidOutputDir(format!("Failed to read config file: {}", e))
        })?;

        debug!(
            config_path = %path.display(),
            file_size_bytes = content.len(),
            "Read configuration file"
        );

        let mut config: Config = serde_yaml::from_str(&content).map_err(|e| {
            warn!(
                config_path = %path.display(),
                error = %e,
                "Failed to parse YAML configuration"
            );
            OtlpConfigError::ValidationFailed(format!("Failed to parse YAML: {}", e))
        })?;

        debug!(
            config_path = %path.display(),
            "Parsed YAML configuration successfully"
        );

        // Apply environment variable overrides
        Self::apply_env_overrides(&mut config);

        debug!(
            config_path = %path.display(),
            "Applied environment variable overrides"
        );

        // Validate configuration
        config.validate().map_err(|e| {
            warn!(
                config_path = %path.display(),
                error = %e,
                "Configuration validation failed"
            );
            e
        })?;

        info!(
            config_path = %path.display(),
            output_dir = %config.output_dir.display(),
            write_interval_secs = config.write_interval_secs,
            protobuf_enabled = config.protocols.protobuf_enabled,
            arrow_flight_enabled = config.protocols.arrow_flight_enabled,
            "Configuration loaded and validated successfully"
        );

        Ok(config)
    }

    /// Load configuration from environment variables
    pub fn from_env() -> Result<Config, OtlpConfigError> {
        info!("Loading configuration from environment variables");

        let mut config = Config::default();

        debug!(
            output_dir = %config.output_dir.display(),
            write_interval_secs = config.write_interval_secs,
            "Starting with default configuration"
        );

        // Apply environment variable overrides
        Self::apply_env_overrides(&mut config);

        debug!("Applied environment variable overrides");

        // Validate configuration
        config.validate().map_err(|e| {
            warn!(
                error = %e,
                "Configuration validation failed"
            );
            e
        })?;

        info!(
            output_dir = %config.output_dir.display(),
            write_interval_secs = config.write_interval_secs,
            protobuf_enabled = config.protocols.protobuf_enabled,
            arrow_flight_enabled = config.protocols.arrow_flight_enabled,
            "Configuration loaded from environment variables and validated successfully"
        );

        Ok(config)
    }

    /// Load configuration with priority: provided config > environment variables > defaults
    pub fn load(provided: Option<Config>) -> Result<Config, OtlpConfigError> {
        if provided.is_some() {
            info!("Loading configuration with provided config and environment variable overrides");
        } else {
            info!("Loading configuration with defaults and environment variable overrides");
        }

        let mut config = provided.unwrap_or_default();

        debug!(
            output_dir = %config.output_dir.display(),
            write_interval_secs = config.write_interval_secs,
            "Starting configuration"
        );

        // Apply environment variable overrides (they override provided config)
        Self::apply_env_overrides(&mut config);

        debug!("Applied environment variable overrides");

        // Validate configuration
        config.validate().map_err(|e| {
            warn!(
                error = %e,
                "Configuration validation failed"
            );
            e
        })?;

        info!(
            output_dir = %config.output_dir.display(),
            write_interval_secs = config.write_interval_secs,
            protobuf_enabled = config.protocols.protobuf_enabled,
            arrow_flight_enabled = config.protocols.arrow_flight_enabled,
            "Configuration loaded and validated successfully"
        );

        Ok(config)
    }

    /// Apply environment variable overrides to configuration
    fn apply_env_overrides(config: &mut Config) {
        // OTLP_OUTPUT_DIR
        if let Ok(dir) = env::var("OTLP_OUTPUT_DIR") {
            debug!(
                env_var = "OTLP_OUTPUT_DIR",
                value = %dir,
                "Applying environment variable override"
            );
            config.output_dir = PathBuf::from(dir);
        }

        // OTLP_WRITE_INTERVAL_SECS
        if let Ok(interval) = env::var("OTLP_WRITE_INTERVAL_SECS") {
            match interval.parse::<u64>() {
                Ok(secs) => {
                    debug!(
                        env_var = "OTLP_WRITE_INTERVAL_SECS",
                        value = secs,
                        "Applying environment variable override"
                    );
                    config.write_interval_secs = secs;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_WRITE_INTERVAL_SECS",
                        value = %interval,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_TRACE_CLEANUP_INTERVAL_SECS
        if let Ok(interval) = env::var("OTLP_TRACE_CLEANUP_INTERVAL_SECS")
            && let Ok(secs) = interval.parse::<u64>()
        {
            config.trace_cleanup_interval_secs = secs;
        }

        // OTLP_METRIC_CLEANUP_INTERVAL_SECS
        if let Ok(interval) = env::var("OTLP_METRIC_CLEANUP_INTERVAL_SECS")
            && let Ok(secs) = interval.parse::<u64>()
        {
            config.metric_cleanup_interval_secs = secs;
        }

        // OTLP_MAX_TRACE_BUFFER_SIZE
        if let Ok(size) = env::var("OTLP_MAX_TRACE_BUFFER_SIZE") {
            match size.parse::<usize>() {
                Ok(s) => {
                    debug!(
                        env_var = "OTLP_MAX_TRACE_BUFFER_SIZE",
                        value = s,
                        "Applying environment variable override"
                    );
                    config.max_trace_buffer_size = s;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_MAX_TRACE_BUFFER_SIZE",
                        value = %size,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_MAX_METRIC_BUFFER_SIZE
        if let Ok(size) = env::var("OTLP_MAX_METRIC_BUFFER_SIZE") {
            match size.parse::<usize>() {
                Ok(s) => {
                    debug!(
                        env_var = "OTLP_MAX_METRIC_BUFFER_SIZE",
                        value = s,
                        "Applying environment variable override"
                    );
                    config.max_metric_buffer_size = s;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_MAX_METRIC_BUFFER_SIZE",
                        value = %size,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_PROTOBUF_ENABLED
        if let Ok(enabled) = env::var("OTLP_PROTOBUF_ENABLED") {
            match enabled.parse::<bool>() {
                Ok(val) => {
                    debug!(
                        env_var = "OTLP_PROTOBUF_ENABLED",
                        value = val,
                        "Applying environment variable override"
                    );
                    config.protocols.protobuf_enabled = val;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_PROTOBUF_ENABLED",
                        value = %enabled,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_PROTOBUF_PORT
        if let Ok(port) = env::var("OTLP_PROTOBUF_PORT") {
            match port.parse::<u16>() {
                Ok(p) => {
                    debug!(
                        env_var = "OTLP_PROTOBUF_PORT",
                        value = p,
                        "Applying environment variable override"
                    );
                    config.protocols.protobuf_port = p;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_PROTOBUF_PORT",
                        value = %port,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_ARROW_FLIGHT_ENABLED
        if let Ok(enabled) = env::var("OTLP_ARROW_FLIGHT_ENABLED") {
            match enabled.parse::<bool>() {
                Ok(val) => {
                    debug!(
                        env_var = "OTLP_ARROW_FLIGHT_ENABLED",
                        value = val,
                        "Applying environment variable override"
                    );
                    config.protocols.arrow_flight_enabled = val;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_ARROW_FLIGHT_ENABLED",
                        value = %enabled,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_ARROW_FLIGHT_PORT
        if let Ok(port) = env::var("OTLP_ARROW_FLIGHT_PORT") {
            match port.parse::<u16>() {
                Ok(p) => {
                    debug!(
                        env_var = "OTLP_ARROW_FLIGHT_PORT",
                        value = p,
                        "Applying environment variable override"
                    );
                    config.protocols.arrow_flight_port = p;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_ARROW_FLIGHT_PORT",
                        value = %port,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_FORWARDING_ENABLED
        if let Ok(enabled) = env::var("OTLP_FORWARDING_ENABLED")
            && enabled.parse::<bool>().unwrap_or(false)
        {
            let mut forwarding = config.forwarding.take().unwrap_or_default();
            forwarding.enabled = true;

            // OTLP_FORWARDING_ENDPOINT_URL
            if let Ok(url) = env::var("OTLP_FORWARDING_ENDPOINT_URL") {
                forwarding.endpoint_url = Some(url);
            }

            // OTLP_FORWARDING_PROTOCOL
            if let Ok(protocol) = env::var("OTLP_FORWARDING_PROTOCOL") {
                use crate::config::types::ForwardingProtocol;
                forwarding.protocol = match protocol.to_lowercase().as_str() {
                    "protobuf" => ForwardingProtocol::Protobuf,
                    "arrow_flight" | "arrowflight" => ForwardingProtocol::ArrowFlight,
                    _ => ForwardingProtocol::default(),
                };
            }

            config.forwarding = Some(forwarding);
        }

        // OTLP_DASHBOARD_ENABLED
        if let Ok(enabled) = env::var("OTLP_DASHBOARD_ENABLED") {
            match enabled.parse::<bool>() {
                Ok(val) => {
                    debug!(
                        env_var = "OTLP_DASHBOARD_ENABLED",
                        value = val,
                        "Applying environment variable override"
                    );
                    config.dashboard.enabled = val;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_DASHBOARD_ENABLED",
                        value = %enabled,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_DASHBOARD_PORT
        if let Ok(port) = env::var("OTLP_DASHBOARD_PORT") {
            match port.parse::<u16>() {
                Ok(p) => {
                    debug!(
                        env_var = "OTLP_DASHBOARD_PORT",
                        value = p,
                        "Applying environment variable override"
                    );
                    config.dashboard.port = p;
                }
                Err(e) => {
                    warn!(
                        env_var = "OTLP_DASHBOARD_PORT",
                        value = %port,
                        error = %e,
                        "Failed to parse environment variable, using default"
                    );
                }
            }
        }

        // OTLP_DASHBOARD_STATIC_DIR
        if let Ok(dir) = env::var("OTLP_DASHBOARD_STATIC_DIR") {
            debug!(
                env_var = "OTLP_DASHBOARD_STATIC_DIR",
                value = %dir,
                "Applying environment variable override"
            );
            config.dashboard.static_dir = PathBuf::from(dir);
        }

        // OTLP_DASHBOARD_BIND_ADDRESS
        if let Ok(addr) = env::var("OTLP_DASHBOARD_BIND_ADDRESS") {
            debug!(
                env_var = "OTLP_DASHBOARD_BIND_ADDRESS",
                value = %addr,
                "Applying environment variable override"
            );
            config.dashboard.bind_address = addr;
        }
    }
}