Why this matters
SDK launches do not create value until customers actually upgrade. Product and developer relations teams need to know whether a release is spreading or sitting unread in a changelog.
What you get
- Adoption curve by SDK version and language
- Accounts still using deprecated versions
- API usage volume by version
- Upgrade targets for CS or developer relations
Walk through it
Did customers adopt the SDK version we released last week?
I’ll find the latest release, then group SDK initialization and method calls by version.
GET /v1/projects/:project_id/deploys { project_id: "default", limit: 5 }
POST /v1/projects/:project_id/analytics/query {
project_id: "default",
hogql: "SELECT properties.sdk_version AS version, properties.language AS language, count(DISTINCT properties.account_id) AS accounts, count() AS events FROM events WHERE event IN ('sdk_initialized','sdk_method_called') AND timestamp > now() - INTERVAL 30 DAY GROUP BY version, language ORDER BY accounts DESC"
}
The output
The agent returns adoption by version and language, then calls out large customers still on old versions. It should recommend docs, outreach, or compatibility fixes depending on the pattern.
Setting it up
Emit SDK usage events from the customer’s application or API edge when requests include SDK metadata. Do not imply Agentry has an SDK; this recipe is about your product’s customer-facing SDKs.
Variations
- “Show Python SDK adoption after the release.”
- “Which enterprise accounts are still on deprecated versions?”
- “Compare error rate by SDK version.”