Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changeset/nice-tigers-attend.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"github.com/livekit/protocol": patch
"@livekit/protocol": patch
---

Add featureinfo nested field for reporting noise cancellation feature specific metadata
169 changes: 92 additions & 77 deletions livekit/livekit_analytics.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion protobufs/livekit_analytics.proto
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,11 @@ message FeatureUsageInfo {
string track_id = 7;
// time ranges during which the feature was enabled.
// for e. g., noise cancellation may not be applied when a media track is paused/muted,
// this allows reporting only periods during which a feature is avtive.
// this allows reporting only periods during which a feature is active.
repeated TimeRange time_ranges = 8;

// Feature specific metadata included in the report
map<string, string> feature_info = 9;
}

message APICallRequest {
Expand Down