@newrelic/browser-agent 1.263.0 → 1.264.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -2
- package/dist/cjs/cdn/experimental.js +3 -7
- package/dist/cjs/cdn/pro.js +2 -2
- package/dist/cjs/cdn/spa.js +2 -2
- package/dist/cjs/common/aggregate/aggregator.js +3 -3
- package/dist/cjs/common/config/state/init.js +6 -3
- package/dist/cjs/common/constants/env.cdn.js +1 -1
- package/dist/cjs/common/constants/env.npm.js +1 -1
- package/dist/cjs/common/constants/runtime.js +1 -3
- package/dist/cjs/common/drain/drain.js +4 -4
- package/dist/cjs/common/harvest/harvest.js +2 -2
- package/dist/cjs/common/serialize/bel-serializer.js +2 -2
- package/dist/cjs/common/session/session-entity.js +1 -1
- package/dist/cjs/common/url/encode.js +3 -5
- package/dist/cjs/common/util/submit-data.js +0 -1
- package/dist/cjs/common/vitals/vital-metric.js +1 -1
- package/dist/cjs/features/ajax/aggregate/index.js +1 -1
- package/dist/cjs/features/ajax/instrument/index.js +1 -1
- package/dist/cjs/features/generic_events/aggregate/index.js +137 -0
- package/dist/cjs/features/generic_events/constants.js +8 -0
- package/dist/cjs/features/generic_events/index.js +12 -0
- package/dist/cjs/features/generic_events/instrument/index.js +27 -0
- package/dist/cjs/features/jserrors/aggregate/index.js +13 -12
- package/dist/cjs/features/jserrors/instrument/index.js +1 -1
- package/dist/cjs/features/logging/aggregate/index.js +1 -1
- package/dist/cjs/features/logging/instrument/index.js +1 -1
- package/dist/cjs/features/metrics/aggregate/index.js +1 -1
- package/dist/cjs/features/metrics/instrument/index.js +1 -1
- package/dist/cjs/features/page_action/instrument/index.js +6 -6
- package/dist/cjs/features/page_view_event/aggregate/index.js +1 -1
- package/dist/cjs/features/page_view_event/aggregate/initialized-features.js +1 -1
- package/dist/cjs/features/page_view_event/instrument/index.js +1 -1
- package/dist/cjs/features/page_view_timing/aggregate/index.js +3 -3
- package/dist/cjs/features/page_view_timing/instrument/index.js +1 -1
- package/dist/cjs/features/session_replay/aggregate/index.js +2 -2
- package/dist/cjs/features/session_replay/instrument/index.js +1 -1
- package/dist/cjs/features/session_replay/shared/stylesheet-evaluator.js +1 -1
- package/dist/cjs/features/session_trace/aggregate/index.js +1 -1
- package/dist/cjs/features/session_trace/aggregate/trace/storage.js +2 -2
- package/dist/cjs/features/session_trace/instrument/index.js +1 -1
- package/dist/cjs/features/soft_navigations/aggregate/bel-node.js +1 -1
- package/dist/cjs/features/soft_navigations/aggregate/index.js +1 -1
- package/dist/cjs/features/soft_navigations/aggregate/interaction.js +5 -5
- package/dist/cjs/features/soft_navigations/instrument/index.js +1 -1
- package/dist/cjs/features/spa/aggregate/index.js +2 -3
- package/dist/cjs/features/spa/aggregate/interaction.js +2 -2
- package/dist/cjs/features/spa/aggregate/serializer.js +1 -2
- package/dist/cjs/features/spa/instrument/index.js +1 -1
- package/dist/cjs/features/utils/aggregate-base.js +2 -0
- package/dist/cjs/features/utils/lazy-feature-loader.js +2 -2
- package/dist/cjs/index.js +21 -0
- package/dist/cjs/loaders/agent-base.js +0 -4
- package/dist/cjs/loaders/api/api.js +1 -1
- package/dist/cjs/loaders/api/apiAsync.js +1 -1
- package/dist/cjs/loaders/browser-agent.js +4 -3
- package/dist/cjs/loaders/configure/configure.js +4 -3
- package/dist/cjs/loaders/features/features.js +8 -4
- package/dist/cjs/loaders/micro-agent.js +1 -1
- package/dist/esm/cdn/experimental.js +2 -5
- package/dist/esm/cdn/pro.js +2 -2
- package/dist/esm/cdn/spa.js +2 -2
- package/dist/esm/common/aggregate/aggregator.js +3 -3
- package/dist/esm/common/config/state/init.js +6 -3
- package/dist/esm/common/constants/env.cdn.js +1 -1
- package/dist/esm/common/constants/env.npm.js +1 -1
- package/dist/esm/common/constants/runtime.js +0 -2
- package/dist/esm/common/drain/drain.js +4 -4
- package/dist/esm/common/harvest/harvest.js +3 -3
- package/dist/esm/common/serialize/bel-serializer.js +2 -2
- package/dist/esm/common/session/session-entity.js +2 -2
- package/dist/esm/common/url/encode.js +3 -5
- package/dist/esm/common/util/submit-data.js +0 -1
- package/dist/esm/common/vitals/vital-metric.js +1 -1
- package/dist/esm/features/ajax/aggregate/index.js +1 -1
- package/dist/esm/features/ajax/instrument/index.js +1 -1
- package/dist/esm/features/generic_events/aggregate/index.js +129 -0
- package/dist/esm/features/generic_events/constants.js +2 -0
- package/dist/esm/features/generic_events/index.js +1 -0
- package/dist/esm/features/generic_events/instrument/index.js +20 -0
- package/dist/esm/features/jserrors/aggregate/index.js +13 -12
- package/dist/esm/features/jserrors/instrument/index.js +1 -1
- package/dist/esm/features/logging/aggregate/index.js +1 -1
- package/dist/esm/features/logging/instrument/index.js +1 -1
- package/dist/esm/features/metrics/aggregate/index.js +1 -1
- package/dist/esm/features/metrics/instrument/index.js +1 -1
- package/dist/esm/features/page_action/instrument/index.js +7 -6
- package/dist/esm/features/page_view_event/aggregate/index.js +1 -1
- package/dist/esm/features/page_view_event/aggregate/initialized-features.js +1 -1
- package/dist/esm/features/page_view_event/instrument/index.js +1 -1
- package/dist/esm/features/page_view_timing/aggregate/index.js +3 -3
- package/dist/esm/features/page_view_timing/instrument/index.js +1 -1
- package/dist/esm/features/session_replay/aggregate/index.js +2 -2
- package/dist/esm/features/session_replay/instrument/index.js +1 -1
- package/dist/esm/features/session_replay/shared/stylesheet-evaluator.js +1 -1
- package/dist/esm/features/session_trace/aggregate/index.js +1 -1
- package/dist/esm/features/session_trace/aggregate/trace/storage.js +2 -2
- package/dist/esm/features/session_trace/instrument/index.js +1 -1
- package/dist/esm/features/soft_navigations/aggregate/bel-node.js +1 -1
- package/dist/esm/features/soft_navigations/aggregate/index.js +1 -1
- package/dist/esm/features/soft_navigations/aggregate/interaction.js +5 -5
- package/dist/esm/features/soft_navigations/instrument/index.js +1 -1
- package/dist/esm/features/spa/aggregate/index.js +2 -3
- package/dist/esm/features/spa/aggregate/interaction.js +2 -2
- package/dist/esm/features/spa/aggregate/serializer.js +1 -2
- package/dist/esm/features/spa/instrument/index.js +1 -1
- package/dist/esm/features/utils/aggregate-base.js +3 -1
- package/dist/esm/features/utils/lazy-feature-loader.js +2 -2
- package/dist/esm/index.js +3 -0
- package/dist/esm/loaders/agent-base.js +0 -4
- package/dist/esm/loaders/api/api.js +1 -1
- package/dist/esm/loaders/api/apiAsync.js +1 -1
- package/dist/esm/loaders/browser-agent.js +3 -2
- package/dist/esm/loaders/configure/configure.js +4 -3
- package/dist/esm/loaders/features/features.js +8 -4
- package/dist/esm/loaders/micro-agent.js +1 -1
- package/dist/types/common/aggregate/aggregator.d.ts.map +1 -1
- package/dist/types/common/config/state/init.d.ts.map +1 -1
- package/dist/types/common/constants/runtime.d.ts +0 -1
- package/dist/types/common/constants/runtime.d.ts.map +1 -1
- package/dist/types/common/drain/drain.d.ts.map +1 -1
- package/dist/types/common/serialize/bel-serializer.d.ts.map +1 -1
- package/dist/types/common/url/encode.d.ts.map +1 -1
- package/dist/types/common/util/submit-data.d.ts.map +1 -1
- package/dist/types/features/{page_action → generic_events}/aggregate/index.d.ts +7 -5
- package/dist/types/features/generic_events/aggregate/index.d.ts.map +1 -0
- package/dist/types/features/generic_events/constants.d.ts +2 -0
- package/dist/types/features/generic_events/constants.d.ts.map +1 -0
- package/dist/types/features/generic_events/index.d.ts +2 -0
- package/dist/types/features/generic_events/index.d.ts.map +1 -0
- package/dist/types/features/generic_events/instrument/index.d.ts +6 -0
- package/dist/types/features/generic_events/instrument/index.d.ts.map +1 -0
- package/dist/types/features/jserrors/aggregate/index.d.ts.map +1 -1
- package/dist/types/features/page_action/instrument/index.d.ts +5 -4
- package/dist/types/features/page_action/instrument/index.d.ts.map +1 -1
- package/dist/types/features/page_view_timing/aggregate/index.d.ts.map +1 -1
- package/dist/types/features/spa/aggregate/index.d.ts.map +1 -1
- package/dist/types/features/spa/aggregate/interaction.d.ts.map +1 -1
- package/dist/types/features/spa/aggregate/serializer.d.ts.map +1 -1
- package/dist/types/features/utils/aggregate-base.d.ts.map +1 -1
- package/dist/types/index.d.ts +3 -0
- package/dist/types/loaders/agent-base.d.ts +0 -1
- package/dist/types/loaders/agent-base.d.ts.map +1 -1
- package/dist/types/loaders/browser-agent.d.ts.map +1 -1
- package/dist/types/loaders/configure/configure.d.ts.map +1 -1
- package/dist/types/loaders/features/features.d.ts +1 -0
- package/dist/types/loaders/features/features.d.ts.map +1 -1
- package/package.json +25 -6
- package/src/cdn/experimental.js +2 -4
- package/src/cdn/pro.js +2 -2
- package/src/cdn/spa.js +2 -2
- package/src/common/aggregate/aggregator.js +2 -3
- package/src/common/config/state/init.js +2 -1
- package/src/common/constants/runtime.js +0 -2
- package/src/common/drain/drain.js +3 -4
- package/src/common/harvest/harvest.js +3 -3
- package/src/common/serialize/bel-serializer.js +1 -2
- package/src/common/session/session-entity.js +2 -2
- package/src/common/url/encode.js +2 -3
- package/src/common/util/submit-data.js +0 -1
- package/src/features/generic_events/aggregate/index.js +133 -0
- package/src/features/generic_events/constants.js +3 -0
- package/src/features/generic_events/index.js +1 -0
- package/src/features/generic_events/instrument/index.js +22 -0
- package/src/features/jserrors/aggregate/index.js +4 -5
- package/src/features/page_action/instrument/index.js +6 -6
- package/src/features/page_view_event/aggregate/initialized-features.js +1 -1
- package/src/features/page_view_timing/aggregate/index.js +1 -2
- package/src/features/spa/aggregate/index.js +1 -2
- package/src/features/spa/aggregate/interaction.js +1 -2
- package/src/features/spa/aggregate/serializer.js +1 -2
- package/src/features/utils/aggregate-base.js +3 -1
- package/src/features/utils/lazy-feature-loader.js +2 -2
- package/src/index.js +3 -0
- package/src/loaders/agent-base.js +0 -4
- package/src/loaders/api/api.js +1 -1
- package/src/loaders/api/apiAsync.js +1 -1
- package/src/loaders/browser-agent.js +5 -3
- package/src/loaders/configure/configure.js +5 -1
- package/src/loaders/features/features.js +8 -4
- package/src/loaders/micro-agent.js +1 -1
- package/dist/cjs/cdn/polyfills/lite.js +0 -16
- package/dist/cjs/cdn/polyfills/pro.js +0 -21
- package/dist/cjs/cdn/polyfills/spa.js +0 -22
- package/dist/cjs/cdn/polyfills.js +0 -24
- package/dist/cjs/common/util/map-own.js +0 -31
- package/dist/cjs/features/page_action/aggregate/index.js +0 -121
- package/dist/esm/cdn/polyfills/lite.js +0 -14
- package/dist/esm/cdn/polyfills/pro.js +0 -19
- package/dist/esm/cdn/polyfills/spa.js +0 -20
- package/dist/esm/cdn/polyfills.js +0 -27
- package/dist/esm/common/util/map-own.js +0 -24
- package/dist/esm/features/page_action/aggregate/index.js +0 -114
- package/dist/types/cdn/polyfills/lite.d.ts +0 -2
- package/dist/types/cdn/polyfills/lite.d.ts.map +0 -1
- package/dist/types/cdn/polyfills/pro.d.ts +0 -2
- package/dist/types/cdn/polyfills/pro.d.ts.map +0 -1
- package/dist/types/cdn/polyfills/spa.d.ts +0 -2
- package/dist/types/cdn/polyfills/spa.d.ts.map +0 -1
- package/dist/types/cdn/polyfills.d.ts +0 -2
- package/dist/types/cdn/polyfills.d.ts.map +0 -1
- package/dist/types/common/util/map-own.d.ts +0 -3
- package/dist/types/common/util/map-own.d.ts.map +0 -1
- package/dist/types/features/page_action/aggregate/index.d.ts.map +0 -1
- package/src/cdn/polyfills/lite.js +0 -20
- package/src/cdn/polyfills/pro.js +0 -30
- package/src/cdn/polyfills/spa.js +0 -32
- package/src/cdn/polyfills.js +0 -27
- package/src/common/util/map-own.js +0 -22
- package/src/features/page_action/aggregate/index.js +0 -114
|
@@ -7,8 +7,9 @@ import { Instrument as InstrumentErrors } from '../features/jserrors/instrument'
|
|
|
7
7
|
import { Instrument as InstrumentXhr } from '../features/ajax/instrument'
|
|
8
8
|
import { Instrument as InstrumentSessionTrace } from '../features/session_trace/instrument'
|
|
9
9
|
import { Instrument as InstrumentSpa } from '../features/spa/instrument'
|
|
10
|
-
import { Instrument as InstrumentPageAction } from '../features/page_action/instrument'
|
|
11
10
|
import { Instrument as InstrumentSessionReplay } from '../features/session_replay/instrument'
|
|
11
|
+
import { Instrument as InstrumentGenericEvents } from '../features/generic_events/instrument'
|
|
12
|
+
import { Instrument as InstrumentLogs } from '../features/logging/instrument'
|
|
12
13
|
|
|
13
14
|
/**
|
|
14
15
|
* An agent class with all feature modules available. Features may be disabled and enabled via runtime configuration.
|
|
@@ -24,10 +25,11 @@ export class BrowserAgent extends Agent {
|
|
|
24
25
|
InstrumentPageViewTiming,
|
|
25
26
|
InstrumentSessionTrace,
|
|
26
27
|
InstrumentMetrics,
|
|
27
|
-
InstrumentPageAction,
|
|
28
28
|
InstrumentErrors,
|
|
29
29
|
InstrumentSpa,
|
|
30
|
-
InstrumentSessionReplay
|
|
30
|
+
InstrumentSessionReplay,
|
|
31
|
+
InstrumentGenericEvents,
|
|
32
|
+
InstrumentLogs
|
|
31
33
|
],
|
|
32
34
|
loaderType: 'browser-agent'
|
|
33
35
|
})
|
|
@@ -4,6 +4,7 @@ import { getConfiguration, setConfiguration, setInfo, setLoaderConfig, setRuntim
|
|
|
4
4
|
import { activatedFeatures } from '../../common/util/feature-flags'
|
|
5
5
|
import { isWorkerScope } from '../../common/constants/runtime'
|
|
6
6
|
import { redefinePublicPath } from './public-path'
|
|
7
|
+
import { ee } from '../../common/event-emitter/contextual-ee'
|
|
7
8
|
|
|
8
9
|
let alreadySetOnce = false // the configure() function can run multiple times in agent lifecycle
|
|
9
10
|
|
|
@@ -12,7 +13,8 @@ let alreadySetOnce = false // the configure() function can run multiple times in
|
|
|
12
13
|
*/
|
|
13
14
|
export function configure (agent, opts = {}, loaderType, forceDrain) {
|
|
14
15
|
// eslint-disable-next-line camelcase
|
|
15
|
-
let { init, info, loader_config, runtime = {
|
|
16
|
+
let { init, info, loader_config, runtime = {}, exposed = true } = opts
|
|
17
|
+
runtime.loaderType = loaderType
|
|
16
18
|
const nr = gosCDN()
|
|
17
19
|
if (!info) {
|
|
18
20
|
init = nr.init
|
|
@@ -55,6 +57,8 @@ export function configure (agent, opts = {}, loaderType, forceDrain) {
|
|
|
55
57
|
runtime.ptid = agent.agentIdentifier
|
|
56
58
|
setRuntime(agent.agentIdentifier, runtime)
|
|
57
59
|
|
|
60
|
+
agent.ee = ee.get(agent.agentIdentifier)
|
|
61
|
+
|
|
58
62
|
if (agent.api === undefined) agent.api = setAPI(agent.agentIdentifier, forceDrain, agent.runSoftNavOverSpa)
|
|
59
63
|
if (agent.exposed === undefined) agent.exposed = exposed
|
|
60
64
|
alreadySetOnce = true
|
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
export const FEATURE_NAMES = {
|
|
2
2
|
ajax: 'ajax',
|
|
3
|
+
genericEvents: 'generic_events',
|
|
3
4
|
jserrors: 'jserrors',
|
|
4
5
|
logging: 'logging',
|
|
5
6
|
metrics: 'metrics',
|
|
7
|
+
/**
|
|
8
|
+
* @deprecated This feature has been replaced by Generic Events. Use/Import `GenericEvents` instead. This wrapper will be removed in a future release
|
|
9
|
+
*/
|
|
6
10
|
pageAction: 'page_action',
|
|
7
11
|
pageViewEvent: 'page_view_event',
|
|
8
12
|
pageViewTiming: 'page_view_timing',
|
|
@@ -24,8 +28,8 @@ export const featurePriority = {
|
|
|
24
28
|
[FEATURE_NAMES.spa]: 5,
|
|
25
29
|
[FEATURE_NAMES.ajax]: 6,
|
|
26
30
|
[FEATURE_NAMES.sessionTrace]: 7,
|
|
27
|
-
[FEATURE_NAMES.
|
|
28
|
-
[FEATURE_NAMES.
|
|
29
|
-
[FEATURE_NAMES.
|
|
30
|
-
[FEATURE_NAMES.
|
|
31
|
+
[FEATURE_NAMES.softNav]: 8,
|
|
32
|
+
[FEATURE_NAMES.sessionReplay]: 9,
|
|
33
|
+
[FEATURE_NAMES.logging]: 10,
|
|
34
|
+
[FEATURE_NAMES.genericEvents]: 11
|
|
31
35
|
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("../polyfills.js");
|
|
4
|
-
var _agent = require("../../loaders/agent");
|
|
5
|
-
var _instrument = require("../../features/page_view_event/instrument");
|
|
6
|
-
var _instrument2 = require("../../features/page_view_timing/instrument");
|
|
7
|
-
var _instrument3 = require("../../features/metrics/instrument");
|
|
8
|
-
/**
|
|
9
|
-
* @file Creates a version of the "Lite" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
10
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
new _agent.Agent({
|
|
14
|
-
features: [_instrument.Instrument, _instrument2.Instrument, _instrument3.Instrument],
|
|
15
|
-
loaderType: 'lite-polyfills'
|
|
16
|
-
});
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("../polyfills.js");
|
|
4
|
-
var _agent = require("../../loaders/agent");
|
|
5
|
-
var _instrument = require("../../features/page_view_event/instrument");
|
|
6
|
-
var _instrument2 = require("../../features/page_view_timing/instrument");
|
|
7
|
-
var _instrument3 = require("../../features/metrics/instrument");
|
|
8
|
-
var _instrument4 = require("../../features/jserrors/instrument");
|
|
9
|
-
var _instrument5 = require("../../features/ajax/instrument");
|
|
10
|
-
var _instrument6 = require("../../features/session_trace/instrument");
|
|
11
|
-
var _instrument7 = require("../../features/page_action/instrument");
|
|
12
|
-
var _instrument8 = require("../../features/logging/instrument");
|
|
13
|
-
/**
|
|
14
|
-
* @file Creates a version of the "PRO" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
15
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
16
|
-
*/
|
|
17
|
-
|
|
18
|
-
new _agent.Agent({
|
|
19
|
-
features: [_instrument.Instrument, _instrument2.Instrument, _instrument6.Instrument, _instrument5.Instrument, _instrument3.Instrument, _instrument7.Instrument, _instrument4.Instrument, _instrument8.Instrument],
|
|
20
|
-
loaderType: 'pro-polyfills'
|
|
21
|
-
});
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("../polyfills.js");
|
|
4
|
-
var _agent = require("../../loaders/agent");
|
|
5
|
-
var _instrument = require("../../features/page_view_event/instrument");
|
|
6
|
-
var _instrument2 = require("../../features/page_view_timing/instrument");
|
|
7
|
-
var _instrument3 = require("../../features/metrics/instrument");
|
|
8
|
-
var _instrument4 = require("../../features/jserrors/instrument");
|
|
9
|
-
var _instrument5 = require("../../features/ajax/instrument");
|
|
10
|
-
var _instrument6 = require("../../features/session_trace/instrument");
|
|
11
|
-
var _instrument7 = require("../../features/spa/instrument");
|
|
12
|
-
var _instrument8 = require("../../features/page_action/instrument");
|
|
13
|
-
var _instrument9 = require("../../features/logging/instrument");
|
|
14
|
-
/**
|
|
15
|
-
* @file Creates a version of the "SPA" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
16
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
new _agent.Agent({
|
|
20
|
-
features: [_instrument5.Instrument, _instrument.Instrument, _instrument2.Instrument, _instrument6.Instrument, _instrument3.Instrument, _instrument8.Instrument, _instrument4.Instrument, _instrument9.Instrument, _instrument7.Instrument],
|
|
21
|
-
loaderType: 'spa-polyfills'
|
|
22
|
-
});
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
require("core-js/stable/promise");
|
|
4
|
-
require("core-js/stable/array/includes");
|
|
5
|
-
require("core-js/stable/array/find");
|
|
6
|
-
require("core-js/stable/array/flat");
|
|
7
|
-
require("core-js/stable/array/flat-map");
|
|
8
|
-
require("core-js/stable/array/from");
|
|
9
|
-
require("core-js/stable/array/some");
|
|
10
|
-
require("core-js/stable/array/find-index");
|
|
11
|
-
require("core-js/stable/object/assign");
|
|
12
|
-
require("core-js/stable/object/entries");
|
|
13
|
-
require("core-js/stable/object/values");
|
|
14
|
-
require("core-js/stable/object/from-entries");
|
|
15
|
-
require("core-js/stable/map");
|
|
16
|
-
require("core-js/stable/reflect");
|
|
17
|
-
require("core-js/stable/set");
|
|
18
|
-
require("core-js/stable/weak-set");
|
|
19
|
-
require("core-js/stable/object/get-own-property-descriptors");
|
|
20
|
-
require("core-js/stable/url");
|
|
21
|
-
require("core-js/stable/url-search-params");
|
|
22
|
-
require("core-js/stable/string/starts-with");
|
|
23
|
-
require("core-js/stable/number/is-nan");
|
|
24
|
-
require("core-js/stable/string/includes");
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.mapOwn = void 0;
|
|
7
|
-
/*
|
|
8
|
-
* Copyright 2020 New Relic Corporation. All rights reserved.
|
|
9
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
* @typedef {function} MapOwnCallback
|
|
14
|
-
* @param {string} key Object key
|
|
15
|
-
* @param {any} value Object value
|
|
16
|
-
* @returns {any}
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/**
|
|
20
|
-
* Iterates the own enumerable properties of an object passing the key and value pair to a given
|
|
21
|
-
* callback function.
|
|
22
|
-
* @param {object} obj Input object to iterate over. If null or undefined, an empty array will be returned.
|
|
23
|
-
* @param {MapOwnCallback} fn A callback function called for each property. The callback should take the key
|
|
24
|
-
* and value from the object iteration and return some value.
|
|
25
|
-
* @returns {any[]} An array of values returned by the callback function.
|
|
26
|
-
*/
|
|
27
|
-
const mapOwn = (obj, fn) => Object.entries(obj || {}).map(_ref => {
|
|
28
|
-
let [key, value] = _ref;
|
|
29
|
-
return fn(key, value);
|
|
30
|
-
});
|
|
31
|
-
exports.mapOwn = mapOwn;
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.Aggregate = void 0;
|
|
7
|
-
var _mapOwn = require("../../../common/util/map-own");
|
|
8
|
-
var _stringify = require("../../../common/util/stringify");
|
|
9
|
-
var _registerHandler = require("../../../common/event-emitter/register-handler");
|
|
10
|
-
var _harvestScheduler = require("../../../common/harvest/harvest-scheduler");
|
|
11
|
-
var _cleanUrl = require("../../../common/url/clean-url");
|
|
12
|
-
var _config = require("../../../common/config/config");
|
|
13
|
-
var _constants = require("../constants");
|
|
14
|
-
var _runtime = require("../../../common/constants/runtime");
|
|
15
|
-
var _aggregateBase = require("../../utils/aggregate-base");
|
|
16
|
-
var _drain = require("../../../common/drain/drain");
|
|
17
|
-
/*
|
|
18
|
-
* Copyright 2020 New Relic Corporation. All rights reserved.
|
|
19
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
20
|
-
*/
|
|
21
|
-
|
|
22
|
-
class Aggregate extends _aggregateBase.AggregateBase {
|
|
23
|
-
static featureName = _constants.FEATURE_NAME;
|
|
24
|
-
constructor(agentIdentifier, aggregator) {
|
|
25
|
-
var _this;
|
|
26
|
-
super(agentIdentifier, aggregator, _constants.FEATURE_NAME);
|
|
27
|
-
_this = this;
|
|
28
|
-
this.eventsPerMinute = 240;
|
|
29
|
-
this.harvestTimeSeconds = (0, _config.getConfigurationValue)(this.agentIdentifier, 'page_action.harvestTimeSeconds') || (0, _config.getConfigurationValue)(this.agentIdentifier, 'ins.harvestTimeSeconds') || 30;
|
|
30
|
-
this.eventsPerHarvest = this.eventsPerMinute * this.harvestTimeSeconds / 60;
|
|
31
|
-
this.referrerUrl = undefined;
|
|
32
|
-
this.currentEvents = undefined;
|
|
33
|
-
this.events = [];
|
|
34
|
-
this.att = (0, _config.getInfo)(this.agentIdentifier).jsAttributes; // per-agent, aggregators-shared info context
|
|
35
|
-
|
|
36
|
-
if (_runtime.isBrowserScope && document.referrer) this.referrerUrl = (0, _cleanUrl.cleanURL)(document.referrer);
|
|
37
|
-
(0, _registerHandler.registerHandler)('api-addPageAction', function () {
|
|
38
|
-
return _this.addPageAction(...arguments);
|
|
39
|
-
}, this.featureName, this.ee);
|
|
40
|
-
this.waitForFlags(['ins']).then(_ref => {
|
|
41
|
-
let [insFlag] = _ref;
|
|
42
|
-
if (insFlag) {
|
|
43
|
-
const scheduler = new _harvestScheduler.HarvestScheduler('ins', {
|
|
44
|
-
onFinished: function () {
|
|
45
|
-
return _this.onHarvestFinished(...arguments);
|
|
46
|
-
}
|
|
47
|
-
}, this);
|
|
48
|
-
scheduler.harvest.on('ins', function () {
|
|
49
|
-
return _this.onHarvestStarted(...arguments);
|
|
50
|
-
});
|
|
51
|
-
scheduler.startTimer(this.harvestTimeSeconds, 0);
|
|
52
|
-
this.drain();
|
|
53
|
-
} else {
|
|
54
|
-
this.blocked = true; // if rum response determines that customer lacks entitlements for ins endpoint, this feature shouldn't harvest
|
|
55
|
-
(0, _drain.deregisterDrain)(this.agentIdentifier, this.featureName);
|
|
56
|
-
}
|
|
57
|
-
});
|
|
58
|
-
}
|
|
59
|
-
onHarvestStarted(options) {
|
|
60
|
-
const {
|
|
61
|
-
userAttributes,
|
|
62
|
-
atts
|
|
63
|
-
} = (0, _config.getInfo)(this.agentIdentifier);
|
|
64
|
-
var payload = {
|
|
65
|
-
qs: {
|
|
66
|
-
ua: userAttributes,
|
|
67
|
-
at: atts
|
|
68
|
-
},
|
|
69
|
-
body: {
|
|
70
|
-
ins: this.events
|
|
71
|
-
}
|
|
72
|
-
};
|
|
73
|
-
if (options.retry) {
|
|
74
|
-
this.currentEvents = this.events;
|
|
75
|
-
}
|
|
76
|
-
this.events = [];
|
|
77
|
-
return payload;
|
|
78
|
-
}
|
|
79
|
-
onHarvestFinished(result) {
|
|
80
|
-
if (result && result.sent && result.retry && this.currentEvents) {
|
|
81
|
-
this.events = this.events.concat(this.currentEvents);
|
|
82
|
-
this.currentEvents = null;
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
// WARNING: Insights times are in seconds. EXCEPT timestamp, which is in ms.
|
|
87
|
-
addPageAction(t, name, attributes) {
|
|
88
|
-
if (this.events.length >= this.eventsPerHarvest || this.blocked) return;
|
|
89
|
-
var width;
|
|
90
|
-
var height;
|
|
91
|
-
var eventAttributes = {};
|
|
92
|
-
if (_runtime.isBrowserScope && window.document.documentElement) {
|
|
93
|
-
// Doesn't include the nav bar when it disappears in mobile safari
|
|
94
|
-
// https://github.com/jquery/jquery/blob/10399ddcf8a239acc27bdec9231b996b178224d3/src/dimensions.js#L23
|
|
95
|
-
width = window.document.documentElement.clientWidth;
|
|
96
|
-
height = window.document.documentElement.clientHeight;
|
|
97
|
-
}
|
|
98
|
-
const agentRuntime = (0, _config.getRuntime)(this.agentIdentifier);
|
|
99
|
-
var defaults = {
|
|
100
|
-
timestamp: agentRuntime.timeKeeper.convertRelativeTimestamp(t),
|
|
101
|
-
timeSinceLoad: t / 1000,
|
|
102
|
-
browserWidth: width,
|
|
103
|
-
browserHeight: height,
|
|
104
|
-
referrerUrl: this.referrerUrl,
|
|
105
|
-
currentUrl: (0, _cleanUrl.cleanURL)('' + location),
|
|
106
|
-
pageUrl: (0, _cleanUrl.cleanURL)(agentRuntime.origin),
|
|
107
|
-
eventType: 'PageAction'
|
|
108
|
-
};
|
|
109
|
-
(0, _mapOwn.mapOwn)(defaults, set);
|
|
110
|
-
(0, _mapOwn.mapOwn)((0, _config.getInfo)(this.agentIdentifier).jsAttributes, set);
|
|
111
|
-
if (attributes && typeof attributes === 'object') {
|
|
112
|
-
(0, _mapOwn.mapOwn)(attributes, set);
|
|
113
|
-
}
|
|
114
|
-
eventAttributes.actionName = name || '';
|
|
115
|
-
this.events.push(eventAttributes);
|
|
116
|
-
function set(key, val) {
|
|
117
|
-
eventAttributes[key] = val && typeof val === 'object' ? (0, _stringify.stringify)(val) : val;
|
|
118
|
-
}
|
|
119
|
-
}
|
|
120
|
-
}
|
|
121
|
-
exports.Aggregate = Aggregate;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Creates a version of the "Lite" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
3
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import '../polyfills.js';
|
|
7
|
-
import { Agent } from '../../loaders/agent';
|
|
8
|
-
import { Instrument as InstrumentPageViewEvent } from '../../features/page_view_event/instrument';
|
|
9
|
-
import { Instrument as InstrumentPageViewTiming } from '../../features/page_view_timing/instrument';
|
|
10
|
-
import { Instrument as InstrumentMetrics } from '../../features/metrics/instrument';
|
|
11
|
-
new Agent({
|
|
12
|
-
features: [InstrumentPageViewEvent, InstrumentPageViewTiming, InstrumentMetrics],
|
|
13
|
-
loaderType: 'lite-polyfills'
|
|
14
|
-
});
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Creates a version of the "PRO" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
3
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import '../polyfills.js';
|
|
7
|
-
import { Agent } from '../../loaders/agent';
|
|
8
|
-
import { Instrument as InstrumentPageViewEvent } from '../../features/page_view_event/instrument';
|
|
9
|
-
import { Instrument as InstrumentPageViewTiming } from '../../features/page_view_timing/instrument';
|
|
10
|
-
import { Instrument as InstrumentMetrics } from '../../features/metrics/instrument';
|
|
11
|
-
import { Instrument as InstrumentErrors } from '../../features/jserrors/instrument';
|
|
12
|
-
import { Instrument as InstrumentXhr } from '../../features/ajax/instrument';
|
|
13
|
-
import { Instrument as InstrumentSessionTrace } from '../../features/session_trace/instrument';
|
|
14
|
-
import { Instrument as InstrumentPageAction } from '../../features/page_action/instrument';
|
|
15
|
-
import { Instrument as InstrumentLogs } from '../../features/logging/instrument';
|
|
16
|
-
new Agent({
|
|
17
|
-
features: [InstrumentPageViewEvent, InstrumentPageViewTiming, InstrumentSessionTrace, InstrumentXhr, InstrumentMetrics, InstrumentPageAction, InstrumentErrors, InstrumentLogs],
|
|
18
|
-
loaderType: 'pro-polyfills'
|
|
19
|
-
});
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Creates a version of the "SPA" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
3
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import '../polyfills.js';
|
|
7
|
-
import { Agent } from '../../loaders/agent';
|
|
8
|
-
import { Instrument as InstrumentPageViewEvent } from '../../features/page_view_event/instrument';
|
|
9
|
-
import { Instrument as InstrumentPageViewTiming } from '../../features/page_view_timing/instrument';
|
|
10
|
-
import { Instrument as InstrumentMetrics } from '../../features/metrics/instrument';
|
|
11
|
-
import { Instrument as InstrumentErrors } from '../../features/jserrors/instrument';
|
|
12
|
-
import { Instrument as InstrumentXhr } from '../../features/ajax/instrument';
|
|
13
|
-
import { Instrument as InstrumentSessionTrace } from '../../features/session_trace/instrument';
|
|
14
|
-
import { Instrument as InstrumentSpa } from '../../features/spa/instrument';
|
|
15
|
-
import { Instrument as InstrumentPageAction } from '../../features/page_action/instrument';
|
|
16
|
-
import { Instrument as InstrumentLogs } from '../../features/logging/instrument';
|
|
17
|
-
new Agent({
|
|
18
|
-
features: [InstrumentXhr, InstrumentPageViewEvent, InstrumentPageViewTiming, InstrumentSessionTrace, InstrumentMetrics, InstrumentPageAction, InstrumentErrors, InstrumentLogs, InstrumentSpa],
|
|
19
|
-
loaderType: 'spa-polyfills'
|
|
20
|
-
});
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Selectively imports {@link https://github.com/zloirock/core-js core-js}
|
|
3
|
-
* polyfills needed for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import 'core-js/stable/promise';
|
|
7
|
-
import 'core-js/stable/array/includes';
|
|
8
|
-
import 'core-js/stable/array/find';
|
|
9
|
-
import 'core-js/stable/array/flat';
|
|
10
|
-
import 'core-js/stable/array/flat-map';
|
|
11
|
-
import 'core-js/stable/array/from';
|
|
12
|
-
import 'core-js/stable/array/some';
|
|
13
|
-
import 'core-js/stable/array/find-index';
|
|
14
|
-
import 'core-js/stable/object/assign';
|
|
15
|
-
import 'core-js/stable/object/entries';
|
|
16
|
-
import 'core-js/stable/object/values';
|
|
17
|
-
import 'core-js/stable/object/from-entries';
|
|
18
|
-
import 'core-js/stable/map';
|
|
19
|
-
import 'core-js/stable/reflect';
|
|
20
|
-
import 'core-js/stable/set';
|
|
21
|
-
import 'core-js/stable/weak-set';
|
|
22
|
-
import 'core-js/stable/object/get-own-property-descriptors';
|
|
23
|
-
import 'core-js/stable/url';
|
|
24
|
-
import 'core-js/stable/url-search-params';
|
|
25
|
-
import 'core-js/stable/string/starts-with';
|
|
26
|
-
import 'core-js/stable/number/is-nan';
|
|
27
|
-
import 'core-js/stable/string/includes';
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2020 New Relic Corporation. All rights reserved.
|
|
3
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
/**
|
|
7
|
-
* @typedef {function} MapOwnCallback
|
|
8
|
-
* @param {string} key Object key
|
|
9
|
-
* @param {any} value Object value
|
|
10
|
-
* @returns {any}
|
|
11
|
-
*/
|
|
12
|
-
|
|
13
|
-
/**
|
|
14
|
-
* Iterates the own enumerable properties of an object passing the key and value pair to a given
|
|
15
|
-
* callback function.
|
|
16
|
-
* @param {object} obj Input object to iterate over. If null or undefined, an empty array will be returned.
|
|
17
|
-
* @param {MapOwnCallback} fn A callback function called for each property. The callback should take the key
|
|
18
|
-
* and value from the object iteration and return some value.
|
|
19
|
-
* @returns {any[]} An array of values returned by the callback function.
|
|
20
|
-
*/
|
|
21
|
-
export const mapOwn = (obj, fn) => Object.entries(obj || {}).map(_ref => {
|
|
22
|
-
let [key, value] = _ref;
|
|
23
|
-
return fn(key, value);
|
|
24
|
-
});
|
|
@@ -1,114 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright 2020 New Relic Corporation. All rights reserved.
|
|
3
|
-
* SPDX-License-Identifier: Apache-2.0
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import { mapOwn } from '../../../common/util/map-own';
|
|
7
|
-
import { stringify } from '../../../common/util/stringify';
|
|
8
|
-
import { registerHandler as register } from '../../../common/event-emitter/register-handler';
|
|
9
|
-
import { HarvestScheduler } from '../../../common/harvest/harvest-scheduler';
|
|
10
|
-
import { cleanURL } from '../../../common/url/clean-url';
|
|
11
|
-
import { getConfigurationValue, getInfo, getRuntime } from '../../../common/config/config';
|
|
12
|
-
import { FEATURE_NAME } from '../constants';
|
|
13
|
-
import { isBrowserScope } from '../../../common/constants/runtime';
|
|
14
|
-
import { AggregateBase } from '../../utils/aggregate-base';
|
|
15
|
-
import { deregisterDrain } from '../../../common/drain/drain';
|
|
16
|
-
export class Aggregate extends AggregateBase {
|
|
17
|
-
static featureName = FEATURE_NAME;
|
|
18
|
-
constructor(agentIdentifier, aggregator) {
|
|
19
|
-
var _this;
|
|
20
|
-
super(agentIdentifier, aggregator, FEATURE_NAME);
|
|
21
|
-
_this = this;
|
|
22
|
-
this.eventsPerMinute = 240;
|
|
23
|
-
this.harvestTimeSeconds = getConfigurationValue(this.agentIdentifier, 'page_action.harvestTimeSeconds') || getConfigurationValue(this.agentIdentifier, 'ins.harvestTimeSeconds') || 30;
|
|
24
|
-
this.eventsPerHarvest = this.eventsPerMinute * this.harvestTimeSeconds / 60;
|
|
25
|
-
this.referrerUrl = undefined;
|
|
26
|
-
this.currentEvents = undefined;
|
|
27
|
-
this.events = [];
|
|
28
|
-
this.att = getInfo(this.agentIdentifier).jsAttributes; // per-agent, aggregators-shared info context
|
|
29
|
-
|
|
30
|
-
if (isBrowserScope && document.referrer) this.referrerUrl = cleanURL(document.referrer);
|
|
31
|
-
register('api-addPageAction', function () {
|
|
32
|
-
return _this.addPageAction(...arguments);
|
|
33
|
-
}, this.featureName, this.ee);
|
|
34
|
-
this.waitForFlags(['ins']).then(_ref => {
|
|
35
|
-
let [insFlag] = _ref;
|
|
36
|
-
if (insFlag) {
|
|
37
|
-
const scheduler = new HarvestScheduler('ins', {
|
|
38
|
-
onFinished: function () {
|
|
39
|
-
return _this.onHarvestFinished(...arguments);
|
|
40
|
-
}
|
|
41
|
-
}, this);
|
|
42
|
-
scheduler.harvest.on('ins', function () {
|
|
43
|
-
return _this.onHarvestStarted(...arguments);
|
|
44
|
-
});
|
|
45
|
-
scheduler.startTimer(this.harvestTimeSeconds, 0);
|
|
46
|
-
this.drain();
|
|
47
|
-
} else {
|
|
48
|
-
this.blocked = true; // if rum response determines that customer lacks entitlements for ins endpoint, this feature shouldn't harvest
|
|
49
|
-
deregisterDrain(this.agentIdentifier, this.featureName);
|
|
50
|
-
}
|
|
51
|
-
});
|
|
52
|
-
}
|
|
53
|
-
onHarvestStarted(options) {
|
|
54
|
-
const {
|
|
55
|
-
userAttributes,
|
|
56
|
-
atts
|
|
57
|
-
} = getInfo(this.agentIdentifier);
|
|
58
|
-
var payload = {
|
|
59
|
-
qs: {
|
|
60
|
-
ua: userAttributes,
|
|
61
|
-
at: atts
|
|
62
|
-
},
|
|
63
|
-
body: {
|
|
64
|
-
ins: this.events
|
|
65
|
-
}
|
|
66
|
-
};
|
|
67
|
-
if (options.retry) {
|
|
68
|
-
this.currentEvents = this.events;
|
|
69
|
-
}
|
|
70
|
-
this.events = [];
|
|
71
|
-
return payload;
|
|
72
|
-
}
|
|
73
|
-
onHarvestFinished(result) {
|
|
74
|
-
if (result && result.sent && result.retry && this.currentEvents) {
|
|
75
|
-
this.events = this.events.concat(this.currentEvents);
|
|
76
|
-
this.currentEvents = null;
|
|
77
|
-
}
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
// WARNING: Insights times are in seconds. EXCEPT timestamp, which is in ms.
|
|
81
|
-
addPageAction(t, name, attributes) {
|
|
82
|
-
if (this.events.length >= this.eventsPerHarvest || this.blocked) return;
|
|
83
|
-
var width;
|
|
84
|
-
var height;
|
|
85
|
-
var eventAttributes = {};
|
|
86
|
-
if (isBrowserScope && window.document.documentElement) {
|
|
87
|
-
// Doesn't include the nav bar when it disappears in mobile safari
|
|
88
|
-
// https://github.com/jquery/jquery/blob/10399ddcf8a239acc27bdec9231b996b178224d3/src/dimensions.js#L23
|
|
89
|
-
width = window.document.documentElement.clientWidth;
|
|
90
|
-
height = window.document.documentElement.clientHeight;
|
|
91
|
-
}
|
|
92
|
-
const agentRuntime = getRuntime(this.agentIdentifier);
|
|
93
|
-
var defaults = {
|
|
94
|
-
timestamp: agentRuntime.timeKeeper.convertRelativeTimestamp(t),
|
|
95
|
-
timeSinceLoad: t / 1000,
|
|
96
|
-
browserWidth: width,
|
|
97
|
-
browserHeight: height,
|
|
98
|
-
referrerUrl: this.referrerUrl,
|
|
99
|
-
currentUrl: cleanURL('' + location),
|
|
100
|
-
pageUrl: cleanURL(agentRuntime.origin),
|
|
101
|
-
eventType: 'PageAction'
|
|
102
|
-
};
|
|
103
|
-
mapOwn(defaults, set);
|
|
104
|
-
mapOwn(getInfo(this.agentIdentifier).jsAttributes, set);
|
|
105
|
-
if (attributes && typeof attributes === 'object') {
|
|
106
|
-
mapOwn(attributes, set);
|
|
107
|
-
}
|
|
108
|
-
eventAttributes.actionName = name || '';
|
|
109
|
-
this.events.push(eventAttributes);
|
|
110
|
-
function set(key, val) {
|
|
111
|
-
eventAttributes[key] = val && typeof val === 'object' ? stringify(val) : val;
|
|
112
|
-
}
|
|
113
|
-
}
|
|
114
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"lite.d.ts","sourceRoot":"","sources":["../../../../src/cdn/polyfills/lite.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"pro.d.ts","sourceRoot":"","sources":["../../../../src/cdn/polyfills/pro.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"spa.d.ts","sourceRoot":"","sources":["../../../../src/cdn/polyfills/spa.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"polyfills.d.ts","sourceRoot":"","sources":["../../../src/cdn/polyfills.js"],"names":[],"mappings":""}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"map-own.d.ts","sourceRoot":"","sources":["../../../../src/common/util/map-own.js"],"names":[],"mappings":"AAoBO,4BALI,MAAM,MACN,cAAc,GAEZ,GAAG,EAAE,CAGsB"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/page_action/aggregate/index.js"],"names":[],"mappings":"AAgBA;IACE,2BAAiC;IACjC,mDA2BC;IAzBC,wBAA0B;IAC1B,wBAAsL;IACtL,yBAA2E;IAC3E,gCAA4B;IAC5B,wCAA8B;IAE9B,cAAgB;IAEhB,SAAqD;IAmBvD;;;;;;;;MAkBC;IAED,qCAKC;IAGD,wDAqCC;CACF;8BApG6B,4BAA4B"}
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Creates a version of the "Lite" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
3
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import '../polyfills.js'
|
|
7
|
-
import { Agent } from '../../loaders/agent'
|
|
8
|
-
|
|
9
|
-
import { Instrument as InstrumentPageViewEvent } from '../../features/page_view_event/instrument'
|
|
10
|
-
import { Instrument as InstrumentPageViewTiming } from '../../features/page_view_timing/instrument'
|
|
11
|
-
import { Instrument as InstrumentMetrics } from '../../features/metrics/instrument'
|
|
12
|
-
|
|
13
|
-
new Agent({
|
|
14
|
-
features: [
|
|
15
|
-
InstrumentPageViewEvent,
|
|
16
|
-
InstrumentPageViewTiming,
|
|
17
|
-
InstrumentMetrics
|
|
18
|
-
],
|
|
19
|
-
loaderType: 'lite-polyfills'
|
|
20
|
-
})
|
package/src/cdn/polyfills/pro.js
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @file Creates a version of the "PRO" agent loader with [core-js]{@link https://github.com/zloirock/core-js}
|
|
3
|
-
* polyfills for pre-ES6 browsers and IE 11.
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
import '../polyfills.js'
|
|
7
|
-
import { Agent } from '../../loaders/agent'
|
|
8
|
-
|
|
9
|
-
import { Instrument as InstrumentPageViewEvent } from '../../features/page_view_event/instrument'
|
|
10
|
-
import { Instrument as InstrumentPageViewTiming } from '../../features/page_view_timing/instrument'
|
|
11
|
-
import { Instrument as InstrumentMetrics } from '../../features/metrics/instrument'
|
|
12
|
-
import { Instrument as InstrumentErrors } from '../../features/jserrors/instrument'
|
|
13
|
-
import { Instrument as InstrumentXhr } from '../../features/ajax/instrument'
|
|
14
|
-
import { Instrument as InstrumentSessionTrace } from '../../features/session_trace/instrument'
|
|
15
|
-
import { Instrument as InstrumentPageAction } from '../../features/page_action/instrument'
|
|
16
|
-
import { Instrument as InstrumentLogs } from '../../features/logging/instrument'
|
|
17
|
-
|
|
18
|
-
new Agent({
|
|
19
|
-
features: [
|
|
20
|
-
InstrumentPageViewEvent,
|
|
21
|
-
InstrumentPageViewTiming,
|
|
22
|
-
InstrumentSessionTrace,
|
|
23
|
-
InstrumentXhr,
|
|
24
|
-
InstrumentMetrics,
|
|
25
|
-
InstrumentPageAction,
|
|
26
|
-
InstrumentErrors,
|
|
27
|
-
InstrumentLogs
|
|
28
|
-
],
|
|
29
|
-
loaderType: 'pro-polyfills'
|
|
30
|
-
})
|