Fetch an error group's attribute distribution plot
/apps/{id}/errorGroups/{errorGroupId}/plots/distributionFetch an error group's attribute distribution, occurrence counts broken down by app version, OS, country, network type, locale, and device.
Both versions & version_codes should be present if any one of them
is present.
Authorization
bearerAuth User access token issued at sign-in. Sent as
Authorization: Bearer <access-token> unless cookies are used to send
tokens. The /auth/refresh and /auth/signout endpoints expect the
session's refresh token in the same header format instead.
In: header
Path Parameters
App's UUID.
uuidError group fingerprint.
Query Parameters
Start time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.
End time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.
List of comma separated version identifier strings.
List of comma separated version codes.
List of comma separated OS names.
List of comma separated OS versions.
List of comma separated country codes.
List of comma separated device names.
List of comma separated device manufacturers.
List of comma separated locale strings.
List of comma separated network providers.
List of comma separated network types.
List of comma separated network generations.
Comma-separated list of error source types to include. Accepted values: any combination of error, anr. When omitted, all sources are returned.
Comma-separated list of severity levels to filter by. Accepted values: any combination of fatal, unhandled, handled. Applies only to exception events (type=error); ANRs are unaffected.
true to restrict exception results to custom-tracked only. ANRs are unaffected by this flag; they are included whenever their source is in scope (type is omitted or includes anr).
Code representing combination of filters.
Expression in JSON to filter using user defined attributes.
Response Body
application/json
curl -X GET "https://example.com/apps/497f6eca-6276-4993-bfeb-53cbbbba6f08/errorGroups/string/plots/distribution"{ "app_version": { "1.0.0 (100)": 11, "0.9.5 (95)": 3 }, "os_version": { "Android 13": 8, "Android 12": 6 }, "country": { "US": 10, "IN": 4 }, "network_type": { "wifi": 9, "cellular": 5 }, "locale": { "en-US": 12, "en-IN": 2 }, "device": { "Google - Pixel 7": 7, "Samsung - Galaxy S23": 7 }}Think this page can be better?
Open an issue