@webex/internal-plugin-metrics 3.0.0-beta.27 → 3.0.0-beta.270

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.
Files changed (60) hide show
  1. package/dist/call-diagnostic/call-diagnostic-metrics-batcher.js +65 -0
  2. package/dist/call-diagnostic/call-diagnostic-metrics-batcher.js.map +1 -0
  3. package/dist/call-diagnostic/call-diagnostic-metrics-latencies.js +446 -0
  4. package/dist/call-diagnostic/call-diagnostic-metrics-latencies.js.map +1 -0
  5. package/dist/call-diagnostic/call-diagnostic-metrics.js +744 -0
  6. package/dist/call-diagnostic/call-diagnostic-metrics.js.map +1 -0
  7. package/dist/call-diagnostic/call-diagnostic-metrics.util.js +310 -0
  8. package/dist/call-diagnostic/call-diagnostic-metrics.util.js.map +1 -0
  9. package/dist/call-diagnostic/config.js +575 -0
  10. package/dist/call-diagnostic/config.js.map +1 -0
  11. package/dist/config.js +20 -1
  12. package/dist/config.js.map +1 -1
  13. package/dist/index.js +30 -1
  14. package/dist/index.js.map +1 -1
  15. package/dist/metrics.js +30 -30
  16. package/dist/metrics.js.map +1 -1
  17. package/dist/metrics.types.js +7 -0
  18. package/dist/metrics.types.js.map +1 -0
  19. package/dist/new-metrics.js +333 -0
  20. package/dist/new-metrics.js.map +1 -0
  21. package/dist/types/batcher.d.ts +2 -0
  22. package/dist/types/call-diagnostic/call-diagnostic-metrics-batcher.d.ts +2 -0
  23. package/dist/types/call-diagnostic/call-diagnostic-metrics-latencies.d.ts +189 -0
  24. package/dist/types/call-diagnostic/call-diagnostic-metrics.d.ts +392 -0
  25. package/dist/types/call-diagnostic/call-diagnostic-metrics.util.d.ts +87 -0
  26. package/dist/types/call-diagnostic/config.d.ts +93 -0
  27. package/dist/types/client-metrics-batcher.d.ts +2 -0
  28. package/dist/types/config.d.ts +35 -0
  29. package/dist/types/index.d.ts +13 -0
  30. package/dist/types/metrics.d.ts +3 -0
  31. package/dist/types/metrics.types.d.ts +99 -0
  32. package/dist/types/new-metrics.d.ts +139 -0
  33. package/dist/types/utils.d.ts +6 -0
  34. package/dist/utils.js +27 -0
  35. package/dist/utils.js.map +1 -0
  36. package/package.json +13 -8
  37. package/src/call-diagnostic/call-diagnostic-metrics-batcher.ts +82 -0
  38. package/src/call-diagnostic/call-diagnostic-metrics-latencies.ts +403 -0
  39. package/src/call-diagnostic/call-diagnostic-metrics.ts +808 -0
  40. package/src/call-diagnostic/call-diagnostic-metrics.util.ts +320 -0
  41. package/src/call-diagnostic/config.ts +632 -0
  42. package/src/config.js +19 -0
  43. package/src/index.ts +43 -0
  44. package/src/metrics.js +25 -27
  45. package/src/metrics.types.ts +152 -0
  46. package/src/new-metrics.ts +317 -0
  47. package/src/utils.ts +17 -0
  48. package/test/unit/spec/call-diagnostic/call-diagnostic-metrics-batcher.ts +394 -0
  49. package/test/unit/spec/call-diagnostic/call-diagnostic-metrics-latencies.ts +465 -0
  50. package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.ts +1607 -0
  51. package/test/unit/spec/call-diagnostic/call-diagnostic-metrics.util.ts +541 -0
  52. package/test/unit/spec/metrics.js +65 -97
  53. package/test/unit/spec/new-metrics.ts +269 -0
  54. package/test/unit/spec/utils.ts +22 -0
  55. package/tsconfig.json +6 -0
  56. package/dist/call-diagnostic-events-batcher.js +0 -60
  57. package/dist/call-diagnostic-events-batcher.js.map +0 -1
  58. package/src/call-diagnostic-events-batcher.js +0 -62
  59. package/src/index.js +0 -17
  60. package/test/unit/spec/call-diagnostic-events-batcher.js +0 -195
