8 lines
216 B
Python
8 lines
216 B
Python
"""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)
|