summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/logs/logs_tracking_helper.js
blob: 91b0392f71fb4f4e21a65e2b00c807ca1a9ade3c (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;