15 Jun 2022 05:11 AM - last edited on 20 Jun 2022 11:13 AM by MaciejNeumann
Hi everyone,
We have come across challenge where the mobile application instrumentation using SDK doesn't support SQLlite monitoring out of the box. Is there any documentation or reference available if the integration is possible defining some custom scripts (example for android native app) can be shared here will be of help.
I am aware we can explicitly share metrics to DT using custom agents but need a documentation reference to share it with client.
Solved! Go to Solution.
15 Jun 2022 07:36 AM
Hello @techean ,
mobile app instrumentation is about digital (user) experience, not about the technical implementation. The focus is to capture user actions and (optionally) further activities triggered from the actions. Some activities such as network calls or lifecycle activities are captured. For all other activities you need to call the SDK in the part of your code where the activity is started and finished.
You need to create an action (root action or child action depending on your situation). See the docs:
Also, don't forget to capture and send errors using reportError methods - if they matter to the user. No errors except network calls or crashes are captured by the Mobile App SDKs.
Julius
21 Jun 2022 12:19 PM
Julius, I have gone through this documentation, so its left with the developer now to define custom errors right if I need to summarize this?
21 Jun 2022 05:51 PM
Correct. Reporting errors, values and creating custom user actions or child actions to existing actions which will represent the calls you need to observe in the app.