Docs

Understand setup, data ownership, and the SDK path.

Loading workspace documentation context.

Connecting
Setup

What the user does

1Create workspace

Create the account, then paste the tenant PostgreSQL database URL during setup.

2Receive API key

A2EA issues the workspace API key and stores the tenant database route in the control-plane database.

3Install the SDK

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

Home

Shows whether the workspace is connected and whether live value data has started to arrive.

Telemetry

Shows task-type aggregates and the live activity stream from the tenant database.

API Keys

Shows the API key, the saved PostgreSQL route, and the SDK integration steps.

Billing

Shows billing status, current usage totals, pending usage not yet reported, and Stripe checkout entry.

Python SDK

Install and run one tracked function call

1Install
pip install a2ea-py
2Initialize
from a2ea import A2EAClient

client = A2EAClient(
    api_key="your X-A2EA-API-Key"
)
3Track
@client.track_agent(task_type="data_processing")
def run_agent(payload):
    return process(payload)