Description
Prerequisites
Before using the AT Connect Decibel Insight, you will require a DecibelInsight account and you will have to add the Decibel Insight browser extension which is available for Chrome and Firefox.
Installation
AT Connect Decibel Insight will require you to add on your website code two Decibel Insight functions:
- decibelInsight(‘ready’, function() {}) – This Decibel Insight’s function is a callback script in which you will insert the AT Internet Tag
- decibelInsight(‘getSessionId’) – This Decibel Insight’s function will return the ID session recorded by Decibel Insight. The Decibel ID session will be therefore used as a dimension in the Analytics Suite applications.
Step 1 : Add in the body of your webpage the decibelInsight(‘ready’, function() {}) function
1 2 3 4 |
decibelInsight('ready', function() { }); |
Step 2 : Insert in the function the AT Internet JavaScript for site custom variables :
1 2 3 4 5 6 7 8 9 10 11 12 13 |
decibelInsight('ready', function () { var tag = new ATInternet.Tracker.Tag(); tag.page.set({ name:'pageName' }); tag.customVars.set({ site: {} }); tag.dispatch(); }); |
Step 3 : Complete a the desired site custom variable with the second Decibel Insight’s function decibelInsight(‘getSessionId’)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
decibelInsight('ready', function () { var tag = new ATInternet.Tracker.Tag(); tag.page.set({ name:'pageName' }); tag.customVars.set({ site: { 1: "[en]", 3: decibelInsight('getSessionId'), 8: 125 } }); tag.dispatch(); }); |
Step 4 : The AT Connect is now ready. Have a look on the presentation below to see how to use the connector.
Presentation
As soon as the script above has been added to your website, you are able to use AT Connect Decibel Insight. Watch the video below to use your new connector :
Jonathan –
It’s a great integration ! Easy to use and very powerful to understand an replay the behaviour of visitors right after a Data Query analysis.
Cédric –
Great one! A good combination of analytics and session recording!
David –
works well