@@ -0,0 +1 @@
1
+ {"version":3,"names":["Metrics","args","onReady","webex","once","callDiagnosticMetrics","CallDiagnosticMetrics","parent","callDiagnosticLatencies","CallDiagnosticLatencies","name","payload","options","clearTimestamps","saveTimestamp","key","Error","submitMQE","logger","log","resolve","meetingId","submitClientEvent","preLoginId","request","method","api","resource","headers","authorization","body","metrics","then","res","catch","err","error","generateCommonErrorMetadata","reject","qs","alias","buildClientEventFetchRequestOptions","setTimingsAndFetch","setMetricTimings","serviceErrorCode","isServiceErrorExpected","WebexPlugin"],"sources":["new-metrics.ts"],"sourcesContent":["/* eslint-disable @typescript-eslint/no-unused-vars */\n/* eslint-disable class-methods-use-this */\n/* eslint-disable valid-jsdoc */\n\n// @ts-ignore\nimport {WebexPlugin} from '@webex/webex-core';\n\nimport CallDiagnosticMetrics from './call-diagnostic/call-diagnostic-metrics';\nimport {\n RecursivePartial,\n ClientEvent,\n FeatureEvent,\n BehavioralEvent,\n OperationalEvent,\n MediaQualityEvent,\n InternalEvent,\n SubmitClientEventOptions,\n} from './metrics.types';\nimport CallDiagnosticLatencies from './call-diagnostic/call-diagnostic-metrics-latencies';\nimport {setMetricTimings} from './call-diagnostic/call-diagnostic-metrics.util';\nimport {generateCommonErrorMetadata} from './utils';\n\n/**\n * Metrics plugin to centralize all types of metrics.\n * @class\n */\nclass Metrics extends WebexPlugin {\n // eslint-disable-next-line no-use-before-define\n static instance: Metrics;\n\n // Call Diagnostic latencies\n callDiagnosticLatencies: CallDiagnosticLatencies;\n // Helper classes to handle the different types of metrics\n callDiagnosticMetrics: CallDiagnosticMetrics;\n\n /**\n * Constructor\n * @param args\n * @constructor\n * @private\n * @returns\n */\n constructor(...args) {\n super(...args);\n\n this.onReady();\n }\n\n /**\n * On Ready\n */\n private onReady() {\n // @ts-ignore\n this.webex.once('ready', () => {\n // @ts-ignore\n this.callDiagnosticMetrics = new CallDiagnosticMetrics({}, {parent: this.webex});\n // @ts-ignore\n this.callDiagnosticLatencies = new CallDiagnosticLatencies({}, {parent: this.webex});\n });\n }\n\n /**\n * Used for internal purposes only\n * @param args\n */\n submitInternalEvent({\n name,\n payload,\n options,\n }: {\n name: InternalEvent['name'];\n payload?: RecursivePartial<InternalEvent['payload']>;\n options?: any;\n }) {\n if (name === 'internal.reset.join.latencies') {\n this.callDiagnosticLatencies.clearTimestamps();\n } else {\n this.callDiagnosticLatencies.saveTimestamp({key: name});\n }\n }\n\n /**\n * Behavioral event\n * @param args\n */\n submitBehavioralEvent({\n name,\n payload,\n options,\n }: {\n name: BehavioralEvent['name'];\n payload?: RecursivePartial<BehavioralEvent['payload']>;\n options?: any;\n }) {\n this.callDiagnosticLatencies.saveTimestamp({key: name});\n throw new Error('Not implemented.');\n }\n\n /**\n * Operational event\n * @param args\n */\n submitOperationalEvent({\n name,\n payload,\n options,\n }: {\n name: OperationalEvent['name'];\n payload?: RecursivePartial<OperationalEvent['payload']>;\n options?: any;\n }) {\n throw new Error('Not implemented.');\n }\n\n /**\n * Call Analyzer: Media Quality Event\n * @param args\n */\n submitMQE({\n name,\n payload,\n options,\n }: {\n name: MediaQualityEvent['name'];\n payload: RecursivePartial<MediaQualityEvent['payload']> & {\n intervals: MediaQualityEvent['payload']['intervals'];\n };\n options: any;\n }) {\n this.callDiagnosticLatencies.saveTimestamp({key: name});\n this.callDiagnosticMetrics.submitMQE({name, payload, options});\n }\n\n /**\n * Call Analyzer: Feature Usage Event\n * @param args\n */\n submitFeatureEvent({\n name,\n payload,\n options,\n }: {\n name: FeatureEvent['name'];\n payload?: RecursivePartial<FeatureEvent['payload']>;\n options: any;\n }) {\n throw new Error('Not implemented.');\n }\n\n /**\n * Call Analyzer: Client Event\n * @public\n * @param args\n */\n public submitClientEvent({\n name,\n payload,\n options,\n }: {\n name: ClientEvent['name'];\n payload?: RecursivePartial<ClientEvent['payload']>;\n options?: SubmitClientEventOptions;\n }): Promise<any> {\n if (!this.callDiagnosticLatencies || !this.callDiagnosticMetrics) {\n // @ts-ignore\n this.webex.logger.log(\n `NewMetrics: @submitClientEvent. Attempted to submit before webex.ready. Event name: ${name}`\n );\n\n return Promise.resolve();\n }\n this.callDiagnosticLatencies.saveTimestamp({\n key: name,\n options: {meetingId: options?.meetingId},\n });\n\n return this.callDiagnosticMetrics.submitClientEvent({name, payload, options});\n }\n\n /**\n * Submit a pre-login metric to clientmetrics\n * @public\n * @param payload\n * @param preLoginId - pre-login ID of user\n * @returns\n */\n public postPreLoginMetric(payload: any, preLoginId: string): Promise<any> {\n // @ts-ignore\n return this.webex\n .request({\n method: 'POST',\n api: 'metrics',\n resource: 'clientmetrics-prelogin',\n headers: {\n authorization: false,\n 'x-prelogin-userid': preLoginId,\n },\n body: {\n metrics: [payload],\n },\n })\n .then((res) => {\n // @ts-ignore\n this.webex.logger.log(`NewMetrics: @postPreLoginMetric. Request successful:`, res);\n\n return res;\n })\n .catch((err) => {\n // @ts-ignore\n this.logger.error(\n `NewMetrics: @postPreLoginMetric. Request failed:`,\n `err: ${generateCommonErrorMetadata(err)}`\n );\n\n return Promise.reject(err);\n });\n }\n\n /**\n * Issue request to alias a user's pre-login ID with their CI UUID\n * @param {string} preLoginId\n * @returns {Object} HttpResponse object\n */\n public clientMetricsAliasUser(preLoginId: string) {\n // @ts-ignore\n return this.webex\n .request({\n method: 'POST',\n api: 'metrics',\n resource: 'clientmetrics',\n headers: {\n 'x-prelogin-userid': preLoginId,\n },\n body: {},\n qs: {\n alias: true,\n },\n })\n .then((res) => {\n // @ts-ignore\n this.webex.logger.log(`NewMetrics: @clientMetricsAliasUser. Request successful:`, res);\n\n return res;\n })\n .catch((err) => {\n // @ts-ignore\n this.logger.error(\n `NewMetrics: @clientMetricsAliasUser. Request failed:`,\n `err: ${generateCommonErrorMetadata(err)}`\n );\n\n return Promise.reject(err);\n });\n }\n\n /**\n * Returns a promise that will resolve to fetch options for submitting a metric.\n *\n * This is to support quickly submitting metrics when the browser/tab is closing.\n * Calling submitClientEvent will not work because there some async steps that will\n * not complete before the browser is closed. Instead, we pre-gather all the\n * information/options needed for the request(s), and then simply and quickly\n * fire the fetch(es) when beforeUnload is triggered.\n *\n * We must use fetch instead of request because fetch has a keepalive option that\n * allows the request it to outlive the page.\n *\n * Note: the timings values will be wrong, but setMetricTimingsAndFetch() will\n * properly adjust them before submitting.\n *\n * @public\n * @param {Object} arg\n * @param {String} arg.name - event name\n * @param {Object} arg.payload - event payload\n * @param {Object} arg.options - other options\n * @returns {Promise} promise that resolves to options to be used with fetch\n */\n public async buildClientEventFetchRequestOptions({\n name,\n payload,\n options,\n }: {\n name: ClientEvent['name'];\n payload?: RecursivePartial<ClientEvent['payload']>;\n options?: SubmitClientEventOptions;\n }): Promise<any> {\n return this.callDiagnosticMetrics.buildClientEventFetchRequestOptions({\n name,\n payload,\n options,\n });\n }\n\n /**\n * Submits a metric from pre-built request options via the fetch API. Updates\n * the \"$timings\" and \"originTime\" values to Date.now() since the existing times\n * were set when the options were built (not submitted).\n\n * @param {any} options - the pre-built request options for submitting a metric\n * @returns {Promise} promise that resolves to the response object\n */\n public setMetricTimingsAndFetch(options: any): Promise<any> {\n // @ts-ignore\n return this.webex.setTimingsAndFetch(setMetricTimings(options));\n }\n\n /**\n * Returns true if the specified serviceErrorCode maps to an expected error.\n * @param {number} serviceErrorCode the service error code\n * @returns {boolean}\n */\n public isServiceErrorExpected(serviceErrorCode: number): boolean {\n return this.callDiagnosticMetrics.isServiceErrorExpected(serviceErrorCode);\n }\n}\n\nexport default Metrics;\n"],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export default MetricsBatcher;
2
+ declare const MetricsBatcher: any;
@@ -0,0 +1,2 @@
1
+ declare const CallDiagnosticEventsBatcher: any;
2
+ export default CallDiagnosticEventsBatcher;
@@ -0,0 +1,189 @@
1
+ import { WebexPlugin } from '@webex/webex-core';
2
+ import { MetricEventNames } from '../metrics.types';
3
+ /**
4
+ * @description Helper class to store latencies timestamp and to calculate various latencies for CA.
5
+ * @exports
6
+ * @class CallDiagnosticLatencies
7
+ */
8
+ export default class CallDiagnosticLatencies extends WebexPlugin {
9
+ latencyTimestamps: Map<MetricEventNames, number>;
10
+ precomputedLatencies: Map<string, number>;
11
+ private meetingId?;
12
+ /**
13
+ * @constructor
14
+ */
15
+ constructor(...args: any[]);
16
+ /**
17
+ * Clear timestamps
18
+ */
19
+ clearTimestamps(): void;
20
+ /**
21
+ * Associate current latencies with a meeting id
22
+ * @param meetingId
23
+ */
24
+ private setMeetingId;
25
+ /**
26
+ * Returns the meeting object associated with current latencies
27
+ * @returns meeting object
28
+ */
29
+ private getMeeting;
30
+ /**
31
+ * Store timestamp value
32
+ * @param key - key
33
+ * @param value -value
34
+ * @throws
35
+ * @returns
36
+ */
37
+ saveTimestamp({ key, value, options, }: {
38
+ key: MetricEventNames;
39
+ value?: number;
40
+ options?: {
41
+ meetingId?: string;
42
+ };
43
+ }): void;
44
+ /**
45
+ * Store precomputed latency value
46
+ * @param key - key
47
+ * @param value -value
48
+ * @throws
49
+ * @returns
50
+ */
51
+ saveLatency(key: string, value: number): void;
52
+ /**
53
+ * Store only the first timestamp value for the given key
54
+ * @param key - key
55
+ * @param value -value
56
+ * @throws
57
+ * @returns
58
+ */
59
+ saveFirstTimestampOnly(key: MetricEventNames, value?: number): void;
60
+ /**
61
+ * Helper to calculate end - start
62
+ * @param a start
63
+ * @param b end
64
+ * @returns latency
65
+ */
66
+ getDiffBetweenTimestamps(a: MetricEventNames, b: MetricEventNames): number;
67
+ /**
68
+ * Meeting Info Request
69
+ * @note Meeting Info request happen not just in the join phase. CA requires
70
+ * metrics around meeting info request that are only part of join phase.
71
+ * This internal.* event is used to track the real timestamps
72
+ * (when the actual request/response happen). This is because the actual CA event is
73
+ * sent inside the join method on the meeting object based on some logic, but that's not exactly when
74
+ * those events are actually fired. The logic only confirms that they have happened, and we send them over.
75
+ * @returns - latency
76
+ */
77
+ getMeetingInfoReqResp(): number;
78
+ /**
79
+ * Interstitial Time
80
+ * @returns - latency
81
+ */
82
+ getShowInterstitialTime(): number;
83
+ /**
84
+ * Call Init Join Request
85
+ * @returns - latency
86
+ */
87
+ getCallInitJoinReq(): number;
88
+ /**
89
+ * Locus Join Request
90
+ * @returns - latency
91
+ */
92
+ getJoinReqResp(): number;
93
+ /**
94
+ * Locus Join Response Sent Received
95
+ * @returns - latency
96
+ */
97
+ getJoinRespSentReceived(): any;
98
+ /**
99
+ * Local SDP Generated Remote SDP REceived
100
+ * @returns - latency
101
+ */
102
+ getLocalSDPGenRemoteSDPRecv(): number;
103
+ /**
104
+ * ICE Setup Time
105
+ * @returns - latency
106
+ */
107
+ getICESetupTime(): number;
108
+ /**
109
+ * Audio ICE time
110
+ * @returns - latency
111
+ */
112
+ getAudioICESetupTime(): number;
113
+ /**
114
+ * Video ICE Time
115
+ * @returns - latency
116
+ */
117
+ getVideoICESetupTime(): number;
118
+ /**
119
+ * Share ICE Time
120
+ * @returns - latency
121
+ */
122
+ getShareICESetupTime(): number;
123
+ /**
124
+ * Stay Lobby Time
125
+ * @returns - latency
126
+ */
127
+ getStayLobbyTime(): number;
128
+ /**
129
+ * Page JMT
130
+ * @returns - latency
131
+ */
132
+ getPageJMT(): number;
133
+ /**
134
+ * Click To Interstitial
135
+ * @returns - latency
136
+ */
137
+ getClickToInterstitial(): number;
138
+ /**
139
+ * Interstitial To Join Ok
140
+ * @returns - latency
141
+ */
142
+ getInterstitialToJoinOK(): number;
143
+ /**
144
+ * Call Init To MediaEngineReady
145
+ * @returns - latency
146
+ */
147
+ getCallInitMediaEngineReady(): number;
148
+ /**
149
+ * Interstitial To Media Ok
150
+ * @returns - latency
151
+ */
152
+ getInterstitialToMediaOKJMT(): number;
153
+ /**
154
+ * Total JMT
155
+ * @returns - latency
156
+ */
157
+ getTotalJMT(): number;
158
+ /**
159
+ * Join Conf JMT
160
+ * @returns - latency
161
+ */
162
+ getJoinConfJMT(): number;
163
+ /**
164
+ * Total Media JMT
165
+ * @returns - latency
166
+ */
167
+ getTotalMediaJMT(): number;
168
+ /**
169
+ * Client JMT
170
+ * @returns - latency
171
+ */
172
+ getClientJMT(): number;
173
+ /**
174
+ * Audio setup delay receive
175
+ */
176
+ getAudioJoinRespRxStart(): number;
177
+ /**
178
+ * Video setup delay receive
179
+ */
180
+ getVideoJoinRespRxStart(): number;
181
+ /**
182
+ * Audio setup delay transmit
183
+ */
184
+ getAudioJoinRespTxStart(): number;
185
+ /**
186
+ * Video setup delay transmit
187
+ */
188
+ getVideoJoinRespTxStart(): number;
189
+ }
@@ -0,0 +1,392 @@
1
+ import { StatelessWebexPlugin } from '@webex/webex-core';
2
+ import { Event, ClientType, SubClientType, NetworkType, EnvironmentType, NewEnvironmentType, ClientEvent, SubmitClientEventOptions, MediaQualityEvent, SubmitMQEOptions, SubmitMQEPayload, ClientLaunchMethodType, ClientEventError, ClientEventPayload } from '../metrics.types';
3
+ type GetOriginOptions = {
4
+ clientType: ClientType;
5
+ subClientType: SubClientType;
6
+ networkType?: NetworkType;
7
+ clientLaunchMethod?: ClientLaunchMethodType;
8
+ environment?: EnvironmentType;
9
+ newEnvironment?: NewEnvironmentType;
10
+ };
11
+ type GetIdentifiersOptions = {
12
+ meeting?: any;
13
+ mediaConnections?: any[];
14
+ correlationId?: string;
15
+ };
16
+ /**
17
+ * @description Util class to handle Call Analyzer Metrics
18
+ * @export
19
+ * @class CallDiagnosticMetrics
20
+ */
21
+ export default class CallDiagnosticMetrics extends StatelessWebexPlugin {
22
+ private callDiagnosticEventsBatcher;
23
+ private logger;
24
+ /**
25
+ * Constructor
26
+ * @param args
27
+ */
28
+ constructor(...args: any[]);
29
+ /**
30
+ * Returns the login type of the current user
31
+ * @returns one of 'login-ci','unverified-guest', null
32
+ */
33
+ getCurLoginType(): "unverified-guest" | "login-ci";
34
+ /**
35
+ * Returns if the meeting has converged architecture enabled
36
+ * @param options.meetingId
37
+ */
38
+ getIsConvergedArchitectureEnabled({ meetingId }: {
39
+ meetingId?: string;
40
+ }): boolean;
41
+ /**
42
+ * Get origin object for Call Diagnostic Event payload.
43
+ * @param options
44
+ * @param meetingId
45
+ * @returns
46
+ */
47
+ getOrigin(options: GetOriginOptions, meetingId?: string): {
48
+ name: "endpoint" | "antares" | "beech" | "breakout" | "cb" | "cloudproxy" | "edonus" | "givr" | "hecate" | "hedge" | "hesiod" | "homer" | "superhomer" | "l2sip" | "linus" | "locus" | "mcc" | "mcs" | "mercury" | "mes" | "mjs" | "mmp" | "mygdon" | "orpheus" | "page" | "poros" | "rhesos" | "terminus" | "tpgw" | "ucc" | "wdm" | "webexivr";
49
+ userAgent: string;
50
+ buildType?: "debug" | "test" | "prod" | "tap" | "analyzer-test";
51
+ upgradeChannel?: string;
52
+ instanceId?: string;
53
+ networkType: "wifi" | "ethernet" | "cellular" | "unknown";
54
+ localIP?: string;
55
+ usingProxy?: boolean;
56
+ mediaEngineSoftwareVersion?: string;
57
+ environment?: string;
58
+ newEnvironment?: string;
59
+ clientInfo?: {
60
+ os?: "windows" | "mac" | "ios" | "android" | "chrome" | "linux" | "other" | "android-x64" | "uwp-arm64";
61
+ osVersion?: string;
62
+ localIP?: string;
63
+ gatewayIP?: string;
64
+ macAddress?: string;
65
+ localNetworkPrefix?: string;
66
+ publicNetworkPrefix?: string;
67
+ browserLaunchMethod?: "url-handler" | "activex" | "npapi" | "extension" | "cwsapi" | "java" | "tfs" | "webacd" | "thinclient";
68
+ clientLaunchMethod?: "url-handler" | "universal-link" | "voice-command" | "notification" | "manual" | "teams-cross-launch" | "mc-cross-launch";
69
+ browser?: string;
70
+ browserVersion?: string;
71
+ clientType?: "MEETING_CENTER" | "EVENT_CENTER" | "TRAINING_CENTER" | "TEAMS_CLIENT" | "TEAMS_DEVICE" | "TEAMS_SHARE" | "SIP" | "RECORDING" | "CLOUD_AWARE_SIP" | "TEAMS_WXC_CLIENT" | "WXC_CLIENT" | "WXC_DEVICE" | "WEBEX_JS_SDK" | "VOICEA_CLIENT" | "CISCO_SIP_GW" | "WEBEX_SDK" | "CPAAS_THIRD_PARTY_SDK" | "WXC_THIRD_PARTY" | "WXCC";
72
+ subClientType?: "TEAMS_DEVICE" | "DESKTOP_APP" | "DESKTOP_APP_VDI" | "DEVICE_CURRENT" | "DEVICE_LEGACY_2020" | "HOLOGRAM_HEADSET_APP" | "HVDI_APP" | "MOBILE_APP" | "MOBILE_NETWORK" | "VDI_APP" | "WEB_APP";
73
+ clientVersion?: string;
74
+ localClientVersion?: string;
75
+ modelNumber?: string;
76
+ joinFirstUpdateLater?: "ep-enabled" | "sp-enabled" | "not-enabled";
77
+ standbyUsed?: boolean;
78
+ prefetchDocShowUsed?: boolean;
79
+ fastJoinUsed?: boolean;
80
+ clientDownloadSize?: number;
81
+ clientDownloadFileCount?: number;
82
+ nodeId?: number;
83
+ machineInfo?: string;
84
+ parentAppName?: string;
85
+ parentAppInPermitList?: boolean;
86
+ meetingSiteType?: "train" | "webex-11" | "orion";
87
+ CDNEnabled?: boolean;
88
+ clientMajorVersion?: string;
89
+ majorVersion?: number;
90
+ minorVersion?: number;
91
+ revision?: number;
92
+ isValidClientVersion?: boolean;
93
+ cpuInfo?: {
94
+ description: string;
95
+ clockSpeedGigaHertz: number;
96
+ numberOfCores: number;
97
+ architecture: "unknown" | "intel32" | "intel64" | "amd32" | "amd64" | "arm32" | "arm64";
98
+ staticPerformance?: string;
99
+ additionalProperties?: false;
100
+ };
101
+ shareType?: "cb-normal-share" | "ce-airplay-share" | "ce-direct-share" | "ce-gui-loopback-share" | "ce-input-source-share" | "ce-input-source-share-hdmi" | "ce-input-source-share-usbc" | "ce-jpg-share" | "ce-miracast-share" | "mcs-normal-share" | "mcs-normal-audio-share" | "mcs-hfps-share" | "mcs-hfps-audio-share";
102
+ videoDisplayMode?: "grid-view" | "active-speaker-view";
103
+ videoLayoutType?: "stack" | "stackWithShare" | "sideBySide" | "sideBySideWithShare" | "grid" | "floatingActive" | "floatingThumbnail" | "floatingGrid" | "overlay" | "focus" | "prominent" | "focusWithShare" | "prominentWithShare" | "equal" | "equalWithShare";
104
+ videoRenderType?: "wme" | "client_d3d" | "client_gdi";
105
+ vdiInfo?: {};
106
+ is64BitsClient?: boolean;
107
+ webexAppVersion?: string;
108
+ launch32BitsReason?: "forcewin32" | "disablewin64" | "platform_win32" | "platform_arm" | "platform_unknown" | "version_below_41.11";
109
+ inMeetingUpdate?: boolean;
110
+ mtaVersion?: string;
111
+ isWarholOpening?: boolean;
112
+ additionalProperties?: false;
113
+ };
114
+ emmVendorId?: string;
115
+ isHybridMedia?: boolean;
116
+ originData?: {};
117
+ additionalProperties?: false;
118
+ };
119
+ /**
120
+ * Gather identifier details for call diagnostic payload.
121
+ * @throws Error if initialization fails.
122
+ * @param options
123
+ */
124
+ getIdentifiers(options: GetIdentifiersOptions): {
125
+ attendeeId?: string;
126
+ breakoutGroupId?: string;
127
+ breakoutMoveId?: string;
128
+ breakoutSessionId?: string;
129
+ confluenceId?: string;
130
+ cpaasIdentifiers?: {
131
+ imiTenantId: string;
132
+ devClientId: string;
133
+ imiServiceId: string;
134
+ imiAppId: string;
135
+ sessionId: string;
136
+ sessionInstanceId: string;
137
+ additionalProperties?: false;
138
+ };
139
+ csdmDeviceUrl?: string;
140
+ destinationBreakoutSessionId?: string;
141
+ destinationLocusSessionId?: string;
142
+ destinationLocusUrl?: string;
143
+ destinationVenueId?: string;
144
+ deviceId?: string;
145
+ globalMeetingId?: string;
146
+ ivrCallId?: string;
147
+ ivrDialogId?: string;
148
+ ivrId?: string;
149
+ callId?: string;
150
+ locusId?: string;
151
+ locusSessionId?: string;
152
+ locusStartTime?: string;
153
+ locusUrl?: string;
154
+ machineId?: string;
155
+ mediaAgentAlias?: string;
156
+ mediaAgentGroupId?: string;
157
+ meetClusterName?: string;
158
+ meetingLookupUrl?: string;
159
+ meetingOrgId?: string;
160
+ msteamsTenantGuid?: string;
161
+ msteamsConferenceId?: string;
162
+ oauth2ClientId?: string;
163
+ orgId?: string;
164
+ provisionalCorrelationId?: string;
165
+ roomId?: string;
166
+ sipCallId?: string;
167
+ sipSessionId?: {
168
+ local?: string;
169
+ remote?: string;
170
+ additionalProperties?: false;
171
+ };
172
+ sipUri?: string;
173
+ subConfId?: string;
174
+ tenantId?: string;
175
+ trackingId?: string;
176
+ userId?: string;
177
+ venueId?: string;
178
+ venueUrl?: string;
179
+ whiteboardUrl?: string;
180
+ webexConferenceId?: number;
181
+ webexClusterName?: string;
182
+ webexConferenceIdStr?: string;
183
+ webexDataCenter?: string;
184
+ webexGuestId?: number;
185
+ webexMeetingId?: number;
186
+ webexNodeId?: number;
187
+ webexSiteId?: number;
188
+ webexSiteName?: string;
189
+ webexUserId?: number;
190
+ webexWebDomain?: string;
191
+ correlationId: string;
192
+ additionalProperties?: false;
193
+ } | {
194
+ attendeeId?: string;
195
+ breakoutGroupId?: string;
196
+ breakoutMoveId?: string;
197
+ breakoutSessionId?: string;
198
+ confluenceId?: string;
199
+ cpaasIdentifiers?: {
200
+ imiTenantId: string;
201
+ devClientId: string;
202
+ imiServiceId: string;
203
+ imiAppId: string;
204
+ sessionId: string;
205
+ sessionInstanceId: string;
206
+ additionalProperties?: false;
207
+ };
208
+ csdmDeviceUrl?: string;
209
+ destinationBreakoutSessionId?: string;
210
+ destinationLocusSessionId?: string;
211
+ destinationLocusUrl?: string;
212
+ destinationVenueId?: string;
213
+ deviceId?: string;
214
+ globalMeetingId?: string;
215
+ ivrCallId?: string;
216
+ ivrDialogId?: string;
217
+ ivrId?: string;
218
+ callId?: string;
219
+ locusId?: string;
220
+ locusSessionId?: string;
221
+ locusStartTime?: string;
222
+ locusUrl?: string;
223
+ machineId?: string;
224
+ mediaAgentAlias?: string;
225
+ mediaAgentGroupId?: string;
226
+ meetClusterName?: string;
227
+ meetingLookupUrl?: string;
228
+ meetingOrgId?: string;
229
+ msteamsTenantGuid?: string;
230
+ msteamsConferenceId?: string;
231
+ oauth2ClientId?: string;
232
+ orgId?: string;
233
+ provisionalCorrelationId?: string;
234
+ roomId?: string;
235
+ sipCallId?: string;
236
+ sipSessionId?: {
237
+ local?: string;
238
+ remote?: string;
239
+ additionalProperties?: false;
240
+ };
241
+ sipUri?: string;
242
+ subConfId?: string;
243
+ tenantId?: string;
244
+ trackingId?: string;
245
+ userId?: string;
246
+ venueId?: string;
247
+ venueUrl?: string;
248
+ whiteboardUrl?: string;
249
+ webexConferenceId?: number;
250
+ webexClusterName?: string;
251
+ webexConferenceIdStr?: string;
252
+ webexDataCenter?: string;
253
+ webexGuestId?: number;
254
+ webexMeetingId?: number;
255
+ webexNodeId?: number;
256
+ webexSiteId?: number;
257
+ webexSiteName?: string;
258
+ webexUserId?: number;
259
+ webexWebDomain?: string;
260
+ correlationId: string;
261
+ additionalProperties?: false;
262
+ };
263
+ /**
264
+ * Create diagnostic event, which can hold client event, feature event or MQE event data.
265
+ * This just initiates the shared properties that are required for all the 3 event categories.
266
+ * @param eventData
267
+ * @param options
268
+ * @returns
269
+ */
270
+ prepareDiagnosticEvent(eventData: Event['event'], options: any): Event;
271
+ /**
272
+ * TODO: NOT IMPLEMENTED
273
+ * Submit Feature Event
274
+ * @returns
275
+ */
276
+ submitFeatureEvent(): void;
277
+ /**
278
+ * Submit Media Quality Event
279
+ * @param args - submit params
280
+ * @param arg.name - event key
281
+ * @param arg.payload - additional payload to be merge with the default payload
282
+ * @param arg.options - options
283
+ */
284
+ submitMQE({ name, payload, options, }: {
285
+ name: MediaQualityEvent['name'];
286
+ payload: SubmitMQEPayload;
287
+ options: SubmitMQEOptions;
288
+ }): void;
289
+ /**
290
+ * Return Client Event payload by client error code
291
+ * @param arg - get error arg
292
+ * @param arg.clientErrorCode
293
+ * @param arg.serviceErrorCode
294
+ * @returns
295
+ */
296
+ getErrorPayloadForClientErrorCode({ clientErrorCode, serviceErrorCode, serviceErrorName, }: {
297
+ clientErrorCode: number;
298
+ serviceErrorCode: any;
299
+ serviceErrorName?: any;
300
+ }): ClientEventError;
301
+ /**
302
+ * Generate error payload for Client Event
303
+ * @param rawError
304
+ */
305
+ generateClientEventErrorPayload(rawError: any): {
306
+ fatal: boolean;
307
+ category: "other" | "signaling" | "media" | "network" | "expected";
308
+ errorDescription?: string;
309
+ errorCode?: number;
310
+ errorCodeStr?: string;
311
+ httpCode?: number;
312
+ errorCodeExt1?: number;
313
+ errorData?: {};
314
+ shownToUser: boolean;
315
+ serviceErrorCode?: number;
316
+ name: "other" | "locus.response" | "media-engine" | "ice.failed" | "locus.leave" | "client.leave" | "media-device" | "media-sca" | "wxc";
317
+ additionalProperties?: false;
318
+ };
319
+ /**
320
+ * Create client event object for in meeting events
321
+ * @param arg - create args
322
+ * @param arg.event - event key
323
+ * @param arg.options - options
324
+ * @returns object
325
+ */
326
+ private createClientEventObjectInMeeting;
327
+ /**
328
+ * Create client event object for pre meeting events
329
+ * @param arg - create args
330
+ * @param arg.event - event key
331
+ * @param arg.options - payload
332
+ * @returns object
333
+ */
334
+ private createClientEventObjectPreMeeting;
335
+ /**
336
+ * Prepare Client Event CA event.
337
+ * @param arg - submit params
338
+ * @param arg.event - event key
339
+ * @param arg.payload - additional payload to be merged with default payload
340
+ * @param arg.options - payload
341
+ * @returns {any} options to be with fetch
342
+ * @throws
343
+ */
344
+ private prepareClientEvent;
345
+ /**
346
+ * Submit Client Event CA event.
347
+ * @param arg - submit params
348
+ * @param arg.event - event key
349
+ * @param arg.payload - additional payload to be merged with default payload
350
+ * @param arg.options - payload
351
+ * @throws
352
+ */
353
+ submitClientEvent({ name, payload, options, }: {
354
+ name: ClientEvent['name'];
355
+ payload?: ClientEventPayload;
356
+ options?: SubmitClientEventOptions;
357
+ }): Promise<any>;
358
+ /**
359
+ * Prepare the event and send the request to metrics-a service.
360
+ * @param event
361
+ * @returns promise
362
+ */
363
+ submitToCallDiagnostics(event: Event): Promise<any>;
364
+ /**
365
+ * Pre login events are not batched. We make the request directly.
366
+ * @param event
367
+ * @param preLoginId
368
+ * @returns
369
+ */
370
+ submitToCallDiagnosticsPreLogin: (event: Event, preLoginId?: string) => Promise<any>;
371
+ /**
372
+ * Builds a request options object to later be passed to fetch().
373
+ * @param arg - submit params
374
+ * @param arg.event - event key
375
+ * @param arg.payload - additional payload to be merged with default payload
376
+ * @param arg.options - client event options
377
+ * @returns {Promise<any>}
378
+ * @throws
379
+ */
380
+ buildClientEventFetchRequestOptions({ name, payload, options, }: {
381
+ name: ClientEvent['name'];
382
+ payload?: ClientEventPayload;
383
+ options?: SubmitClientEventOptions;
384
+ }): Promise<any>;
385
+ /**
386
+ * Returns true if the specified serviceErrorCode maps to an expected error.
387
+ * @param {number} serviceErrorCode the service error code
388
+ * @returns {boolean}
389
+ */
390
+ isServiceErrorExpected(serviceErrorCode: number): boolean;
391
+ }
392
+ export {};