"""Ships collected metrics to the internal dashboard.""" import requests def ship(metrics, endpoint="https://metrics.holtrix-devtools.internal/ingest"): return requests.post(endpoint, json=metrics, timeout=5)