Charting

API Documentation for the BugSplat Charting Endpoints

Get the number of crashes posted to BugSplat over time. This data can be filtered by application names, application versions, crash group (stack key), start date and end date.

Crash History

GET https://app.bugsplat.com/api/crashHistory

Returns chartable crash data for the specified database, appNames, appVersions, startDate, and endDate.

Query Parameters

NameTypeDescription

endDate

string

ISO 8601 timestamp representing the end date of the specified time period

startDate

string

ISO 8601 timestamp representing the start date of the specified time period

appVersions

array

Comma-separated list of versions to query

appNames

array

Comma-separated list of applications to query

database

string

BugSplat database containing crash history

{
    "TotalRows": 1,
    "TotalCrashes": 20,
    "StartDay": 738387,
    "EndDay": 738388,
    "Rows": [
        {
            "appName": "All",
            "series": [
                {
                    "day": 738387,
                    "timestamp": 1629417600,
                    "totalCrashCount": 20
                },
                {
                    "day": 738388,
                    "timestamp": 1629504000,
                    "totalCrashCount": 0
                }
            ]
        }
    ]
D}

Stack Key Daily Volume

GET https://app.bugsplat.com/api/stackKeyDailyVolume

Returns chartable volumes for a given database and a comma-separated list of stackKeyIds.

Query Parameters

NameTypeDescription

stackKeyIds

array

Comma-separated list of stackKeyIds to query

database

string

BugSplat database containing a list of stackKeyIds

[
    [
        "Date",
        "myConsoleCrasher!MemoryException(150)"
    ],
    [
        "2021-07-26",
        14
    ]
]

Last updated