Is it possible to get the number of connected users on DSS with PHP
and/or some cgi script ?
I need to do this for a live streaming event....
So, basically, if there more than 150 users on a server....go to the
next server
I can make it happen if I can communicate with Darwin in some way :)
<?php
if(numConnectedUsers >200){
//goto this server
}
?>
Or, is there some kind of live updated text file that contains this info
If so, then I can fread the text file.