Skip to content

Instantly share code, notes, and snippets.

View AlecRosenbaum's full-sized avatar

Alec Rosenbaum AlecRosenbaum

View GitHub Profile
@AlecRosenbaum
AlecRosenbaum / gc_instrument.py
Last active May 8, 2025 12:20
Instrumenting The Python Garbage Collector with OpenTelemetry
import gc
import time
from collections import defaultdict
import attrs
from opentelemetry import metrics
from opentelemetry.metrics import CallbackOptions, Observation
@attrs.define