Evostream server metric
Hello, does evostream can give me data about how much bandwidth a stream has taken and for how long has been online?
thank you!
1 Answers
Hi Orlando,
You can connect to EMS using Telnet:
telnet localhost 1112
You can then list stream information using the listStreams API command:
listStreams
You will get a response in JSON format. You can parse the response for audio.bytesCount, video.bytesCount, and upTime.
You can get the average bandwidth by dividing the total bytesCount with the upTime.
Please check our online documentation for the listStreams EMS API command here:
http://docs.evostream.com/ems_api_definition/liststreams
Click the link at the top right to search for other API commands.
Cheers,
Don