mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
10 lines
206 B
Python
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
|