MCPcopy Index your code
hub / github.com/feast-dev/feast / track_push

Function track_push

sdk/python/feast/metrics.py:362–366  ·  view source on GitHub ↗

Increment the push request counter.

(push_source: str, mode: str)

Source from the content-addressed store, hash-verified

360
361
362def track_push(push_source: str, mode: str):
363 """Increment the push request counter."""
364 if not _config.push:
365 return
366 push_request_count.labels(push_source=push_source, mode=mode).inc()
367
368
369def track_online_store_read(duration_seconds: float):

Calls 1

labelsMethod · 0.80