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
//! Telemetry initialisation helpers and SDK client convenience macros.
//!
//! This module provides two levels of setup:
//!
//! - **[`default_telemetry_init()`]** — one-call setup that builds a
//! [`SdkTracerProvider`], registers it as the global OTel provider, and
//! (when `tracing-backend` is enabled) installs a `tracing-subscriber` with
//! a JSON console layer and an OTel bridge layer.
//! - **[`default_tracer_provider()`]** — builds only the provider, without
//! touching the global state. Use this when you need to compose the
//! subscriber yourself.
//!
//! When `tracing-backend` is enabled, two additional helpers are available:
//!
//! - **[`default_tracing_otel_layer()`]** — creates the `tracing-opentelemetry`
//! layer that bridges `tracing` spans to OTel.
//! - **[`default_tracing_console_layer()`]** — creates a JSON console layer
//! driven by `RUST_LOG`.
//!
//! ## Sampling strategy
//!
//! The default sampler is `ParentBased(AlwaysOff)` when `env-lambda` is
//! enabled (Lambda controls sampling via the X-Ray trace header) and
//! `ParentBased(AlwaysOn)` otherwise.
//!
//! ## X-Ray annotation / metadata
//!
//! When `export-xray` is enabled, two environment variables control how span
//! attributes are mapped to X-Ray annotations and metadata:
//!
//! - `XRAY_ANNOTATIONS` — set to `"all"` to index every attribute as an
//! annotation, or to a space-separated list of attribute keys.
//! - `XRAY_METADATA` — same format; controls which attributes go into X-Ray
//! metadata.
//!
//! ## Convenience macros
//!
//! Two macros reduce the boilerplate of managing SDK config and client
//! singletons in Lambda functions:
//!
//! - **[`crate::aws_sdk_config_provider!`]** — declares a `OnceLock`-backed
//! `aws_sdk_config()` function and a `sdk_config_init()` async initialiser.
//! - **[`crate::aws_sdk_client_provider!`]** — declares a `OnceLock`-backed client
//! accessor function, optionally attaching a [`crate::interceptor::DefaultInterceptor`].
//!
//! Both macros are typically invoked indirectly through [`make_lambda_runtime!`].
//!
//! [`SdkTracerProvider`]: opentelemetry_sdk::trace::SdkTracerProvider
//! [`make_lambda_runtime!`]: crate::make_lambda_runtime
// TracerProvider builder — sensible-default initialization with support for
// user overrides (span processor, exporter, resource, propagator).
use ;
use ;
use Subscriber;
use ;
use cratedefault_resource;
/// Environment variable controlling which span attributes are indexed as X-Ray annotations.
///
/// Set to `"all"` to index every attribute, or to a space-separated list of attribute keys.
const ANNOTATION_ATTRIBUTES_ENV_VAR: &str = "XRAY_ANNOTATIONS";
/// Environment variable controlling which span attributes are stored as X-Ray metadata.
///
/// Set to `"all"` to include every attribute, or to a space-separated list of attribute keys.
const METADATA_ATTRIBUTES_ENV_VAR: &str = "XRAY_METADATA";
/// Default sampler: `AlwaysOff` under `env-lambda` (Lambda controls sampling via X-Ray header),
/// `AlwaysOn` otherwise.
const DEFAULT_SAMPLING_STRATEGY: Sampler = if cfg! else ;
/// Initializes the global OTel telemetry stack with sensible defaults.
///
/// This function:
///
/// 1. Builds an [`SdkTracerProvider`] via [`default_tracer_provider`].
/// 2. Registers it as the global OTel provider with
/// [`opentelemetry::global::set_tracer_provider`].
/// 3. When `tracing-backend` is enabled, installs a `tracing-subscriber` with
/// a JSON console layer (driven by `RUST_LOG`) and a `tracing-opentelemetry`
/// bridge layer.
///
/// Call this once at the start of your Lambda handler's `main` function, before
/// creating any AWS SDK clients. The returned provider must be kept alive for
/// the duration of the process; pass it to the flush callback in
/// [`layer::TracingLayer`].
///
/// For more control over the subscriber stack, use [`default_tracer_provider`]
/// and compose the layers yourself with [`default_tracing_otel_layer`] and
/// [`default_tracing_console_layer`].
///
/// [`layer::TracingLayer`]: crate::lambda::layer::TracingLayer
/// Builds an [`SdkTracerProvider`] with sensible defaults, without touching global state.
///
/// The provider is configured with:
///
/// - **Sampler**: `ParentBased(AlwaysOff)` when `env-lambda` is enabled (Lambda
/// controls sampling via the X-Ray trace header), or `ParentBased(AlwaysOn)`
/// otherwise.
/// - **Resource**: auto-detected via [`crate::env::default_resource`].
/// - **Exporter** (when `export-xray` is enabled): an X-Ray daemon exporter
/// with an X-Ray ID generator. The `XRAY_ANNOTATIONS` and `XRAY_METADATA`
/// environment variables control which span attributes are indexed as X-Ray
/// annotations or metadata.
///
/// Use this function instead of [`default_telemetry_init`] when you need to
/// compose the `tracing-subscriber` stack yourself.
///
/// # Examples
///
/// ```no_run
/// use awssdk_instrumentation::init::default_tracer_provider;
/// use opentelemetry::global;
///
/// let tracer_provider = default_tracer_provider();
/// global::set_tracer_provider(tracer_provider.clone());
/// ```
/// Creates a `tracing-opentelemetry` layer that bridges `tracing` spans to OTel.
///
/// The layer is configured to forward only spans and events at `INFO` level or
/// above, plus the AWS SDK operation spans (identified by their target
/// containing `::operation::`) and the Lambda runtime layer span (target ending
/// with `::tracing_runtime_layer`). This keeps the OTel trace focused on
/// meaningful SDK and invocation spans while suppressing noisy debug events.
///
/// Pass the layer to a `tracing-subscriber` registry alongside
/// [`default_tracing_console_layer`].
///
/// # Examples
///
/// ```no_run
/// use awssdk_instrumentation::init::{default_tracer_provider, default_tracing_otel_layer};
/// use opentelemetry::global;
/// use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
///
/// let tracer_provider = default_tracer_provider();
/// global::set_tracer_provider(tracer_provider.clone());
/// let tracer = global::tracer("my-lambda");
/// let otel_layer = default_tracing_otel_layer(tracer);
///
/// tracing_subscriber::registry()
/// .with(otel_layer)
/// .init();
/// ```
/// Creates a JSON console logging layer driven by the `RUST_LOG` environment variable.
///
/// The layer emits structured JSON log lines to stdout, without ANSI colour
/// codes and without the target field, making it suitable for CloudWatch Logs
/// ingestion. The log level filter is read from `RUST_LOG` at startup.
///
/// Pass the layer to a `tracing-subscriber` registry alongside
/// [`default_tracing_otel_layer`].
///
/// # Examples
///
/// ```no_run
/// use awssdk_instrumentation::init::{default_tracer_provider, default_tracing_console_layer};
/// use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt};
///
/// let console_layer = default_tracing_console_layer();
///
/// tracing_subscriber::registry()
/// .with(console_layer)
/// .init();
/// ```
/// Declares a `OnceLock`-backed `aws_sdk_config()` accessor and an async
/// `sdk_config_init()` initialiser.
///
/// Invoke this macro once at the crate root to generate:
///
/// - A `static AWS_SDK_CONFIG: OnceLock<SdkConfig>` — the backing storage.
/// - `fn aws_sdk_config() -> &'static SdkConfig` — returns the initialized
/// config; panics if called before `sdk_config_init()`.
/// - `async fn sdk_config_init()` — loads the SDK config from the environment
/// via `aws_config::load_from_env()` and stores it in the lock.
///
/// A compile-time assertion verifies that `aws_sdk_config` is declared at the
/// crate root.
///
/// This macro is typically invoked indirectly through [`make_lambda_runtime!`]
/// when you pass client declarations to that macro.
///
/// # Examples
///
/// ```no_run
/// awssdk_instrumentation::aws_sdk_config_provider!();
///
/// #[tokio::main]
/// async fn main() {
/// sdk_config_init().await;
/// let config = aws_sdk_config();
/// }
/// ```
///
/// [`make_lambda_runtime!`]: crate::make_lambda_runtime
/// Declares a `OnceLock`-backed AWS SDK client accessor function.
///
/// Invoke this macro to generate a function `$name() -> $client` that returns
/// a lazily-initialized, cloned SDK client stored in a `static OnceLock`.
///
/// # Syntax
///
/// ```text
/// aws_sdk_client_provider!(fn_name() -> ClientType)
/// aws_sdk_client_provider!(fn_name() -> ClientType, interceptor = expr)
/// aws_sdk_client_provider!(fn_name() -> ClientType, no_interceptor)
/// ```
///
/// - **Default** (no suffix): attaches a [`DefaultInterceptor`] to the client
/// config automatically.
/// - **`interceptor = expr`**: attaches the provided interceptor expression.
/// - **`no_interceptor`**: creates the client without any interceptor.
///
/// The generated function reads the SDK config from `aws_sdk_config()`, which
/// must have been initialized by [`aws_sdk_config_provider!`] before the first
/// call.
///
/// A compile-time assertion verifies that the generated function is declared at
/// the crate root.
///
/// This macro is typically invoked indirectly through [`make_lambda_runtime!`]
/// when you pass client declarations to that macro.
///
/// # Examples
///
/// ```no_run
/// awssdk_instrumentation::aws_sdk_config_provider!();
/// awssdk_instrumentation::aws_sdk_client_provider!(
/// dynamodb_client() -> aws_sdk_dynamodb::Client
/// );
///
/// #[tokio::main]
/// async fn main() {
/// sdk_config_init().await;
/// let client = dynamodb_client();
/// }
/// ```
///
/// [`DefaultInterceptor`]: crate::interceptor::DefaultInterceptor
/// [`make_lambda_runtime!`]: crate::make_lambda_runtime
else
})
.clone
}
const _: fn = ;
};
=> ;
=> ;
}