@webex/plugin-meetings 1.153.4 → 1.154.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/dist/constants.js +13 -8
- package/dist/constants.js.map +1 -1
- package/dist/meeting/index.js +44 -34
- package/dist/meeting/index.js.map +1 -1
- package/dist/meetings/index.js +8 -1
- package/dist/meetings/index.js.map +1 -1
- package/dist/metrics/config.js +3 -1
- package/dist/metrics/config.js.map +1 -1
- package/dist/metrics/index.js +23 -9
- package/dist/metrics/index.js.map +1 -1
- package/dist/peer-connection-manager/index.js +14 -9
- package/dist/peer-connection-manager/index.js.map +1 -1
- package/dist/reconnection-manager/index.js +1 -1
- package/dist/reconnection-manager/index.js.map +1 -1
- package/dist/roap/handler.js +4 -4
- package/dist/roap/handler.js.map +1 -1
- package/package.json +5 -5
- package/src/constants.js +12 -6
- package/src/meeting/index.js +75 -62
- package/src/meetings/index.js +14 -3
- package/src/metrics/config.js +1 -0
- package/src/metrics/index.js +23 -9
- package/src/peer-connection-manager/index.js +20 -13
- package/src/reconnection-manager/index.js +3 -3
- package/src/roap/handler.js +5 -5
- package/test/unit/spec/meeting/index.js +5 -5
- package/test/unit/spec/metrics/index.js +6 -6
package/dist/meeting/index.js
CHANGED
|
@@ -536,10 +536,10 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
536
536
|
var _this$locusUrl;
|
|
537
537
|
|
|
538
538
|
// Whenever there is a failure when trying to access a user's device
|
|
539
|
-
// report it as an
|
|
539
|
+
// report it as an Behavioral metric
|
|
540
540
|
// This gives visibility into common errors and can help
|
|
541
541
|
// with further troubleshooting
|
|
542
|
-
var metricName = _constants.
|
|
542
|
+
var metricName = _constants.BEHAVIORAL_METRICS.GET_USER_MEDIA_FAILURE;
|
|
543
543
|
var data = {
|
|
544
544
|
correlation_id: _this.correlationId,
|
|
545
545
|
locus_id: (_this$locusUrl = _this.locusUrl) === null || _this$locusUrl === void 0 ? void 0 : _this$locusUrl.split('/').pop(),
|
|
@@ -550,7 +550,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
550
550
|
type: error.name
|
|
551
551
|
};
|
|
552
552
|
|
|
553
|
-
_metrics.default.
|
|
553
|
+
_metrics.default.sendBehavioralMetric(metricName, data, metadata);
|
|
554
554
|
|
|
555
555
|
throw new _media2.default('Unable to retrieve media streams', error);
|
|
556
556
|
});
|
|
@@ -1398,7 +1398,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
1398
1398
|
// https:// jira-eng-gpk2.cisco.com/jira/browse/SPARK-240520
|
|
1399
1399
|
// TODO: send custom parameter explaining why the inactivity happened
|
|
1400
1400
|
// refresh , no media or network got dsconnected or something else
|
|
1401
|
-
_metrics.default.
|
|
1401
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.DISCONNECT_DUE_TO_INACTIVITY, {
|
|
1402
1402
|
correlation_id: _this4.correlationId,
|
|
1403
1403
|
locus_id: _this4.locusId
|
|
1404
1404
|
}); // Upload logs on media inactivity
|
|
@@ -2227,7 +2227,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2227
2227
|
}
|
|
2228
2228
|
});
|
|
2229
2229
|
this.locusInfo.on(_constants.LOCUSINFO.EVENTS.MEDIA_INACTIVITY, function () {
|
|
2230
|
-
_metrics.default.
|
|
2230
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MEETING_MEDIA_INACTIVE, {
|
|
2231
2231
|
correlation_id: _this15.correlationId,
|
|
2232
2232
|
locus_id: _this15.locusId
|
|
2233
2233
|
});
|
|
@@ -2834,7 +2834,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
2834
2834
|
} else {
|
|
2835
2835
|
trackMediaID = null;
|
|
2836
2836
|
|
|
2837
|
-
_metrics.default.
|
|
2837
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MUTE_AUDIO_FAILURE, {
|
|
2838
2838
|
correlation_id: _this20.correlationId,
|
|
2839
2839
|
locus_id: _this20.locusUrl.split('/').pop()
|
|
2840
2840
|
});
|
|
@@ -3268,6 +3268,10 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3268
3268
|
event: _config.eventType.MERCURY_CONNECTION_RESTORED,
|
|
3269
3269
|
meeting: _this25
|
|
3270
3270
|
});
|
|
3271
|
+
|
|
3272
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MERCURY_CONNECTION_RESTORED, {
|
|
3273
|
+
correlation_id: _this25.correlationId
|
|
3274
|
+
});
|
|
3271
3275
|
}
|
|
3272
3276
|
|
|
3273
3277
|
_this25.hasWebsocketConnected = true;
|
|
@@ -3280,7 +3284,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3280
3284
|
meeting: _this25
|
|
3281
3285
|
});
|
|
3282
3286
|
|
|
3283
|
-
_metrics.default.
|
|
3287
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MERCURY_CONNECTION_FAILURE, {
|
|
3284
3288
|
correlation_id: _this25.correlationId
|
|
3285
3289
|
});
|
|
3286
3290
|
});
|
|
@@ -3368,7 +3372,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3368
3372
|
}
|
|
3369
3373
|
});
|
|
3370
3374
|
}).catch(function (error) {
|
|
3371
|
-
_metrics.default.
|
|
3375
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MUTE_AUDIO_FAILURE, {
|
|
3372
3376
|
correlation_id: _this26.correlationId,
|
|
3373
3377
|
locus_id: _this26.locusUrl.split('/').pop(),
|
|
3374
3378
|
reason: error.message,
|
|
@@ -3421,7 +3425,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3421
3425
|
}
|
|
3422
3426
|
});
|
|
3423
3427
|
}).catch(function (error) {
|
|
3424
|
-
_metrics.default.
|
|
3428
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.UNMUTE_AUDIO_FAILURE, {
|
|
3425
3429
|
correlation_id: _this27.correlationId,
|
|
3426
3430
|
locus_id: _this27.locusUrl.split('/').pop(),
|
|
3427
3431
|
reason: error.message,
|
|
@@ -3473,7 +3477,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3473
3477
|
}
|
|
3474
3478
|
});
|
|
3475
3479
|
}).catch(function (error) {
|
|
3476
|
-
_metrics.default.
|
|
3480
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MUTE_VIDEO_FAILURE, {
|
|
3477
3481
|
correlation_id: _this28.correlationId,
|
|
3478
3482
|
locus_id: _this28.locusUrl.split('/').pop(),
|
|
3479
3483
|
reason: error.message,
|
|
@@ -3525,7 +3529,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3525
3529
|
}
|
|
3526
3530
|
});
|
|
3527
3531
|
}).catch(function (error) {
|
|
3528
|
-
_metrics.default.
|
|
3532
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.UNMUTE_VIDEO_FAILURE, {
|
|
3529
3533
|
correlation_id: _this29.correlationId,
|
|
3530
3534
|
locus_id: _this29.locusUrl.split('/').pop(),
|
|
3531
3535
|
reason: error.message,
|
|
@@ -3596,7 +3600,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3596
3600
|
}).catch(function (error) {
|
|
3597
3601
|
_loggerProxy.default.logger.error('Meeting:index#joinWithMedia --> ', error);
|
|
3598
3602
|
|
|
3599
|
-
_metrics.default.
|
|
3603
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.JOIN_WITH_MEDIA_FAILURE, {
|
|
3600
3604
|
correlation_id: _this30.correlationId,
|
|
3601
3605
|
locus_id: _this30.locusUrl.split('/').pop(),
|
|
3602
3606
|
reason: error.message,
|
|
@@ -3669,7 +3673,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3669
3673
|
|
|
3670
3674
|
_loggerProxy.default.logger.error('Meeting:index#reconnect --> Meeting reconnect failed', error);
|
|
3671
3675
|
|
|
3672
|
-
_metrics.default.
|
|
3676
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MEETING_RECONNECT_FAILURE, {
|
|
3673
3677
|
correlation_id: _this31.correlationId,
|
|
3674
3678
|
locus_id: _this31.locusUrl.split('/').pop(),
|
|
3675
3679
|
reason: error.message,
|
|
@@ -3726,7 +3730,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3726
3730
|
|
|
3727
3731
|
_this32.triggerStopReceivingTranscriptionEvent();
|
|
3728
3732
|
|
|
3729
|
-
_metrics.default.
|
|
3733
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.RECEIVE_TRANSCRIPTION_FAILURE, {
|
|
3730
3734
|
correlation_id: _this32.correlationId,
|
|
3731
3735
|
reason: 'unexpected error: transcription LLM web socket connection error had occured.',
|
|
3732
3736
|
event: event
|
|
@@ -3792,7 +3796,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3792
3796
|
|
|
3793
3797
|
_loggerProxy.default.logger.error("Meeting:index#receiveTranscription --> ".concat(_context2.t0));
|
|
3794
3798
|
|
|
3795
|
-
_metrics.default.
|
|
3799
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.RECEIVE_TRANSCRIPTION_FAILURE, {
|
|
3796
3800
|
correlation_id: this.correlationId,
|
|
3797
3801
|
reason: _context2.t0.message,
|
|
3798
3802
|
stack: _context2.t0.stack
|
|
@@ -3901,10 +3905,6 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3901
3905
|
}
|
|
3902
3906
|
});
|
|
3903
3907
|
|
|
3904
|
-
_metrics.default.sendOperationalMetric(_constants.METRICS_OPERATIONAL_MEASURES.JOIN_ATTEMPT, {
|
|
3905
|
-
correlation_id: this.correlationId
|
|
3906
|
-
});
|
|
3907
|
-
|
|
3908
3908
|
_loggerProxy.default.logger.log('Meeting:index#join --> Joining a meeting');
|
|
3909
3909
|
|
|
3910
3910
|
if (this.meetingFiniteStateMachine.state === _constants.MEETING_STATE_MACHINE.STATES.ENDED) {
|
|
@@ -3969,6 +3969,11 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
3969
3969
|
}).then(function (join) {
|
|
3970
3970
|
joinSuccess(join);
|
|
3971
3971
|
_this34.deferJoin = undefined;
|
|
3972
|
+
|
|
3973
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.JOIN_SUCCESS, {
|
|
3974
|
+
correlation_id: _this34.correlationId
|
|
3975
|
+
});
|
|
3976
|
+
|
|
3972
3977
|
return join;
|
|
3973
3978
|
}).then( /*#__PURE__*/function () {
|
|
3974
3979
|
var _ref8 = (0, _asyncToGenerator2.default)( /*#__PURE__*/_regenerator.default.mark(function _callee3(join) {
|
|
@@ -4026,7 +4031,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4026
4031
|
_loggerProxy.default.logger.error('Meeting:index#join --> Failed', error); // TODO: change this to error codes and pre defined dictionary
|
|
4027
4032
|
|
|
4028
4033
|
|
|
4029
|
-
_metrics.default.
|
|
4034
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.JOIN_FAILURE, {
|
|
4030
4035
|
correlation_id: _this34.correlationId,
|
|
4031
4036
|
reason: (_error$error = error.error) === null || _error$error === void 0 ? void 0 : _error$error.message,
|
|
4032
4037
|
stack: error.stack
|
|
@@ -4100,7 +4105,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4100
4105
|
}).catch(function (error) {
|
|
4101
4106
|
var _error$error2;
|
|
4102
4107
|
|
|
4103
|
-
_metrics.default.
|
|
4108
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.ADD_DIAL_IN_FAILURE, {
|
|
4104
4109
|
correlation_id: _this35.correlationId,
|
|
4105
4110
|
dial_in_url: _this35.dialInUrl,
|
|
4106
4111
|
locus_id: locusUrl.split('/').pop(),
|
|
@@ -4141,7 +4146,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4141
4146
|
}).catch(function (error) {
|
|
4142
4147
|
var _error$error3;
|
|
4143
4148
|
|
|
4144
|
-
_metrics.default.
|
|
4149
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.ADD_DIAL_OUT_FAILURE, {
|
|
4145
4150
|
correlation_id: _this36.correlationId,
|
|
4146
4151
|
dial_out_url: _this36.dialOutUrl,
|
|
4147
4152
|
locus_id: locusUrl.split('/').pop(),
|
|
@@ -4455,7 +4460,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4455
4460
|
}).catch(function (error) {
|
|
4456
4461
|
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " Error adding media , setting up peerconnection, "), error);
|
|
4457
4462
|
|
|
4458
|
-
_metrics.default.
|
|
4463
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.ADD_MEDIA_FAILURE, {
|
|
4459
4464
|
correlation_id: _this39.correlationId,
|
|
4460
4465
|
locus_id: _this39.locusUrl.split('/').pop(),
|
|
4461
4466
|
reason: error.message,
|
|
@@ -4536,6 +4541,11 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4536
4541
|
_this39.floorGrantPending = true;
|
|
4537
4542
|
}
|
|
4538
4543
|
|
|
4544
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.ADD_MEDIA_SUCCESS, {
|
|
4545
|
+
correlation_id: _this39.correlationId,
|
|
4546
|
+
locus_id: _this39.locusUrl.split('/').pop()
|
|
4547
|
+
});
|
|
4548
|
+
|
|
4539
4549
|
return _promise.default.resolve();
|
|
4540
4550
|
});
|
|
4541
4551
|
}).catch(function (error) {
|
|
@@ -4554,7 +4564,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4554
4564
|
|
|
4555
4565
|
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " Error adding media failed to initiate PC and send request, "), error);
|
|
4556
4566
|
|
|
4557
|
-
_metrics.default.
|
|
4567
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.ADD_MEDIA_FAILURE, {
|
|
4558
4568
|
correlation_id: _this39.correlationId,
|
|
4559
4569
|
locus_id: _this39.locusUrl.split('/').pop(),
|
|
4560
4570
|
reason: error.message,
|
|
@@ -4672,7 +4682,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
4672
4682
|
}).catch(function (error) {
|
|
4673
4683
|
_loggerProxy.default.logger.error("".concat(LOG_HEADER, " Error updatedMedia, "), error);
|
|
4674
4684
|
|
|
4675
|
-
_metrics.default.
|
|
4685
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.UPDATE_MEDIA_FAILURE, {
|
|
4676
4686
|
correlation_id: _this41.correlationId,
|
|
4677
4687
|
locus_id: _this41.locusUrl.split('/').pop(),
|
|
4678
4688
|
reason: error.message,
|
|
@@ -5114,7 +5124,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5114
5124
|
function: 'leave'
|
|
5115
5125
|
}, _constants.EVENTS.REQUEST_UPLOAD_LOGS, _this47);
|
|
5116
5126
|
|
|
5117
|
-
_metrics.default.
|
|
5127
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MEETING_LEAVE_FAILURE, {
|
|
5118
5128
|
correlation_id: _this47.correlationId,
|
|
5119
5129
|
locus_id: _this47.locusUrl.split('/').pop(),
|
|
5120
5130
|
reason: error.message,
|
|
@@ -5171,7 +5181,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5171
5181
|
}).catch(function (error) {
|
|
5172
5182
|
_loggerProxy.default.logger.error('Meeting:index#startWhiteboardShare --> Error ', error);
|
|
5173
5183
|
|
|
5174
|
-
_metrics.default.
|
|
5184
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MEETING_START_WHITEBOARD_SHARE_FAILURE, {
|
|
5175
5185
|
correlation_id: _this48.correlationId,
|
|
5176
5186
|
locus_id: _this48.locusUrl.split('/').pop(),
|
|
5177
5187
|
reason: error.message,
|
|
@@ -5218,7 +5228,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5218
5228
|
}).catch(function (error) {
|
|
5219
5229
|
_loggerProxy.default.logger.error('Meeting:index#stopWhiteboardShare --> Error ', error);
|
|
5220
5230
|
|
|
5221
|
-
_metrics.default.
|
|
5231
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.STOP_WHITEBOARD_SHARE_FAILURE, {
|
|
5222
5232
|
correlation_id: _this49.correlationId,
|
|
5223
5233
|
locus_id: _this49.locusUrl.split('/').pop(),
|
|
5224
5234
|
reason: error.message,
|
|
@@ -5268,7 +5278,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5268
5278
|
}).catch(function (error) {
|
|
5269
5279
|
_loggerProxy.default.logger.error('Meeting:index#share --> Error ', error);
|
|
5270
5280
|
|
|
5271
|
-
_metrics.default.
|
|
5281
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.MEETING_SHARE_FAILURE, {
|
|
5272
5282
|
correlation_id: _this50.correlationId,
|
|
5273
5283
|
locus_id: _this50.locusUrl.split('/').pop(),
|
|
5274
5284
|
reason: error.message,
|
|
@@ -5338,7 +5348,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5338
5348
|
}).catch(function (error) {
|
|
5339
5349
|
_loggerProxy.default.logger.error('Meeting:index#stopFloorRequest --> Error ', error);
|
|
5340
5350
|
|
|
5341
|
-
_metrics.default.
|
|
5351
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.STOP_FLOOR_REQUEST_FAILURE, {
|
|
5342
5352
|
correlation_id: _this51.correlationId,
|
|
5343
5353
|
locus_id: _this51.locusUrl.split('/').pop(),
|
|
5344
5354
|
reason: error.message,
|
|
@@ -5675,7 +5685,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5675
5685
|
|
|
5676
5686
|
_loggerProxy.default.logger.error("Meeting:index#setMeetingQuality --> ".concat(error.message));
|
|
5677
5687
|
|
|
5678
|
-
_metrics.default.
|
|
5688
|
+
_metrics.default.sendBehavioralMetric(_constants.BEHAVIORAL_METRICS.SET_MEETING_QUALITY_FAILURE, {
|
|
5679
5689
|
correlation_id: _this54.correlationId,
|
|
5680
5690
|
locus_id: _this54.locusUrl.split('/').pop(),
|
|
5681
5691
|
reason: error.message,
|
|
@@ -5720,12 +5730,12 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5720
5730
|
});
|
|
5721
5731
|
}).catch(function (error) {
|
|
5722
5732
|
// Whenever there is a failure when trying to access a user's display
|
|
5723
|
-
// report it as an
|
|
5733
|
+
// report it as an Behavioral metric
|
|
5724
5734
|
// This gives visibility into common errors and can help
|
|
5725
5735
|
// with further troubleshooting
|
|
5726
5736
|
// This metrics will get erros for getDisplayMedia and share errors for now
|
|
5727
5737
|
// TODO: The getDisplayMedia errors need to be moved inside `media.getDisplayMedia`
|
|
5728
|
-
var metricName = _constants.
|
|
5738
|
+
var metricName = _constants.BEHAVIORAL_METRICS.GET_DISPLAY_MEDIA_FAILURE;
|
|
5729
5739
|
var data = {
|
|
5730
5740
|
correlation_id: _this55.correlationId,
|
|
5731
5741
|
locus_id: _this55.locusUrl.split('/').pop(),
|
|
@@ -5736,7 +5746,7 @@ var Meeting = /*#__PURE__*/function (_StatelessWebexPlugin) {
|
|
|
5736
5746
|
type: error.name
|
|
5737
5747
|
};
|
|
5738
5748
|
|
|
5739
|
-
_metrics.default.
|
|
5749
|
+
_metrics.default.sendBehavioralMetric(metricName, data, metadata);
|
|
5740
5750
|
|
|
5741
5751
|
throw new _media2.default('Unable to retrieve display media stream', error);
|
|
5742
5752
|
});
|