Firchy Gauge

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()
    })
  }
);
Scroll to explore

Pricing

Simple and predictable pricing with no hidden fees. Start free with no credit card required, upgrade when you need more.

Free

$0 /forever

Perfect for getting started and small projects

  • 61 requests/min
  • 10,000 rows storage
  • 30 days retention
  • Real-time graphs
  • HTTPS encryption
Go to Dashboard

Pro

$4.99 /per month

For production workloads and growing teams

  • 610 requests/min
  • 100,000 rows storage
  • 30 days retention
  • Real-time graphs
  • HTTPS encryption
Go to Dashboard