Skip to content

Commit

Permalink
apidocs: add missing fields in /list and SRT connections
Browse files Browse the repository at this point in the history
  • Loading branch information
aler9 committed Aug 4, 2024
1 parent aade940 commit ff68938
Showing 1 changed file with 30 additions and 7 deletions.
37 changes: 30 additions & 7 deletions apidocs/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down Expand Up @@ -502,6 +504,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down Expand Up @@ -562,17 +566,13 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
$ref: '#/components/schemas/HLSMuxer'

RecordingSegment:
type: object
properties:
start:
type: string

Recording:
type: object
properties:
Expand All @@ -588,11 +588,19 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
$ref: '#/components/schemas/Recording'

RecordingSegment:
type: object
properties:
start:
type: string

RTMPConn:
type: object
properties:
Expand Down Expand Up @@ -621,6 +629,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand All @@ -647,6 +657,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down Expand Up @@ -683,6 +695,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down Expand Up @@ -712,6 +726,9 @@ components:
type: integer
format: int64
description: The total number of received DATA packets, including retransmitted packets
packetsReceivedBelated:
type: integer
format: int64
packetsSentUnique:
type: integer
format: int64
Expand Down Expand Up @@ -784,6 +801,9 @@ components:
type: integer
format: int64
description: Same as packetsReceived, but expressed in bytes, including payload and all the headers (IP, TCP, SRT)
bytesReceivedBelated:
type: integer
format: int64
bytesSentUnique:
type: integer
format: int64
Expand Down Expand Up @@ -909,12 +929,13 @@ components:
format: float64
description: Percentage of retransmitted data vs. received data


SRTConnList:
type: object
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down Expand Up @@ -954,6 +975,8 @@ components:
properties:
pageCount:
type: integer
itemCount:
type: integer
items:
type: array
items:
Expand Down

0 comments on commit ff68938

Please sign in to comment.