Create real-time graphs for gauges like CPU usage and active WebSocket connections with a simple HTTP POST request.
curl -X POST "https://gauge.firchy.com/v1/" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/x-ndjson" \
-d '{
"key": "cpu_usage",
"value": 12,
"timestamp": '$(date +%s)'
}'import requests
import time
response = requests.post(
"https://gauge.firchy.com/v1/",
headers={
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/x-ndjson"
},
json={
"key": "cpu_usage",
"value": 12,
"timestamp": int(time.time())
}
)const response = await fetch(
"https://gauge.firchy.com/v1/",
{
method: "POST",
headers: {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/x-ndjson"
},
body: JSON.stringify({
key: "cpu_usage",
value: 12,
timestamp: Date.now()
})
}
);Simple and predictable pricing with no hidden fees. Start free with no credit card required, upgrade when you need more.
Perfect for getting started and small projects
For production workloads and growing teams