Visual Studio App Center (microsoft/appcenter-logs
)
operated by: Microsoft Ireland Operations Ltd.
(get company information on datarequests.org, go to tracker entry in the Exodus database)Visual Studio App Center is a collection of services by Microsoft to help developers “continuously build, test, release, and monitor apps for every platform.”
Among those services are:
- App Center Diagnostics, to “[collect] information about crashes and errors” in apps.
- App Center Analytics, which “helps [developers] understand user behavior and customer engagement […]. The SDK automatically captures session count and device properties like model, OS version, etc. [Developers] can define [their] own custom events […].” By tracking events, developers can “learn more about […] users’ behavior and understand the interaction between […] users and […] apps.”
Regardless of the particular SDK or service, all data sent to App Center goes to a single endpoint.
Endpoint URLs
These are URLs or regexes of endpoints the tracker sends data to. We use these to determine which adapter to apply to a request. Some trackers use the same endpoint for several formats. In this case we use additional logic to match the adapter to the request, refer to the code for more information.https://in.appcenter.ms/logs
Decoding steps
Every tracking library has its own way of transmitting tracking data, often even several. They are regularly pretty convoluted, nested encoding schemes. Because of that, the adapter needs to decode the request information into a consistent format. We try to keep keys and paths intact, but the structure results from our decoding. All steps used in the decoding for this adapter are documented here.- Parse the request body as JSON. Store that in the result for the request body.
- Get the property at JSONPath
Install-ID
in the request headers. Store that in the result for the request headers atInstall-ID
.
1res.body = parseJson(body)
2res.header.Install-ID = header.Install-ID
Observed data transmissions
This is data that we observed being transmitted by this tracker. Not every request contains all of this data. The context of the data describes where we found the data in the request, the path describes the location of the data in the decoded request. The examples are a selection of observed values.References
- Documentation for
logs.*.device.appNamespace
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.appVersion
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.appBuild
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.carrierName
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.locale
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.oemName
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.model
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.osName
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.osVersion
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.osBuild
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.osApiLevel
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
Install-ID
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.sid
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.userId
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.screenSize
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.screenSize
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.timeZoneOffset
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected - Documentation for
logs.*.device.sdkVersion
: https://learn.microsoft.com/en-us/appcenter/sdk/data-collected