All files / app/assets/javascripts/tracking constants.js

100% Statements 14/14
100% Branches 2/2
100% Functions 0/0
100% Lines 14/14

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42961x   961x   961x                                   961x 961x 961x 961x   961x   961x   961x   961x     961x   961x   961x  
export const SNOWPLOW_JS_SOURCE = 'gitlab-javascript';
 
export const MAX_LOCAL_STORAGE_QUEUE_SIZE = 100;
 
export const DEFAULT_SNOWPLOW_OPTIONS = {
  namespace: 'gl',
  hostname: window.location.hostname,
  cookieDomain: window.location.hostname,
  appId: '',
  respectDoNotTrack: true,
  eventMethod: 'post',
  contexts: { webPage: true, performanceTiming: true },
  formTracking: false,
  linkClickTracking: false,
  plugins: window.snowplowPlugins || [],
  formTrackingConfig: {
    forms: { allow: [] },
    fields: { allow: [] },
  },
  maxLocalStorageQueueSize: MAX_LOCAL_STORAGE_QUEUE_SIZE,
};
 
export const ACTION_ATTR_SELECTOR = '[data-track-action]';
export const LOAD_ACTION_ATTR_SELECTOR = '[data-track-action="render"]';
export const INTERNAL_EVENTS_SELECTOR = '[data-event-tracking]';
export const LOAD_INTERNAL_EVENTS_SELECTOR = '[data-event-tracking-load="true"]';
 
export const URLS_CACHE_STORAGE_KEY = 'gl-snowplow-pseudonymized-urls';
 
export const REFERRER_TTL = 24 * 60 * 60 * 1000;
 
export const GOOGLE_ANALYTICS_ID_COOKIE_NAME = '_ga';
 
export const SERVICE_PING_SCHEMA = 'iglu:com.gitlab/gitlab_service_ping/jsonschema/1-0-1';
 
export const SERVICE_PING_SECURITY_CONFIGURATION_THREAT_MANAGEMENT_VISIT =
  'users_visiting_security_configuration_threat_management';
 
export const SERVICE_PING_PIPELINE_SECURITY_VISIT = 'users_visiting_pipeline_security';
 
export const ALLOWED_ADDITIONAL_PROPERTIES = ['label', 'property', 'value'];