Application Analytics - Exception Tracking

Data System Architecture

About

This page is about how an code exception can be tracked and analyzed.

The process is a log process where the exceptions are send as log to a log server.

Provider

The following list shows third party that provides a solution:

Example

From Google Analytics (Documentation)

try {
  // Runs code that may or may not work.
  window.possiblyUndefinedFunction();
} catch(err) {
  ga('send', 'exception', {
    'exDescription': err.message,
    'exFatal': false
  });
}





Discover More
Card Puncher Data Processing
Code - Exception (Try, Catch, Finally statement)

Exceptions are a means of breaking out of the normal flow of control of a code block in order to: handle errors or other exceptional conditions. You may want to track and see the exceptions that...
Card Puncher Data Processing
Web Analytics - Event (Hit) - Data Collected

Informations collected by analytics applications are called event (driven-architecture) and are the basis for application analytics An event defines an interaction collected for a particular user. hit...



Share this page:
Follow us:
Task Runner