File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -24,3 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
24
]
25
25
}
26
26
```
27
+
28
+ ### Changed
29
+ - Show ` players ` .
30
+ - Show ` stream_id ` .
Original file line number Diff line number Diff line change @@ -119,7 +119,7 @@ func (s *Server) Serve(l net.Listener) error {
119
119
type stream struct {
120
120
Key string `json:"key"`
121
121
Url string `json:"url"`
122
- StreamId uint32 `json:"-"` // hide
122
+ StreamId uint32 `json:"stream_id"`
123
123
VideoTotalBytes uint64 `json:"video_total_bytes"`
124
124
VideoSpeed uint64 `json:"video_speed"`
125
125
AudioTotalBytes uint64 `json:"audio_total_bytes"`
@@ -128,7 +128,7 @@ type stream struct {
128
128
129
129
type streams struct {
130
130
Publishers []stream `json:"publishers"`
131
- Players []stream `json:"-"` // hide
131
+ Players []stream `json:"players"`
132
132
}
133
133
134
134
//http://127.0.0.1:8090/stat/livestat
You can’t perform that action at this time.
0 commit comments