Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.3k
Apitally - Metrics, logs, and alerts for Echo#2785
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
-
Hey Echo community, When shipping APIs, having access to logs and metrics is crucial to understand API usage and troubleshoot issues. However, I've found that most monitoring tools bury these in bloated dashboards that are a pain to use. That's why I builtApitally, a simple API monitoring and analytics tool for Echo that focuses on what actually matters for APIs:
Apitally'sopen-source SDK integrates with Echo via a lightweight middleware, which captures key metrics for all API requests & responses, aggregates them and asynchronously ships them to Apitally in regular intervals, without affecting performance. Setup is super easy. You just add a few lines of code to your app ⬇️ import ( apitally"github.com/apitally/apitally-go/echo""github.com/labstack/echo/v4")funcmain() {e:=echo.New()config:=&apitally.Config{ClientId:"your-client-id",Env:"dev",// or "prod" etc. }e.Use(apitally.Middleware(e,config))// ... rest of your code ...} If you'd like to try it out, there's asetup guide for Echo. Screenshot of the Apitally dashboard ⬇️ Please let me know what you think! |
BetaWas this translation helpful?Give feedback.
All reactions
👍 1
