debian-mirror-gitlab/app/assets/javascripts/logs/logs_tracking_helper.js
2020-06-23 00:09:42 +05:30

19 lines
456 B
JavaScript

import Tracking from '~/tracking';
/**
* The value of 1 in count, means there was one action performed
* related to the tracked action, in either of the following categories
* 1. Refreshing the logs
* 2. Select an environment
* 3. Change the time range
* 4. Use the search bar
*/
const trackLogs = label =>
Tracking.event(document.body.dataset.page, 'logs_view', {
label,
property: 'count',
value: 1,
});
export default trackLogs;