GitNexus/gitnexus/test/fixtures/lang-resolution/python-same-name-collision/metrics.py

10 lines
206 B
Python

class MetricsClient:
pass
def get_metrics():
"""Return all metrics from the metrics module."""
return {"cpu": 0.5, "memory": 0.8}
def emit(event_name):
"""Emit a metric event."""
pass