Error Analysis
Prerequisites
Section titled PrerequisitesScreen tracking implemented
Section titled Screen tracking implementedTracking will start at the 1st screenview event, it is required to have screen tracking implemented. Make sure to follow the Android Track screens sections.
Reminder about User consent
Section titled Reminder about User consentIf you are in the process of implementing the SDK for the 1st time (or choose to take this update as an opportunity to review your Privacy related implementation), make sure to follow the Android Privacy sections.
API errors
Section titled API errorsAutomatic network inspection
Section titled Automatic network inspectionBy using code instrumentation, network calls will be instrumented to collect network data. This way, two largely used network stacks are supported, and all the libraries that use them:
Adding the Gradle plugin
Section titled Adding the Gradle pluginWith the use of a Gradle plugin, an instrumentation of your code will be performed to collect the data about network errors.
In your root-level (project-level) Gradle file (<project>/build.gradle
or <project>/build.gradle.kts
), add the Contentsquare Network Gradle plugin to the plugins block:
Using the plugins DSL:
Using legacy plugin application:
Using the plugins DSL:
Using legacy plugin application:
In your module (app-level) Gradle file (usually <project>/<app-module>/build.gradle
or <project>/<app-module>/build.gradle.kts
), add the Contentsquare Network Gradle plugin:
Using the plugins DSL:
Using legacy plugin application:
Using the plugins DSL:
Using legacy plugin application:
Task added
Section titled Task addedThe plugin adds new tasks for network code instrumentation: transformVariantClassesWithAsm
This task can be time consuming, and should be disabled for development build.
Configure Gradle plugin
Section titled Configure Gradle pluginBy default the plugin is enabled for each variant, there are three ways to disable the Gradle plugin:
Build type
Section titled Build typeBy flavor
Section titled By flavorWith a Gradle properties
Section titled With a Gradle propertiesCommand line:
Manual inspection
Section titled Manual inspectionOkHttp interceptor
Section titled OkHttp interceptorIf your project is using OkHttp client, an interceptor (ErrorAnalysisInterceptor
) can be added to collect all the network errors:
Custom implementation
Section titled Custom implementationIf no other solution works, a custom implementation can be created via the newNetworkMetric
method.
Multiple data will need to be gathered: URL and method at the creation of the metric, and status code after the request is done.
Also calling start
(before the request) and stop
(after all the rest) methods for time metrics to be collect and to send the event.
Removing Personal Data in request URL path
Section titled Removing Personal Data in request URL pathBy default, the API errors feature collects the URL path of the failed API requests. To prevent the collection of Personal Data in the URL path, you can rewrite the request URL path with the ErrorAnalysis.setUrlMaskingPatterns
SDK API.
Replace a step of the path - meaning between two slashes (/) - containing Personal Data with a variable:
:user_id
becomes CS_ANONYMIZED_USER_ID:address
becomes CS_ANONYMIZED_ADDRESS
Example
Section titled ExampleResult
Section titled ResultURL before masking | URL after masking |
---|---|
https://www.contentsquare.com/users/123/address/castle+black | https://www.contentsquare.com/users/CS_ANONYMIZED_USER_ID/address/CS_ANONYMIZED_ADDRESS |
Validate API error integration
Section titled Validate API error integrationValidate API error collection is enabled
Section titled Validate API error collection is enabledIf in-app features are enabled, an info log should appear when API Error collection has successfully been enabled (see Android Debugging and Logging section).:
Validate API error collection
Section titled Validate API error collectionIf you have logging enabled, you will see API errors:
- Displayed in Contentsquare Log Visualizer.
- As an Info log in Logcat:
How API errors works
Section titled How API errors worksInitialization
Section titled InitializationThe way our SDK works is by auto-starting with the application launch and collects the API errors through the instrumented code added by the Gradle plugin.
Configuration
Section titled ConfigurationOnce started, our SDK fetches its config from our servers. It will start collecting data from network events if the API errors setting is enabled in the config (this is handled by the Contentsquare team).
API errors collection
Section titled API errors collectionThe SDK monitors only the API errors with response code equal or above 400, and generates analytics data. These events are then locally stored, and eventually sent to our servers in batches.
Sending API errors data
Section titled Sending API errors dataFor each network error, a new event will be sent in analytics and Session Replay data. Check the following sections to learn more about how data is processed and sent:
API Troubleshooting Details
Section titled API Troubleshooting DetailsAPI errors troubleshooting details enables you to collect more information about API errors so you can troubleshoot errors faster.
With this feature you will be able to see three types of additional API error details in the Event Stream of Session Replay.
- The HTTP headers of the request and the response.
- The body (the data sent by the request or received in the response).
- The query parameters of the request endpoint (of the URL of the information you request for).
See API Troubleshooting Details ↗ for more details.
Collected data points
Section titled Collected data pointsOnly network calls in error (response code above 400) will be collected. Here the exhaustive list of data collected:
- Response code
- URL (without query strings)
- HTTP method
- Timestamp of the request
- Timestamp of the response
Known limitations and recommendations
Section titled Known limitations and recommendationsConflict with Firebase Performance using code instrumentation
Section titled Conflict with Firebase Performance using code instrumentationCode instrumentation does not work well with Firebase Performance plugin. Network events will not be logged for OkHttp when using Contentsquare Error Analysis network and Firebase performance plugin (only one of the two will log events). If you want to use both libraries, prefer using interceptors than code instrumentation.
Crash Reporter
Section titled Crash ReporterUpload mapping file
Section titled Upload mapping fileAndroid mapping files are generated during the process of obfuscating Android application code using tools like ProGuard. A mapping file for your app will be generated for all obfuscated builds ↗ at compile time.
Download the mapping file example generated when building the Contentsquare Android sample app ↗.
In order to produce readable crash reports from builds that have been obfuscated, Contentsquare requires to upload the mapping file produced by your build to our servers. To simplify this process, we’ve provided a Gradle plugin that you can integrate into your build. It adds a distinct Gradle task that will be executed immediately after the build is done. This new task will be automatically triggered on assemble task for any minified build.
Adding the Gradle plugin
Section titled Adding the Gradle pluginIn your root-level (project-level) Gradle file (<project>/build.gradle
or <project>/build.gradle.kts
), add the Contentsquare Crash Gradle plugin to the plugins block:
Using the plugins DSL:
Using legacy plugin application:
Using the plugins DSL:
Using legacy plugin application:
In your module (app-level) Gradle file (usually <project>/<app-module>/build.gradle
or <project>/<app-module>/build.gradle.kts
), add the Contentsquare Crash Gradle plugin:
Using the plugins DSL:
Using legacy plugin application:
Using the plugins DSL:
Using legacy plugin application:
Configuring the Gradle Plugin
Section titled Configuring the Gradle PluginTo use the plugin, you must provide it with the relevant credentials to be able to upload the mapping file.
Get project ID
Section titled Get project ID- Login to the Contentsquare platform on https://app.contentsquare.com ↗
- Make sure to be on the right project
- The project ID can be found in the URL query parameter
project
:https://app.contentsquare.com/#/{MODULE_NAME}?project={PROJECT_ID}&hash={HASH}
Get project credentials
Section titled Get project credentialsFollow the dedicated documentation from the Help Center to get the client ID and client Secret: How to create API credentials ↗.
Use credentials
Section titled Use credentialsYou can do this by setting the uploadCredentials
property of the errorAnalysisCrash extension in your app-level build.gradle
or build.gradle.kts
file, as shown below. The errorAnalysisCrash extension is available on all build types and product flavours.
Disable Upload
Section titled Disable UploadBy default, the mapping file will be uploaded automatically. If you need to disable the upload, you can do it by adding a specific flag mappingFileUploadEnabled
to the plugin configuration:
It is also possible to disable the upload using the command line when the assemble task is triggered by using the flag errorAnalysisCrashMappingFileUploadEnabled
as follow:
Doing that, the upload task will be disabled and you will see the following log:
ProGuard Configuration
Section titled ProGuard ConfigurationTo ensure that we can provide line numbers and file names in the crash reports, add the following configuration to your ProGuard file:
Validate Crash reporter integration
Section titled Validate Crash reporter integrationValidate crash collection is activated
Section titled Validate crash collection is activatedIf in-app features are enabled, an info log should appear when the Crash reporter has successfully been initialized (see Android Debugging and Logging section).:
Validate crash reporting
Section titled Validate crash reportingTo test that the Crash Reporter is working properly, you can force a crash in your application. The next time you start your application, the crash will be sent to our servers. If you have logging enabled, you will see the upload reflected in the log:
How Crash Reporter works
Section titled How Crash Reporter worksInitialization
Section titled InitializationCrash Reporter is started automatically and begins to report basic information for crashes in your application when it is launched.
Configuration
Section titled ConfigurationOnce started, our SDK fetches its configuration from our servers. It will start reporting crashes if the Crash Reporter setting is enabled (this is handled by the Contentsquare team).
Reporting
Section titled ReportingWhen a crash occurs, a report is created and stored locally in the device. Once the app is launched again, the report is sent to our servers and then removed from the local storage.
Sending crash data
Section titled Sending crash dataFor each crash, a new event will be sent to Analytics and Session Replay data when the app is launched again after the crash occurred and the network conditions allow for the server to be reached.
Collected data points
Section titled Collected data pointsThe Crash Reporter will capture any crashes caused by an unhandled exception in applications written in Java or Kotlin. It will collect information about the application, system, process, threads, stack traces and some other event metadata you can find in collected data points
Known limitations and recommendations
Section titled Known limitations and recommendationsNative crashes from applications written using C or C++ are currently not supported.
Compatibility with other crash reporters
Section titled Compatibility with other crash reportersIt is possible that the Crash Reporter will work with other SDKs, but we cannot guarantee it. Android has a global error handling class and therefore we rely on other SDKs forwarding the error on to us in the event of a crash, should they have been registered first. If the Contentsquare Crash Reporter is registered first, it will forward on errors to any other registered handlers.
Based on our tests, we can confirm it is compatible with Firebase Crashlytics.
WebView errors
Section titled WebView errorsErrors occurring in web pages loaded in WebViews can be collected if Webview tracking is setup in your app.
See 📚 Webview Tracking implementation.
Once WebView tracking is implemented, errors collection can be set up.
See 📚 Errors (in WebView)
Compatibility
Section titled CompatibilityDependencies list
Section titled Dependencies listPackage | Name | Version |
---|---|---|
androidx.annotation | annotation | 1.5.0 |
Impact on Performance
Section titled Impact on PerformanceWe always strive to be non-intrusive, and transparent to the developers of the client app. We apply this rule on the performance as well. These are the technical specifics we can share on performance, if you have any questions feel free to reach out to us.
The following performance results were obtained under the following conditions:
Condition | Value |
---|---|
Device model | Pixel 5 |
Android version | 13 |
We used Android Microbenchmark ↗ to measure the time added by our implementation.
The instrumented code added is running in less than 1ms per request: our benchmarks show less 400µs.
About CPU and memory, the overhead of adding the collection of network error is negligible.
Migrating from versions 4.24.1 and older of Error Analysis
Section titled Migrating from versions 4.24.1 and older of Error AnalysisIn versions prior to 4.25.0 of the Contentsquare SDK, the Error Analysis module was provided as a distinct artifact. To integrate it into your application, a dedicated Gradle dependency was required. Starting from version 4.25.0, this is no longer the case.
If you had previously integrated the Error Analysis module into your application using the standalone artifact, you will need to remove it from your dependency list.
Should you fail to follow these steps you will see one of the following errors.
In the event of not removing the error-analysis module and upgrading the version, it will not be found:
In the event of not removing the error-analysis module and keeping it on version 4.24.0, you will see a list of duplicate classes found: