Training
Learning path
Use advance techniques in canvas apps to perform custom updates and optimization - Training
Use advance techniques in canvas apps to perform custom updates and optimization
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Important
Visual Studio App Center is scheduled for retirement on March 31, 2025. While you can continue to use Visual Studio App Center until it is fully retired, there are several recommended alternatives that you may consider migrating to.
App Center Analytics helps you understand user behavior and customer engagement to improve your app. The SDK automatically captures session count and device properties like model, OS version, etc. You can define your own custom events to measure things that matter to you. All the information captured is available in the App Center portal for you to analyze the data.
Follow the SDK Getting started section if you haven't set up the SDK in your application yet.
Once you add App Center Analytics to your app and start the SDK, it will automatically track sessions and device properties like OS Version, model, etc. without writing any additional code.
The SDK automatically reports a user's country code if the device has a mobile data modem and a SIM card installed. WiFi-only devices won't report a country code by default. To set the country code of those users, you must retrieve your user's location yourself and use the setCountryCode:
method in the SDK:
AppCenter.setCountryCode("en");
AppCenter.setCountryCode("en")
Note
For country code to be displayed on Analytics sessions, AppCenter.setCountryCode
must be called prior to calling
AppCenter.start
.
You can track your own custom events with up to 20 properties to understand the interaction between your users and the app.
Once you've started the SDK, use the trackEvent()
method to track your events with properties. You can send up to 200 distinct event names. Also, there's maximum character limits:
event name
.event property name
& event property value
.Map<String, String> properties = new HashMap<>();
properties.put("Category", "Music");
properties.put("FileName", "favorite.avi");
Analytics.trackEvent("Video clicked", properties);
val properties = hashMapOf("Category" to "Music", "FileName" to "favorite.avi")
Analytics.trackEvent("Video clicked", properties)
Properties for events are entirely optional – if you just want to track an event, use this sample instead:
Analytics.trackEvent("Video clicked");
Analytics.trackEvent("Video clicked")
You can track business critical events that have higher importance than other events.
Flags.NORMAL
in the API) or Critical (Flags.CRITICAL
in the API).You can use the following API to track an event as Critical:
Map<String, String> properties = new HashMap<>();
properties.put("Category", "Music");
properties.put("FileName", "favorite.avi");
Analytics.trackEvent("eventName", properties, Flags.CRITICAL);
// If you're using name only, you can pass null as properties.
val properties = hashMapOf("Category" to "Music", "FileName" to "favorite.avi")
Analytics.trackEvent("Video clicked", properties, Flags.CRITICAL)
// If you're using name only, you can pass null as properties.
Pausing the event transmission can be useful in scenarios when the app needs to control the network bandwidth for more business critical needs. You can pause sending logs to the App Center backend. When paused, events can still be tracked and saved, but they aren't sent right away. Any events your app tracks while paused will only be sent once you call resume
.
Analytics.pause();
Analytics.resume();
Analytics.pause()
Analytics.resume()
You can enable and disable App Center Analytics at runtime. If you disable it, the SDK won't collect any more analytics information for the app.
Analytics.setEnabled(false);
Analytics.setEnabled(false)
To enable App Center Analytics again, use the same API but pass true
as a parameter.
Analytics.setEnabled(true);
Analytics.setEnabled(true)
The state is persisted in the device's storage across application launches.
This API is asynchronous, you can read more about that in our App Center Asynchronous APIs guide.
Note
This method must only be used after Analytics
has been started.
You can also check if App Center Analytics is enabled or not.
Analytics.isEnabled();
Analytics.isEnabled()
This API is asynchronous, you can read more about that in our App Center Asynchronous APIs guide.
Note
This method must only be used after Analytics
has been started, it will always return false
before start.
By default, the session ID depends on the lifecycle of the application. If you want to control the start of a new session manually, follow the next steps:
Note
Pay attention that each call of Analytics.StartSession() API will generate a new session. If in manual session tracker mode this API will not be called then all sending logs will have a null session value.
Note
Pay attention that after a new application launch the session id will be regenerated.
Analytics.enableManualSessionTracker();
Analytics.enableManualSessionTracker()
startSession
API after the AppCenter.start
:Analytics.startSession();
Analytics.startSession()
By default, the SDK stores all the event logs up to 10 MB. Developers can use an API to increase the storage size and the SDK will keep storing logs until the storage is full.
When there's no network connectivity, the SDK saves up to 10 MB of logs in the local storage. Once the storage is full, the SDK starts discarding old logs to make room for the new logs. Once network connectivity returns, the SDK sends logs in the batch of 50 or after every 6 seconds (by default).
Note
The logs older than 25 days won't be accepted by the backend.
The App Center SDK uploads logs in a batch of 50 and if the SDK doesn't have 50 logs to send, it will still send logs after 6 seconds (by default). There can be a maximum of three batches sent in parallel. The transmission interval can be changed:
// Change transmission interval to 10 seconds.
Analytics.setTransmissionInterval(10000);
// Change transmission interval to 10 seconds.
Analytics.setTransmissionInterval(10000)
The transmission interval value must be between 6 seconds and 86400 seconds (one day) and this method must be called before the service is started.
App Center SDK supports back-off retries on recoverable network errors. Below is the retry logic:
Back-off logic
Training
Learning path
Use advance techniques in canvas apps to perform custom updates and optimization - Training
Use advance techniques in canvas apps to perform custom updates and optimization