Collecting features usage
Collecting features usage
Knowing what are the features used by a client on your platform allows me to know his level of involvement or his autonomy. In order to collect this information, the Skalin SDK contains an easy-to-use method.
Info
All Javascript codes below must be executed after initialization of the Skalin script.
The code below is used to collect feature usage of your platform:
<script type="text/javascript">
ska(function(skalin){
skalin.feature({ name: {{FeatureName}} });
});
</script>;
1
2
3
4
5
2
3
4
5
| FeatureName | Feature used's name |
| tags (optional) |
Array of tags to associate with this event. These tags will be deduplicated and merged with global tags defined via skalin.tags() |
# Example with tags
<script type="text/javascript">
ska(function(skalin){
skalin.feature({
name: 'Export PDF',
tags: ['Desktop', 'Premium']
});
});
</script>;
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8