Measure logo
REST API ReferenceDashboard APIErrors

Fetch an error group's attribute distribution plot

GET/apps/{id}/errorGroups/{errorGroupId}/plots/distribution

Fetch 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
AuthorizationBearer <token>

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

id*string

App's UUID.

Formatuuid
errorGroupId*string

Error group fingerprint.

Query Parameters

from?string

Start time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.

to?string

End time boundary for temporal filtering. ISO8601 Datetime string. If not passed, a default value is assumed.

versions?string

List of comma separated version identifier strings.

version_codes?string

List of comma separated version codes.

os_names?string

List of comma separated OS names.

os_versions?string

List of comma separated OS versions.

countries?string

List of comma separated country codes.

device_names?string

List of comma separated device names.

device_manufacturers?string

List of comma separated device manufacturers.

locales?string

List of comma separated locale strings.

network_providers?string

List of comma separated network providers.

network_types?string

List of comma separated network types.

network_generations?string

List of comma separated network generations.

type?string

Comma-separated list of error source types to include. Accepted values: any combination of error, anr. When omitted, all sources are returned.

severity?string

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.

custom?string

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).

filter_short_code?string

Code representing combination of filters.

ud_expression?string

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  }}
Empty
Empty
Empty
Empty
Empty

Think this page can be better?

Open an issue