Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Video View V10 #19

Merged
merged 1 commit into from
May 6, 2024
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
13 changes: 13 additions & 0 deletions video_view/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,19 @@ See our [Streaming Exports guide](https://docs.mux.com/guides/data/export-raw-vi

As Mux Data adds new metrics, new versions of the protobuf specification are released. This repository always contains the most up-to-date specification. See our guide on [understanding the data fields](https://docs.mux.com/guides/data/export-raw-video-view-data#understand-the-data-fields) to see a full list of supported metrics.

### Version 10

Added new dimension:

- `ad_playback_failure_error_type_id`

Added new metrics:

- `view_content_startup_time`
- `ad_preroll_startup_time`
- `ad_playing_time`
- `view_content_playing_time`

### Version 9

Added new dimensions:
Expand Down
6 changes: 6 additions & 0 deletions video_view/v1/video_view.proto
Original file line number Diff line number Diff line change
Expand Up @@ -259,5 +259,11 @@ message VideoView {
optional int32 playback_failure_error_type_id = 143;
optional int32 playback_business_exception_error_type_id = 144;
optional int32 video_startup_business_exception_error_type_id = 145;
// ad metrics v3
optional int32 ad_playback_failure_error_type_id = 146;
optional int32 view_content_startup_time = 147;
optional int32 ad_preroll_startup_time = 148;
optional int32 ad_playing_time = 149;
optional int32 view_content_playing_time = 150;
reserved 200 to 299;
}
Loading