Welcome to mirror list, hosted at ThFree Co, Russian Federation.

logs_tracking_helper.js « logs « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;