djuka Member Jul 26, 2021 #1 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?
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 Jul 27, 2021 #2 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¶ms=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.
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¶ms=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.