We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbeda95 commit a183d86Copy full SHA for a183d86
README.md
@@ -235,6 +235,23 @@ const exampleIssue = {
235
}
236
```
237
238
+
239
+### MissingStreamDataDetector
240
+Detects issues with missing data in active inbound streams
241
+```ts
242
+const exampleIssue = {
243
+ type: 'stream',
244
+ reason: 'missing-video-stream-data' | 'missing-audio-stream-data',
245
+ trackIdentifier: 'some-track-id',
246
+ statsSample: {
247
+ bytesReceivedDelta: 0, // always zero if issue detected
248
+ bytesReceived: 2392384,
249
+ trackDetached: false,
250
+ trackEnded: false,
251
+ },
252
+}
253
+```
254
255
## Roadmap
256
257
- [ ] Adaptive getStats() call interval based on last getStats() execution time
0 commit comments