summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/logs/logs_tracking_helper.js
blob: 26043d646b0a193f45fcb2aa990788b1fd805613 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;