Monitoring and analytics for FastAPI applications.
Project description
FastAPI Analytics
A free lightweight API analytics solution, complete with a dashboard.
Getting Started
1. Generate an API key
Head to https://apianalytics.dev/generate to generate your unique API key with a single click. This key is used to monitor your API server and should be stored privately. It's also required in order to view your API analytics dashboard and data.
2. Add middleware to your API
Add our lightweight middleware to your API. Almost all processing is handled by our servers so there is minimal impact on the performance of your API.
pip install fastapi-analytics
import uvicorn
from fastapi import FastAPI
from api_analytics.fastapi import Analytics
app = FastAPI()
app.add_middleware(Analytics, api_key=<API-KEY>) # Add middleware
@app.get('/')
async def root():
return {'message': 'Hello World!'}
if __name__ == "__main__":
uvicorn.run("app:app", reload=True)
Custom mapping functions can be provided to override the default behaviour and tailor the retrival of information about each incoming request to your API's environment and usage.
from fastapi import FastAPI
from api_analytics.fastapi import Analytics, Config
config = Config()
config.get_ip_address = lambda request: request.headers.get('X-Forwarded-For', request.client.host)
config.get_user_agent = lambda request: request.headers.get('User-Agent', '')
app = FastAPI()
app.add_middleware(Analytics, api_key=<API-KEY>, config=config) # Add middleware
3. View your analytics
Your API will now log and store incoming request data on all valid routes. Your logged data can be viewed using two methods:
- Through visualizations and statistics on our dashboard
- Accessed directly via our data API
You can use the same API key across multiple APIs, but all your data will appear in the same dashboard. We recommend generating a new API key for each additional API server you want analytics for.
Dashboard
Head to https://apianalytics.dev/dashboard and paste in your API key to access your dashboard.
Demo: https://apianalytics.dev/dashboard/demo
Data API
Logged data for all requests can be accessed via our REST API. Simply send a GET request to https://apianalytics-server.com/api/data
with your API key set as X-AUTH-TOKEN
in headers.
Python
import requests
headers = {
"X-AUTH-TOKEN": <API-KEY>
}
response = requests.get("https://apianalytics-server.com/api/data", headers=headers)
print(response.json())
Node.js
fetch("https://apianalytics-server.com/api/data", {
headers: { "X-AUTH-TOKEN": <API-KEY> },
})
.then((response) => {
return response.json();
})
.then((data) => {
console.log(data);
});
cURL
curl --header "X-AUTH-TOKEN: <API-KEY>" https://apianalytics-server.com/api/data
Parameters
You can filter your data by providing URL parameters in your request.
date
- specifies a particular day the requests occurred on (YYYY-MM-DD
)dateFrom
- specifies the lower bound of a date range the requests occurred in (YYYY-MM-DD
)dateTo
- specifies the upper bound of a date range the requests occurred in (YYYY-MM-DD
)ipAddress
- an IP address string of the clientstatus
- an integer status code of the responselocation
- a two-character location code of the client
Example:
curl --header "X-AUTH-TOKEN: <API-KEY>" https://apianalytics-server.com/api/data?dateFrom=2022-01-01&dateTo=2022-06-01&status=200
Monitoring
Active API monitoring can be set up by heading to https://apianalytics.dev/monitoring to enter you API key. Our servers will regularly ping chosen API endpoints to monitor uptime and response time.
Data and Security
All data is stored securely in compliance with The EU General Data Protection Regulation (GDPR).
For any given request to your API, data recorded is limited to:
- Path requested by client
- Client IP address
- Client operating system
- Client browser
- Request method (GET, POST, PUT, etc.)
- Time of request
- Status code
- Response time
- API hostname
- API framework (FastAPI, Flask, Express etc.)
Data collected is only ever used to populate your analytics dashboard. All stored data is anonymous, with the API key the only link between you and your logged request data. Should you lose your API key, you will have no method to access your API analytics.
Data Deletion
At any time you can delete all stored data associated with your API key by going to https://apianalytics.dev/delete and entering your API key.
API keys and their associated logged request data are scheduled to be deleted after 6 months of inactivity.
Contributions
Contributions, issues and feature requests are welcome.
- Fork it (https://github.com/tom-draper/api-analytics)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file fastapi-analytics-1.2.2.tar.gz
.
File metadata
- Download URL: fastapi-analytics-1.2.2.tar.gz
- Upload date:
- Size: 6.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.3 requests/2.31.0 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/5.0.0 keyring/23.9.3 rfc3986/1.5.0 colorama/0.4.4 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 25e32dcaa5488a1d8c866b58711715bfc688cdf88e480786ef28afcd62ad39c3 |
|
MD5 | 54f432950702e82885c73c366ec7fc98 |
|
BLAKE2b-256 | 0ba17aba8341c2f7dbd23cf305e4b498c9cd0aec6d83b670aa23937f9ca14b1e |
Provenance
File details
Details for the file fastapi_analytics-1.2.2-py3-none-any.whl
.
File metadata
- Download URL: fastapi_analytics-1.2.2-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.3 readme-renderer/37.3 requests/2.31.0 requests-toolbelt/0.10.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/5.0.0 keyring/23.9.3 rfc3986/1.5.0 colorama/0.4.4 CPython/3.10.11
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 720ffa6d8eb63662831d4cd040083e09a4c6516dac4f9037c2d1c5c2aa3d7777 |
|
MD5 | 9f8579eea3a02479b2780e126326794e |
|
BLAKE2b-256 | f61d331c810d8395b1e4728c28e11226cc47baee157297c59c99e2b7246d4892 |