I am not familiar with AngularJS, but I used WebTrends a bit. What I did in the past to capture user behavior was to write my own JavaScript code (you can add it to webtrends.js or your own JS file) and then add calls to my JS functions in the HTML elements. Then my code called dcsMultiTrack() with parameters for any information I needed to send to WebTrends.
For example, if you want to know when the user clicks on a button, add something like onClick() = myFunction() to the html element. Inside myFunction() there is code to determine what the user is doing and everything you want to track. Then call dcsMultiTrack() , passing the parameters you just defined. If I remember correctly, dcsMultiTrack() allows flexible parameter lengths, provided that they fall into pairs of variables / values, such as "WT.ti", "My Page", "DCSExt.user_id", "your name", etc. d.
source share