zmoog / public-notes

Apache License 2.0
0 stars 1 forks source link

Collect telemetry data during a serverless function execution #2

Open zmoog opened 1 year ago

zmoog commented 1 year ago

Decorator, context manager, and thread local

contextvars https://docs.python.org/3.7/library/contextvars.html (New in version 3.7)

This module provides APIs to manage, store, and access context-local state.

threadlocal vs. contextvars

elasticapm tries to use contextvars and falls back to threadlocal.