logs.proto 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. // Copyright 2021 Google LLC
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. syntax = "proto3";
  15. package google.cloud.video.livestream.logging.v1;
  16. import "google/cloud/video/livestream/v1/resources.proto";
  17. import "google/rpc/status.proto";
  18. option go_package = "google.golang.org/genproto/googleapis/cloud/video/livestream/logging/v1;logging";
  19. option java_multiple_files = true;
  20. option java_outer_classname = "LogsProto";
  21. option java_package = "com.google.cloud.video.livestream.logging.v1";
  22. // Logs of activities related to the Channels.
  23. message ChannelActivity {
  24. // Message is for more details of the log and instructions to users.
  25. string message = 1;
  26. // Different types of the logs.
  27. oneof activity_type {
  28. // The channel streaming state changes.
  29. StreamingStateChange streaming_state_change = 2;
  30. // An error happens with the video pipeline.
  31. StreamingError streaming_error = 3;
  32. // The channel has accepted an input stream.
  33. InputAccept input_accept = 4;
  34. // An error happens with the input stream.
  35. InputError input_error = 5;
  36. // An input stream disconnects.
  37. InputDisconnect input_disconnect = 6;
  38. }
  39. }
  40. // StreamingStateChange records when the channel streaming state changes.
  41. message StreamingStateChange {
  42. // New streaming state of the channel.
  43. google.cloud.video.livestream.v1.Channel.StreamingState new_state = 1;
  44. // Previous streaming state of the channel.
  45. google.cloud.video.livestream.v1.Channel.StreamingState previous_state = 2;
  46. }
  47. // StreamingError records when an error happens with the video pipeline.
  48. message StreamingError {
  49. // A description of the reason for the streaming error.
  50. google.rpc.Status error = 1;
  51. }
  52. // InputAccept records when the channel has accepted an input stream.
  53. message InputAccept {
  54. // ID of the input stream.
  55. string stream_id = 1;
  56. // The user-defined key for the input attachment.
  57. string input_attachment = 2;
  58. // Properties of the input stream.
  59. InputStreamProperty input_stream_property = 3;
  60. }
  61. // InputError records when an error happens with the input stream.
  62. message InputError {
  63. // ID of the input stream.
  64. string stream_id = 1;
  65. // The user-defined key for the input attachment. If the stream doesn’t belong
  66. // to any input attachment, this field is empty.
  67. string input_attachment = 2;
  68. // Properties of the input stream.
  69. InputStreamProperty input_stream_property = 3;
  70. // A description of the reason for the error with the input stream.
  71. google.rpc.Status error = 4;
  72. }
  73. // Properties of the input stream.
  74. message InputStreamProperty {
  75. // Properties of the video streams.
  76. repeated VideoStream video_streams = 1;
  77. // Properties of the audio streams.
  78. repeated AudioStream audio_streams = 2;
  79. }
  80. // Properties of the video stream.
  81. message VideoStream {
  82. // Index of this video stream.
  83. int32 index = 1;
  84. // Properties of the video format.
  85. VideoFormat video_format = 2;
  86. }
  87. // Properties of the video format.
  88. message VideoFormat {
  89. // Video codec used in this video stream.
  90. string codec = 1;
  91. // The width of the video stream in pixels.
  92. int32 width_pixels = 2;
  93. // The height of the video stream in pixels.
  94. int32 height_pixels = 3;
  95. // The frame rate of the input video stream.
  96. double frame_rate = 4;
  97. }
  98. // Properties of the audio stream.
  99. message AudioStream {
  100. // Index of this audio stream.
  101. int32 index = 1;
  102. // Properties of the audio format.
  103. AudioFormat audio_format = 2;
  104. }
  105. // Properties of the audio format.
  106. message AudioFormat {
  107. // Audio codec used in this audio stream.
  108. string codec = 1;
  109. // The number of audio channels.
  110. int32 channel_count = 2;
  111. // A list of channel names specifying the layout of the audio channels.
  112. repeated string channel_layout = 3;
  113. }
  114. // InputDisconnect records when an input stream disconnects.
  115. message InputDisconnect {
  116. // ID of the input stream.
  117. string stream_id = 1;
  118. // The user-defined key for the input attachment.
  119. string input_attachment = 2;
  120. }