
- Post History
- Subscribe to RSS Feed
- Mark as New
- Mark as Read
- Bookmark
- Subscribe
- Printer Friendly Page
- Report Inappropriate Content
on 03-30-2022 12:13 PM
Your topic authors are probably curious which bot output nodes are used and interacted with the most. You can create your own custom event to track in the conversational analytics dashboard to visualize data such as this. This article shows how to create a custom event that measures which bot output nodes are used such as Text, Link, or Boolean.
- Navigate to Conversational Analytics > Event Configuration
- Click “New”.
- Enter in information as follows:
4. Click Submit.
5. Under Event Properties, click “New”, and enter in the following Value Script:
(function calculate(sourceGr) {
var payload = JSON.parse(sourceGr.payload);
var controlType = payload.uiType;
return controlType;
})(sourceGr);
6. Click “Submit”.
7. Run several topics with different output types to see the result.

- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
Thanks Victor - this example certainly helps, but I would love to see a Virtual Agent Academy session that does more of a deep dive into this feature. Keep up the great work!
- Mark as Read
- Mark as New
- Bookmark
- Permalink
- Report Inappropriate Content
Hi Victor,
Are those options available to try in a PDI, if yes, how do you get there?
Thanks,