Echo API monitoring & analytics
Echo's middleware chain makes instrumentation clean: e.Use(beaconecho.Middleware(bc)) and Beacon captures every request — method, the route template (/users/:id), status, and latency — shipping it in non-blocking batches with zero third-party deps pulled into your binary beyond Echo itself.
100,000 requests per month on the free tier — no credit card to start.
Add Beacon to Echo in two steps
Drop-in middleware. The SDK defaults to Beacon's hosted ingest endpoint, so you only need a
project ingest key — set it as BEACON_INGEST_KEY in your environment.
go get github.com/kb-gardner/beaconhq-go/echo
package main
import (
"context"
"os"
"github.com/labstack/echo/v4"
"github.com/kb-gardner/beaconhq-go"
beaconecho "github.com/kb-gardner/beaconhq-go/echo"
)
func main() {
bc, _ := beaconhq.New(beaconhq.Config{APIKey: os.Getenv("BEACON_INGEST_KEY")})
defer bc.Close(context.Background())
e := echo.New()
e.Use(beaconecho.Middleware(bc))
e.GET("/users/:id", func(c echo.Context) error {
return c.JSON(200, map[string]string{"id": c.Param("id")})
})
_ = e.Start(":8080")
}
Create a project in the dashboard to get your ingest key, then deploy. Traffic, latency, errors, and endpoints populate in real time. Full setup in the docs.
Everything you need to keep your Echo API healthy
One place for traffic, latency, errors, uptime, and scheduled-job health — built for teams who need to know what their API is doing right now.
Traffic & latency percentiles
Per-request volume with p50/p95/p99 latency, so you see real tail latency — not just averages.
Error rates & error explorer
Track 4xx/5xx over time and drill into the exact failing requests, status codes, and endpoints behind an incident.
Endpoint & consumer breakdowns
See which endpoints and which API consumers drive your traffic, errors, and slowest responses — ranked and filterable.
Request-log explorer
A searchable log of individual requests — method, path, status, latency, consumer — the fast path from a metric spike to the requests behind it.
Uptime, cron & heartbeat monitoring
Synthetic uptime checks plus dead-man's-switch heartbeat monitoring for cron jobs and background workers.
Status pages & alerts
Public status pages and multi-channel alerts — email, Slack, PagerDuty, Discord, Teams, and signed webhooks — when something breaks.
Start monitoring your Echo API today
100,000 requests per month on the free tier — no credit card to start. Connect your first service in minutes.