forked from open-telemetry/opentelemetry-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinternal_logging.rs
229 lines (210 loc) · 7.02 KB
/
internal_logging.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
#![allow(unused_macros)]
///
/// **Note**: These macros (`otel_info!`, `otel_warn!`, `otel_debug!`, and `otel_error!`) are intended to be used
/// **internally within OpenTelemetry code** or for **custom exporters, processors and other plugins**. They are not designed
/// for general application logging and should not be used for that purpose.
///
/// When running tests with `--nocapture`, these macros will print their output to stdout. This is useful for debugging
/// test failures and understanding the flow of operations during testing.
///
/// Macro for logging informational messages in OpenTelemetry.
///
/// # Fields:
/// - `name`: The operation or action being logged.
/// - Additional optional key-value pairs can be passed as attributes.
///
/// # Example:
/// ```rust
/// use opentelemetry::otel_info;
/// otel_info!(name: "sdk_start", version = "1.0.0", schema_url = "http://example.com");
/// ```
///
// TODO: Remove `name` attribute duplication in logging macros below once `tracing::Fmt` supports displaying `name`.
// See issue: https://github.com/tokio-rs/tracing/issues/2774
#[macro_export]
macro_rules! otel_info {
(name: $name:expr $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::info!( name: $name, target: env!("CARGO_PKG_NAME"), name = $name, "");
}
#[cfg(test)]
{
print!("otel_info: name={}\n", $name);
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = $name; // Compiler will optimize this out as it's unused.
}
};
(name: $name:expr, $($key:ident = $value:expr),+ $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::info!(name: $name, target: env!("CARGO_PKG_NAME"), name = $name, $($key = $value),+, "");
}
#[cfg(test)]
{
print!("otel_info: name={}", $name);
$(
print!(", {}={}", stringify!($key), $value);
)+
print!("\n");
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = ($name, $($value),+); // Compiler will optimize this out as it's unused.
}
};
}
/// Macro for logging warning messages in OpenTelemetry.
///
/// # Fields:
/// - `name`: The operation or action being logged.
/// - Additional optional key-value pairs can be passed as attributes.
///
/// # Example:
/// ```rust
/// use opentelemetry::otel_warn;
/// otel_warn!(name: "export_warning", error_code = 404, version = "1.0.0");
/// ```
#[macro_export]
macro_rules! otel_warn {
(name: $name:expr $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::warn!(name: $name, target: env!("CARGO_PKG_NAME"), name = $name, "");
}
#[cfg(test)]
{
print!("otel_warn: name={}\n", $name);
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = $name; // Compiler will optimize this out as it's unused.
}
};
(name: $name:expr, $($key:ident = $value:expr),+ $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::warn!(name: $name,
target: env!("CARGO_PKG_NAME"),
name = $name,
$($key = {
$value
}),+,
""
)
}
#[cfg(test)]
{
print!("otel_warn: name={}", $name);
$(
print!(", {}={}", stringify!($key), $value);
)+
print!("\n");
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = ($name, $($value),+); // Compiler will optimize this out as it's unused.
}
};
}
/// Macro for logging debug messages in OpenTelemetry.
///
/// # Fields:
/// - `name`: The operation or action being logged.
/// - Additional optional key-value pairs can be passed as attributes.
///
/// # Example:
/// ```rust
/// use opentelemetry::otel_debug;
/// otel_debug!(name: "debug_operation", debug_level = "high", version = "1.0.0");
/// ```
#[macro_export]
macro_rules! otel_debug {
(name: $name:expr $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::debug!(name: $name, target: env!("CARGO_PKG_NAME"), name = $name, "");
}
#[cfg(test)]
{
print!("otel_debug: name={}\n", $name);
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = $name; // Compiler will optimize this out as it's unused.
}
};
(name: $name:expr, $($key:ident = $value:expr),+ $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::debug!(name: $name, target: env!("CARGO_PKG_NAME"), name = $name, $($key = $value),+, "");
}
#[cfg(test)]
{
print!("otel_debug: name={}", $name);
$(
print!(", {}={}", stringify!($key), $value);
)+
print!("\n");
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = ($name, $($value),+); // Compiler will optimize this out as it's unused.
}
};
}
/// Macro for logging error messages in OpenTelemetry.
///
/// # Fields:
/// - `name`: The operation or action being logged.
/// - Additional optional key-value pairs can be passed as attributes.
///
/// # Example:
/// ```rust
/// use opentelemetry::otel_error;
/// otel_error!(name: "export_failure", error_code = 500, version = "1.0.0");
/// ```
#[macro_export]
macro_rules! otel_error {
(name: $name:expr $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::error!(name: $name, target: env!("CARGO_PKG_NAME"), name = $name, "");
}
#[cfg(test)]
{
print!("otel_error: name={}\n", $name);
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = $name; // Compiler will optimize this out as it's unused.
}
};
(name: $name:expr, $($key:ident = $value:expr),+ $(,)?) => {
#[cfg(feature = "internal-logs")]
{
$crate::_private::tracing::error!(name: $name,
target: env!("CARGO_PKG_NAME"),
name = $name,
$($key = {
$value
}),+,
""
)
}
#[cfg(test)]
{
print!("otel_error: name={}", $name);
$(
print!(", {}={}", stringify!($key), $value);
)+
print!("\n");
}
#[cfg(all(not(feature = "internal-logs"), not(test)))]
{
let _ = ($name, $($value),+); // Compiler will optimize this out as it's unused.
}
};
}