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 axum-analytics
```rust use axum::{ routing::get, Json, Router, }; use serde::Serialize; use std::net::SocketAddr; use tokio; use actum_analytics::Analytics;
struct JsonData { message: String, }
async fn root() -> Json
async fn main() {
let app = Router::new()
.layer(Analytics::new(
let addr = SocketAddr::from(([127, 0, 0, 1], 8080));
axum::Server::bind(&addr)
.serve(app.into_make_service())
.await
.unwrap();
} ```
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.