Upgrade to PRO for Only $50/Year—Limited-Time Offer! 🔥

Efficient Android app monitoring

Efficient Android app monitoring

Monitoring is essential in the development of Android apps, but achieving efficient monitoring is the ultimate goal for every developer!

In this talk, we'll reveal some tips and strategies for implementing efficient monitoring using commonly used tools such as Firebase Crashlytics or Performance libraries, debug libraries like Chucker or log management platforms like Datadog. By unleashing the full potential of these tools, you'll learn how to proactively anticipate issues and react promptly and effectively when problems arise, by that enhancing your app performances and user experience.

Discover how monitoring extends far beyond a crash or a simple log 🚀

Julien Salvi

November 30, 2024
Tweet

More Decks by Julien Salvi

Other Decks in Programming

Transcript

  1. 1 The Power of Conversation aircall.io Efficient Android app Monitoring

    Julien Salvi - Android GDE | Android @ Aircall droidcon Italy 2024 󰏢 @JulienSalvi
  2. 2 The Power of Conversation aircall.io Bonjour ! Julien Salvi

    Lead Android Engineer @ Android GDE “Android dev in shorts!” @JulienSalvi
  3. 3 The Power of Conversation aircall.io 📣 Introduction & context

    🔮 Efficient monitoring & observability ✌ Wrap-up! Summary
  4. 7 The Power of Conversation aircall.io • 💥 A crash

    • 🥶 An ANR (App Not Responding) • 🐌 Slow Startup times • 🖼 Drop frames • 🐛 Unexpected state in the app • 🛜 Network failures, slow calls, timeouts… • 🪫 Battery draining issues • 🔓 Security vulnerabilities • 📱 OS or device specific issues • … What happened? Happy app was happy 😃 but suddenly…
  5. 8 The Power of Conversation aircall.io This leads to… Happy

    app was happy 😃 but suddenly is not 🥲 Angry user
  6. 9 The Power of Conversation aircall.io No monitoring… Angry user

    Cannot save new contact with French numbers
  7. 11 The Power of Conversation aircall.io From multiple angry users

    to… …to 1 angry user allow a quick reaction 🏃
  8. 12 The Power of Conversation aircall.io From an angry user

    to… …to an angry user but much less longer 😅
  9. 13 The Power of Conversation aircall.io From an angry user

    to… …to an happy user Because we catched and fixed the issue soon enough 🫡
  10. 15 The Power of Conversation aircall.io Debugging and Stability Monitoring

    1 2 3 Performance Metrics Proactive Maintenance Real-time monitoring helps quickly identify crashes, ANRs, and performance bottlenecks, ensuring a stable and reliable app experience. Provides critical insights into resource usage, frame rates, and network performance, empowering developers to optimize code and enhance app responsiveness. Enables early detection of issues in production, reducing downtime and improving user trust through timely updates and fixes. “Measure all the (relevant) things!”
  11. 16 The Power of Conversation aircall.io Comprehensive Insights Observability 1

    2 3 Faster Debugging Proactive Monitoring Observability combines metrics, logs, and traces to provide a complete picture of your app’s behavior in production or other env. Helps identify the "why" behind issues like crashes, ANRs, or slow network calls by correlating data from different sources. Enables early detection of anomalies and performance degradation, empowering developers to resolve problems before they impact users. “Observe all the (important) things!”
  12. 17 The Power of Conversation aircall.io OK! 🤔 but… what’s

    the difference between monitoring & observability
  13. 18 The Power of Conversation aircall.io 🤓 In short: monitoring

    is a tool while observability is a capability
  14. 19 The Power of Conversation aircall.io Now let’s deep dive

    into efficient monitoring for Android 🚀
  15. 21 The Power of Conversation aircall.io Disclaimer Based on my

    personal experience Challenge and adapt to fit your needs Taking Firebase and Datadog as examples
  16. 23 The Power of Conversation aircall.io The best of Firebase

    Custom Crashlytics • Crashlytics is easy is to use and has been there for a long time… a simple plugin and let’s go! • You can log more than a crash in Crashlytics! • You can log an message or an exception as non-fatal issue on the platform
  17. 25 The Power of Conversation aircall.io The best of Firebase

    Crashlytics alerting on Slack • Default alerting with Crashlytics is by email… and it’s quite easy to miss an email 😅 • If you work daily with Slack, Crashlytics has a nice integration to get alerts on a dedicated channel so you can be notified in real-time • Customization regarding the alerting: new crash, new ANR, regressions, velocity alerts…
  18. 26 The Power of Conversation aircall.io The best of Firebase

    https://rhymezxcode.medium.com/how-to-get-firebase-cr ashlytics-bug-reports-directly-on-a-slack-channel-in-real -time-ee7a516070f7 Crashlytics alerting on Slack
  19. 27 The Power of Conversation aircall.io The best of Firebase

    Firebase Performance • Real-Time Performance Monitoring Automatically tracks key metrics like app startup time, screen rendering speed, and network request latency. • Customizable Traces and Metrics Allows developers to define custom traces and log specific performance data (e.g., feature-specific response times). • Proactive Issue Detection Highlights metrics, anomalies, and performance degradations in real-time.
  20. 32 The Power of Conversation aircall.io Critical path logging The

    golden rules • Focus on User Impact Identify processes that are most visible to users, such as app launch, navigation, and feature usage. Prioritize paths where failures or delays would lead to frustration, like checkout or login flows. • Target High-Risk Areas Pinpoint components prone to failures, such as network dependent features, external API calls, or database operations • Monitor Business-Critical Functions Identify paths tied to key app goals, like revenue generation or user retention (e.g., notifications, content loading).
  21. 33 The Power of Conversation aircall.io Critical path logging Pinpoint

    the failures • Identify Key Processes Pinpoint the critical paths in your app that directly impact user experience, such as app startup, navigation, and API calls • Log Key Events and Metrics Use logs to capture critical events like network errors, else conditions or contextual information like timestamps, user actions… • Prioritize Error and Latency Logs Log failures with stack traces and meaningful error messages for quicker debugging.
  22. 35 The Power of Conversation aircall.io Critical path logging Example:

    call flow Identify all the main point of failures in the flow
  23. 37 The Power of Conversation aircall.io Critical path logging The

    art of logging • Event name structure Naming the events that are being sent to the logging service is very important. The semantic is key to identify the nature of the log. Using emoji can also be visually helpful! (e.g. TWILIO | CORE | ERROR) • Log severity Every log that is being dispatch must have a severity link to its importance. An exception cannot logged as VERBOSE or INFO. • Meaningful payloads Send relevant information in the event payload to be efficient while investigating the logs in case of issue. (e.g. add the location for a stacktrace)
  24. 41 The Power of Conversation aircall.io Network monitoring Http Interceptors

    • Network requests are often the source of many failures on the app side • We have to make sure we know what happened on the device in case of failure • If you are using OkHttp, take advantage of the Interceptor to monitor the requests. In that case what we should effectively monitor?
  25. 42 The Power of Conversation aircall.io Network monitoring Http Interceptors

    • There are a few elements you should monitor while observing your network traffic in your app: ◦ DO log the path, method, headers and body of the request ◦ DO log the status code, body, headers, response time and error type of the response ◦ DO NOT log sensible information (tokens, credentials…), redact them instead! Let’s see how we did it 🚀
  26. 49 The Power of Conversation aircall.io Dashboards Observability services •

    When it comes to efficient monitoring having observability tools is a must-have but the cost can increase fast 💸 • Many solutions are existing in the market: Datadog, Sentry, Embrace, Bugsnag… • These services offer great observability tools: dashboards to monitor, visualize the data or trigger alerts
  27. 50 The Power of Conversation aircall.io Dashboards Best Practices for

    effective observability • Identify the key metrics Focus on essential metrics like crash rates, ANRs, API response times or user engagement. Prioritize metrics that directly impact user experience and business goals. • Keep It Simple Use intuitive visualizations like graphs, heatmaps, and tables for easy interpretation. • Use Contextual Filters Enable filtering by dimensions like device type, OS version, app version or geographic region.
  28. 51 The Power of Conversation aircall.io Dashboards Configuration for Optimal

    Monitoring • Set Alerts and Thresholds Configure alerts for critical metrics (e.g., crash-free rate < 99%, API latency > 500ms). • Regularly Review and Refine Periodically assess dashboards with your team to ensure relevance and clarity. Update metrics and visualizations as app features or user needs evolve
  29. 55 The Power of Conversation aircall.io Dev build monitoring Preemptive

    monitoring • One of the most effective way to avoid issues in production is to… anticipate them 😅 • OK anticipate everything is impossible but… 😅 We can apply some monitoring concept to catch things early enough (before it gets to production) What we should effectively monitor in dev mode?
  30. 56 The Power of Conversation aircall.io Dev build monitoring Preemptive

    monitoring • Monitoring your dev builds: ◦ DO monitor crashes, warning/error logs in dev mode ◦ DO get reports from your unit tests, UI tests, screenshot testing to pinpoint failures ◦ DO monitor the network requests while using the app or developing new features (e.g. Chucker) ◦ DO have testing sessions before shipping an application in production
  31. 58 The Power of Conversation aircall.io https://github.com/ChuckerTeam/chucker • Monitoring your

    network requests also applies when you are developing new stuff on dev builds. • Take advantage of the OkHttp Interceptor to monitor your REST requests or GraphQL queries/mutations. • ⚙ Use Chucker tool in dev mode to monitor your requests • 👀 Check Nicola Corti’s talk about Chucker 4.0 at droidcon Berlin Dev build monitoring Chucker
  32. 61 The Power of Conversation aircall.io Key takeaways Monitoring •

    Don’t log the entire app, log wisely and effective • Pinpoint the critical path of your app • Log all the critical paths • Identify the main points of failure • Alerting is good to quickly react • Performance monitoring matters Observability • Assess your needs • Assess the cost of each tool 💸 • Create efficient & relevant dashboards • Define your alert threshold and iterate • Better alerting too soon than never!
  33. 62 The Power of Conversation aircall.io Grazie ! Happy Smart

    Monitoring 🤓 Julien Salvi - Android GDE | Android @ Aircall droidcon Italy 2024 󰏢 @JulienSalvi