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
//! Runtime configuration for semantic convention emission.
//!
//! Controls opt-in behaviors that cannot be gated at compile time,
//! such as content event capture.
/// Runtime configuration for semantic convention emission.
///
/// Controls opt-in behaviors like content capture that are disabled by default
/// for privacy protection.
///
/// # Example
/// ```
/// use adk_telemetry::config::SemconvConfig;
///
/// // Default: content capture disabled
/// let config = SemconvConfig::default();
/// assert!(!config.capture_content);
///
/// // Enable content capture for debugging
/// let debug_config = SemconvConfig { capture_content: true };
/// ```