-
Notifications
You must be signed in to change notification settings - Fork 397
/
tracer.py
735 lines (600 loc) · 27.3 KB
/
tracer.py
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
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
import contextlib
import copy
import functools
import inspect
import logging
import numbers
import os
from typing import Any, Callable, Dict, List, Optional, Tuple, Union
from ..shared import constants
from ..shared.functions import resolve_env_var_choice, resolve_truthy_env_var_choice
from ..shared.lazy_import import LazyLoader
from .base import BaseProvider, BaseSegment
is_cold_start = True
logger = logging.getLogger(__name__)
aws_xray_sdk = LazyLoader(constants.XRAY_SDK_MODULE, globals(), constants.XRAY_SDK_MODULE)
aws_xray_sdk.core = LazyLoader(constants.XRAY_SDK_CORE_MODULE, globals(), constants.XRAY_SDK_CORE_MODULE)
class Tracer:
"""Tracer using AWS-XRay to provide decorators with known defaults for Lambda functions
When running locally, it detects whether it's running via SAM CLI,
and if it is it returns dummy segments/subsegments instead.
By default, it patches all available libraries supported by X-Ray SDK. Patching is
automatically disabled when running locally via SAM CLI or by any other means. \n
Ref: https://docs.aws.amazon.com/xray-sdk-for-python/latest/reference/thirdparty.html
Tracer keeps a copy of its configuration as it can be instantiated more than once. This
is useful when you are using your own middlewares and want to utilize an existing Tracer.
Make sure to set `auto_patch=False` in subsequent Tracer instances to avoid double patching.
Environment variables
---------------------
POWERTOOLS_TRACE_DISABLED : str
disable tracer (e.g. `"true", "True", "TRUE"`)
POWERTOOLS_SERVICE_NAME : str
service name
POWERTOOLS_TRACER_CAPTURE_RESPONSE : str
disable auto-capture response as metadata (e.g. `"true", "True", "TRUE"`)
POWERTOOLS_TRACER_CAPTURE_ERROR : str
disable auto-capture error as metadata (e.g. `"true", "True", "TRUE"`)
Parameters
----------
service: str
Service name that will be appended in all tracing metadata
auto_patch: bool
Patch existing imported modules during initialization, by default True
disabled: bool
Flag to explicitly disable tracing, useful when running/testing locally
`Env POWERTOOLS_TRACE_DISABLED="true"`
patch_modules: Tuple[str]
Tuple of modules supported by tracing provider to patch, by default all modules are patched
provider: BaseProvider
Tracing provider, by default it is aws_xray_sdk.core.xray_recorder
Returns
-------
Tracer
Tracer instance with imported modules patched
Example
-------
**A Lambda function using Tracer**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="greeting")
@tracer.capture_method
def greeting(name: str) -> Dict:
return {
"name": name
}
@tracer.capture_lambda_handler
def handler(event: dict, context: Any) -> Dict:
print("Received event from Lambda...")
response = greeting(name="Heitor")
return response
**Booking Lambda function using Tracer that adds additional annotation/metadata**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
@tracer.capture_method
def confirm_booking(booking_id: str) -> Dict:
resp = add_confirmation(booking_id)
tracer.put_annotation("BookingConfirmation", resp["requestId"])
tracer.put_metadata("Booking confirmation", resp)
return resp
@tracer.capture_lambda_handler
def handler(event: dict, context: Any) -> Dict:
print("Received event from Lambda...")
booking_id = event.get("booking_id")
response = confirm_booking(booking_id=booking_id)
return response
**A Lambda function using service name via POWERTOOLS_SERVICE_NAME**
export POWERTOOLS_SERVICE_NAME="booking"
from aws_lambda_powertools import Tracer
tracer = Tracer()
@tracer.capture_lambda_handler
def handler(event: dict, context: Any) -> Dict:
print("Received event from Lambda...")
response = greeting(name="Lessa")
return response
**Reuse an existing instance of Tracer anywhere in the code**
# lambda_handler.py
from aws_lambda_powertools import Tracer
tracer = Tracer()
@tracer.capture_lambda_handler
def handler(event: dict, context: Any) -> Dict:
...
# utils.py
from aws_lambda_powertools import Tracer
tracer = Tracer()
...
Limitations
-----------
* Async handler not supported
"""
_default_config: Dict[str, Any] = {
"service": "service_undefined",
"disabled": False,
"auto_patch": True,
"patch_modules": None,
"provider": None,
}
_config = copy.copy(_default_config)
def __init__(
self,
service: str = None,
disabled: bool = None,
auto_patch: bool = None,
patch_modules: Optional[Tuple[str]] = None,
provider: BaseProvider = None,
):
self.__build_config(
service=service, disabled=disabled, auto_patch=auto_patch, patch_modules=patch_modules, provider=provider
)
self.provider: BaseProvider = self._config["provider"]
self.disabled = self._config["disabled"]
self.service = self._config["service"]
self.auto_patch = self._config["auto_patch"]
if self.disabled:
self._disable_tracer_provider()
if self.auto_patch:
self.patch(modules=patch_modules)
# Set the streaming threshold to 0 on the default recorder to force sending
# subsegments individually, rather than batching them.
# See https://github.com/awslabs/aws-lambda-powertools-python/issues/283
aws_xray_sdk.core.xray_recorder.configure(streaming_threshold=0) # noqa: E800
def put_annotation(self, key: str, value: Union[str, numbers.Number, bool]):
"""Adds annotation to existing segment or subsegment
Parameters
----------
key : str
Annotation key
value : Union[str, numbers.Number, bool]
Value for annotation
Example
-------
Custom annotation for a pseudo service named payment
tracer = Tracer(service="payment")
tracer.put_annotation("PaymentStatus", "CONFIRMED")
"""
if self.disabled:
logger.debug("Tracing has been disabled, aborting put_annotation")
return
logger.debug(f"Annotating on key '{key}' with '{value}'")
self.provider.put_annotation(key=key, value=value)
def put_metadata(self, key: str, value: Any, namespace: str = None):
"""Adds metadata to existing segment or subsegment
Parameters
----------
key : str
Metadata key
value : any
Value for metadata
namespace : str, optional
Namespace that metadata will lie under, by default None
Example
-------
Custom metadata for a pseudo service named payment
tracer = Tracer(service="payment")
response = collect_payment()
tracer.put_metadata("Payment collection", response)
"""
if self.disabled:
logger.debug("Tracing has been disabled, aborting put_metadata")
return
namespace = namespace or self.service
logger.debug(f"Adding metadata on key '{key}' with '{value}' at namespace '{namespace}'")
self.provider.put_metadata(key=key, value=value, namespace=namespace)
def patch(self, modules: Tuple[str] = None):
"""Patch modules for instrumentation.
Patches all supported modules by default if none are given.
Parameters
----------
modules : Tuple[str]
List of modules to be patched, optional by default
"""
if self.disabled:
logger.debug("Tracing has been disabled, aborting patch")
return
if modules is None:
aws_xray_sdk.core.patch_all()
else:
aws_xray_sdk.core.patch(modules)
def capture_lambda_handler(
self,
lambda_handler: Union[Callable[[Dict, Any], Any], Callable[[Dict, Any, Optional[Dict]], Any]] = None,
capture_response: Optional[bool] = None,
capture_error: Optional[bool] = None,
):
"""Decorator to create subsegment for lambda handlers
As Lambda follows (event, context) signature we can remove some of the boilerplate
and also capture any exception any Lambda function throws or its response as metadata
Parameters
----------
lambda_handler : Callable
Method to annotate on
capture_response : bool, optional
Instructs tracer to not include handler's response as metadata
capture_error : bool, optional
Instructs tracer to not include handler's error as metadata, by default True
Example
-------
**Lambda function using capture_lambda_handler decorator**
tracer = Tracer(service="payment")
@tracer.capture_lambda_handler
def handler(event, context):
...
**Preventing Tracer to log response as metadata**
tracer = Tracer(service="payment")
@tracer.capture_lambda_handler(capture_response=False)
def handler(event, context):
...
Raises
------
err
Exception raised by method
"""
# If handler is None we've been called with parameters
# Return a partial function with args filled
if lambda_handler is None:
logger.debug("Decorator called with parameters")
return functools.partial(
self.capture_lambda_handler, capture_response=capture_response, capture_error=capture_error
)
lambda_handler_name = lambda_handler.__name__
capture_response = resolve_truthy_env_var_choice(
env=os.getenv(constants.TRACER_CAPTURE_RESPONSE_ENV, "true"), choice=capture_response
)
capture_error = resolve_truthy_env_var_choice(
env=os.getenv(constants.TRACER_CAPTURE_ERROR_ENV, "true"), choice=capture_error
)
@functools.wraps(lambda_handler)
def decorate(event, context, **kwargs):
with self.provider.in_subsegment(name=f"## {lambda_handler_name}") as subsegment:
global is_cold_start
if is_cold_start:
logger.debug("Annotating cold start")
subsegment.put_annotation(key="ColdStart", value=True)
is_cold_start = False
try:
logger.debug("Calling lambda handler")
response = lambda_handler(event, context, **kwargs)
logger.debug("Received lambda handler response successfully")
self._add_response_as_metadata(
method_name=lambda_handler_name,
data=response,
subsegment=subsegment,
capture_response=capture_response,
)
except Exception as err:
logger.exception(f"Exception received from {lambda_handler_name}")
self._add_full_exception_as_metadata(
method_name=lambda_handler_name, error=err, subsegment=subsegment, capture_error=capture_error
)
raise
return response
return decorate
def capture_method(
self, method: Callable = None, capture_response: Optional[bool] = None, capture_error: Optional[bool] = None
):
"""Decorator to create subsegment for arbitrary functions
It also captures both response and exceptions as metadata
and creates a subsegment named `## <method_name>`
When running [async functions concurrently](https://docs.python.org/3/library/asyncio-task.html#id6),
methods may impact each others subsegment, and can trigger
and AlreadyEndedException from X-Ray due to async nature.
For this use case, either use `capture_method` only where
`async.gather` is called, or use `in_subsegment_async`
context manager via our escape hatch mechanism - See examples.
Parameters
----------
method : Callable
Method to annotate on
capture_response : bool, optional
Instructs tracer to not include method's response as metadata
capture_error : bool, optional
Instructs tracer to not include handler's error as metadata, by default True
Example
-------
**Custom function using capture_method decorator**
tracer = Tracer(service="payment")
@tracer.capture_method
def some_function()
**Custom async method using capture_method decorator**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
@tracer.capture_method
async def confirm_booking(booking_id: str) -> Dict:
resp = call_to_booking_service()
tracer.put_annotation("BookingConfirmation", resp["requestId"])
tracer.put_metadata("Booking confirmation", resp)
return resp
def lambda_handler(event: dict, context: Any) -> Dict:
booking_id = event.get("booking_id")
asyncio.run(confirm_booking(booking_id=booking_id))
**Custom generator function using capture_method decorator**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
@tracer.capture_method
def bookings_generator(booking_id):
resp = call_to_booking_service()
yield resp[0]
yield resp[1]
def lambda_handler(event: dict, context: Any) -> Dict:
gen = bookings_generator(booking_id=booking_id)
result = list(gen)
**Custom generator context manager using capture_method decorator**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
@tracer.capture_method
@contextlib.contextmanager
def booking_actions(booking_id):
resp = call_to_booking_service()
yield "example result"
cleanup_stuff()
def lambda_handler(event: dict, context: Any) -> Dict:
booking_id = event.get("booking_id")
with booking_actions(booking_id=booking_id) as booking:
result = booking
**Tracing nested async calls**
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
@tracer.capture_method
async def get_identity():
...
@tracer.capture_method
async def long_async_call():
...
@tracer.capture_method
async def async_tasks():
await get_identity()
ret = await long_async_call()
return { "task": "done", **ret }
**Safely tracing concurrent async calls with decorator**
This may not needed once [this bug is closed](https://github.com/aws/aws-xray-sdk-python/issues/164)
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
async def get_identity():
async with aioboto3.client("sts") as sts:
account = await sts.get_caller_identity()
return account
async def long_async_call():
...
@tracer.capture_method
async def async_tasks():
_, ret = await asyncio.gather(get_identity(), long_async_call(), return_exceptions=True)
return { "task": "done", **ret }
**Safely tracing each concurrent async calls with escape hatch**
This may not needed once [this bug is closed](https://github.com/aws/aws-xray-sdk-python/issues/164)
from aws_lambda_powertools import Tracer
tracer = Tracer(service="booking")
async def get_identity():
async tracer.provider.in_subsegment_async("## get_identity"):
...
async def long_async_call():
async tracer.provider.in_subsegment_async("## long_async_call"):
...
@tracer.capture_method
async def async_tasks():
_, ret = await asyncio.gather(get_identity(), long_async_call(), return_exceptions=True)
return { "task": "done", **ret }
Raises
------
err
Exception raised by method
"""
# If method is None we've been called with parameters
# Return a partial function with args filled
if method is None:
logger.debug("Decorator called with parameters")
return functools.partial(
self.capture_method, capture_response=capture_response, capture_error=capture_error
)
method_name = f"{method.__name__}"
capture_response = resolve_truthy_env_var_choice(
env=os.getenv(constants.TRACER_CAPTURE_RESPONSE_ENV, "true"), choice=capture_response
)
capture_error = resolve_truthy_env_var_choice(
env=os.getenv(constants.TRACER_CAPTURE_ERROR_ENV, "true"), choice=capture_error
)
# Maintenance: Need a factory/builder here to simplify this now
if inspect.iscoroutinefunction(method):
return self._decorate_async_function(
method=method, capture_response=capture_response, capture_error=capture_error, method_name=method_name
)
elif inspect.isgeneratorfunction(method):
return self._decorate_generator_function(
method=method, capture_response=capture_response, capture_error=capture_error, method_name=method_name
)
elif hasattr(method, "__wrapped__") and inspect.isgeneratorfunction(method.__wrapped__):
return self._decorate_generator_function_with_context_manager(
method=method, capture_response=capture_response, capture_error=capture_error, method_name=method_name
)
else:
return self._decorate_sync_function(
method=method, capture_response=capture_response, capture_error=capture_error, method_name=method_name
)
def _decorate_async_function(
self,
method: Callable,
capture_response: Optional[Union[bool, str]] = None,
capture_error: Optional[Union[bool, str]] = None,
method_name: str = None,
):
@functools.wraps(method)
async def decorate(*args, **kwargs):
async with self.provider.in_subsegment_async(name=f"## {method_name}") as subsegment:
try:
logger.debug(f"Calling method: {method_name}")
response = await method(*args, **kwargs)
self._add_response_as_metadata(
method_name=method_name, data=response, subsegment=subsegment, capture_response=capture_response
)
except Exception as err:
logger.exception(f"Exception received from '{method_name}' method")
self._add_full_exception_as_metadata(
method_name=method_name, error=err, subsegment=subsegment, capture_error=capture_error
)
raise
return response
return decorate
def _decorate_generator_function(
self,
method: Callable,
capture_response: Optional[Union[bool, str]] = None,
capture_error: Optional[Union[bool, str]] = None,
method_name: str = None,
):
@functools.wraps(method)
def decorate(*args, **kwargs):
with self.provider.in_subsegment(name=f"## {method_name}") as subsegment:
try:
logger.debug(f"Calling method: {method_name}")
result = yield from method(*args, **kwargs)
self._add_response_as_metadata(
method_name=method_name, data=result, subsegment=subsegment, capture_response=capture_response
)
except Exception as err:
logger.exception(f"Exception received from '{method_name}' method")
self._add_full_exception_as_metadata(
method_name=method_name, error=err, subsegment=subsegment, capture_error=capture_error
)
raise
return result
return decorate
def _decorate_generator_function_with_context_manager(
self,
method: Callable,
capture_response: Optional[Union[bool, str]] = None,
capture_error: Optional[Union[bool, str]] = None,
method_name: str = None,
):
@functools.wraps(method)
@contextlib.contextmanager
def decorate(*args, **kwargs):
with self.provider.in_subsegment(name=f"## {method_name}") as subsegment:
try:
logger.debug(f"Calling method: {method_name}")
with method(*args, **kwargs) as return_val:
result = return_val
yield result
self._add_response_as_metadata(
method_name=method_name, data=result, subsegment=subsegment, capture_response=capture_response
)
except Exception as err:
logger.exception(f"Exception received from '{method_name}' method")
self._add_full_exception_as_metadata(
method_name=method_name, error=err, subsegment=subsegment, capture_error=capture_error
)
raise
return decorate
def _decorate_sync_function(
self,
method: Callable,
capture_response: Optional[Union[bool, str]] = None,
capture_error: Optional[Union[bool, str]] = None,
method_name: str = None,
):
@functools.wraps(method)
def decorate(*args, **kwargs):
with self.provider.in_subsegment(name=f"## {method_name}") as subsegment:
try:
logger.debug(f"Calling method: {method_name}")
response = method(*args, **kwargs)
self._add_response_as_metadata(
method_name=method_name,
data=response,
subsegment=subsegment,
capture_response=capture_response,
)
except Exception as err:
logger.exception(f"Exception received from '{method_name}' method")
self._add_full_exception_as_metadata(
method_name=method_name, error=err, subsegment=subsegment, capture_error=capture_error
)
raise
return response
return decorate
def _add_response_as_metadata(
self,
method_name: str = None,
data: Any = None,
subsegment: BaseSegment = None,
capture_response: Optional[Union[bool, str]] = None,
):
"""Add response as metadata for given subsegment
Parameters
----------
method_name : str, optional
method name to add as metadata key, by default None
data : Any, optional
data to add as subsegment metadata, by default None
subsegment : BaseSegment, optional
existing subsegment to add metadata on, by default None
capture_response : bool, optional
Do not include response as metadata
"""
if data is None or not capture_response or subsegment is None:
return
subsegment.put_metadata(key=f"{method_name} response", value=data, namespace=self._config["service"])
def _add_full_exception_as_metadata(
self,
method_name: str,
error: Exception,
subsegment: BaseSegment,
capture_error: Optional[bool] = None,
):
"""Add full exception object as metadata for given subsegment
Parameters
----------
method_name : str
method name to add as metadata key, by default None
error : Exception
error to add as subsegment metadata, by default None
subsegment : BaseSegment
existing subsegment to add metadata on, by default None
capture_error : bool, optional
Do not include error as metadata, by default True
"""
if not capture_error:
return
subsegment.put_metadata(key=f"{method_name} error", value=error, namespace=self._config["service"])
@staticmethod
def _disable_tracer_provider():
"""Forcefully disables tracing"""
logger.debug("Disabling tracer provider...")
aws_xray_sdk.global_sdk_config.set_sdk_enabled(False)
@staticmethod
def _is_tracer_disabled() -> Union[bool, str]:
"""Detects whether trace has been disabled
Tracing is automatically disabled in the following conditions:
1. Explicitly disabled via `TRACE_DISABLED` environment variable
2. Running in Lambda Emulators, or locally where X-Ray Daemon will not be listening
3. Explicitly disabled via constructor e.g `Tracer(disabled=True)`
Returns
-------
Union[bool, str]
"""
logger.debug("Verifying whether Tracing has been disabled")
is_lambda_sam_cli = os.getenv(constants.SAM_LOCAL_ENV)
is_chalice_cli = os.getenv(constants.CHALICE_LOCAL_ENV)
is_disabled = resolve_truthy_env_var_choice(env=os.getenv(constants.TRACER_DISABLED_ENV, "false"))
if is_disabled:
logger.debug("Tracing has been disabled via env var POWERTOOLS_TRACE_DISABLED")
return is_disabled
if is_lambda_sam_cli or is_chalice_cli:
logger.debug("Running under SAM CLI env or not in Lambda env; disabling Tracing")
return True
return False
def __build_config(
self,
service: str = None,
disabled: bool = None,
auto_patch: bool = None,
patch_modules: Union[List, Tuple] = None,
provider: BaseProvider = None,
):
"""Populates Tracer config for new and existing initializations"""
is_disabled = disabled if disabled is not None else self._is_tracer_disabled()
is_service = resolve_env_var_choice(choice=service, env=os.getenv(constants.SERVICE_NAME_ENV))
self._config["provider"] = provider or self._config["provider"] or aws_xray_sdk.core.xray_recorder
self._config["auto_patch"] = auto_patch if auto_patch is not None else self._config["auto_patch"]
self._config["service"] = is_service or self._config["service"]
self._config["disabled"] = is_disabled or self._config["disabled"]
self._config["patch_modules"] = patch_modules or self._config["patch_modules"]
@classmethod
def _reset_config(cls):
cls._config = copy.copy(cls._default_config)