Setup
What the user does
Create the account, then paste the tenant PostgreSQL database URL during setup.
A2EA issues the workspace API key and stores the tenant database route in the control-plane database.
Use the Python package to wrap the function that should emit tracked telemetry into A2EA.
Our Database
What A2EA stores
OrganizationsYes
API keysYes
Billing statusYes
Tenant DB routeYes
Usage countersYes
Customer Database
What stays in the tenant PostgreSQL database
Telemetry logsYes
DurationsYes
OutcomesYes
Verification valuesYes
Performance-score inputsYes
Dashboard
What each page is for
Shows whether the workspace is connected and whether live value data has started to arrive.
Shows task-type aggregates and the live activity stream from the tenant database.
Shows the API key, the saved PostgreSQL route, and the SDK integration steps.
Shows billing status, current usage totals, pending usage not yet reported, and Stripe checkout entry.
Python SDK
Install and run one tracked function call
pip install a2ea-py
from a2ea import A2EAClient
client = A2EAClient(
api_key="your X-A2EA-API-Key"
)@client.track_agent(task_type="data_processing")
def run_agent(payload):
return process(payload)