Streams overview

djuka

Member
Hi, we have licensed Flashphoner installed on our servers and we have one question:
can we get real-time information about currently opened streaming channels on server?
 

Max

Administrator
Staff member
Good day.
You can use server statistics page. For example, to check how many WebRTC streams are publishing and playing, use the following URL
Code:
curl -s 'http://localhost:8081/?action=stat&params=streams_webrtc_in,streams_webrtc_out'
You'll get a response like this
Code:
-----Stream Stats-----
streams_webrtc_in=1
streams_webrtc_out=1
This means 1 stream is published and 1 viewer plays it.
 
Top