I have a website which is used to search knowledge. I want to create a analytics tools to generate reports which contains data e.g. which user searched for which term. On which answer he clicked after getting results. One thing I have in my mind is JMS queue. i.e. create a queue, store those events in form of messages in this queue and then process those messaged and store them in DB. Any suggestions?
What should be best approach to track all events performed by a user on a website?
131 Views Asked by Piyush Singh At
1
There are 1 best solutions below
Related Questions in GOOGLE-ANALYTICS
- Java Google Analytics API - Read timed out
- How to track multiple youtube videos in google analytics
- How to estimate current situation of an old site not created by myself before i launch my new one?
- Is it possible to access gmail anonymous profile for a logged in user?
- How do I add Google Analytics to a large Windows Phone 8.1 project
- Why Google Analytics show bounce rate 100% and avg time more then 1min
- Google analytics event tracking, retrieve results
- Google Analytics with two property ID's: double counting page views?
- Does google analytics keep custom dimensions value over time?
- Google analytics not registering my app as a source of traffic to other sites
- Android : ANR in Google Analytics
- Google Analytics time delay in events report
- Google Analytics Cohort data doesn't make sense
- Tracking pages as they are created
- Use data import for update revenue
Related Questions in ANALYTICS
- Unity3d: How to Integrate Parse in Unity for iOs Builds?
- Google Analytics time delay in events report
- Talend Open Studio for Big Data
- Tracking pages as they are created
- Version Control for analytic projects
- Do I need to include all methods in setup tracking code piwik?
- how to share different urls via uiactivityviewcontroller?
- Adobe Analytics - Log/debug back-end traffic
- How do I view Custom Dimension reports in GA?
- How to find demographics (and other audience information) for a single page in Google Analytics?
- Redirection url in Adobe Analytics
- How many users visited two unique pages in one session?
- API request count on Analytics and Number of Record on Installation table
- Google Event Tracking Using jquery multiple events
- Tracking analytics on the submission of a form
Related Questions in GOOGLE-ANALYTICS-API
- Does google analytics keep custom dimensions value over time?
- Testing local rails application with OAuth
- Google Analytics time delay in events report
- collective.googleanalytics report with filter containing tag
- How to Use Google Analytics API for Business Pages
- How to track a Registration Form fields
- Google analytics experiment missing data
- Google Search Appliance Reports
- How i can read google analytics data from my iOS application?
- How to cluster correlated pages into segments?
- How can I see my multiple domains on Google Analytics page?
- Analytics API doesn't match web data
- Filter data in Google Analytics by the Data Source property
- GA query to return unique count number
- Track count of events unique by user rather than session
Related Questions in WEB-ANALYTICS
- Adobe Analytics - Log/debug back-end traffic
- How to get the parent's sibling's text with JQuery
- Popularity of each wikipedia article
- Google Analytics - Create custom report based on 2 events
- How to track traffic of example.com/?ref=uniqueCode with Google Analytics
- Capture RSID into a prop using DTM
- Capture Filter Type or Multiple Selections in DTM
- What should be best approach to track all events performed by a user on a website?
- _u parameter in universal google analytics collect hits
- Resources to help in making a web analytics tool
- SharePoint 2010 Web Analytics Master Page Issue
- How to create Custom Path definitions and Filters for Website Sections in Omniture (SiteCatalyst)?
- TYPO3 7.6 Webanalytics without Google
- how to calculate the PV,ip,PU according to the tomcat log
- Is there a simple, universal outbound click tracking method for web pages?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
If you want to track events, I would go with Google Analytics Events.
First of all, start by figuring out the exact structure (Categories, Actions, Labels), so the result would be something like this:
or
Change values in curly braces
Use custom dimension to collect unique identifiers for each user, so that you can later create a segment for a specific user and explore what they searched for and clicked on.
Of course, you can then create segments by whatever Google Analytics allows you to, and see the search terms for mobile users only etc.
I would definitely suggest GA whenever possible rather than storing them just in your DB.
Read more about the events:https://developers.google.com/analytics/devguides/collection/analyticsjs/events