A lightweight API analytics solution, complete with a dashboard.
Head to https://my-api-analytics.vercel.app/generate to generate your unique API key with a single click. This key is used to monitor your specific API, so keep it secret! It's also required in order to view your APIs analytics dashboard.
Add our lightweight middleware to your API. Almost all processing is handled by our servers so there should be virtually no impact on your APIs performance.
bash
cargo add actix-analytics
```rust use actixweb::{get, web, Responder, Result}; use serde::Serialize; use actixanalytics::Analytics;
struct JsonData { message: String, }
async fn index() -> Result
async fn main() -> std::io::Result<()> { use actix_web::{App, HttpServer};
HttpServer::new(|| {
App::new()
.wrap(Analytics::new(<api_key>))
.service(index)
})
.bind(("127.0.0.1", 8080))?
.run()
.await
} ```
Your API will log requests on all valid routes. Head over to https://my-api-analytics.vercel.app/dashboard and paste in your API key to view your dashboard.