Hi,
I need to customize ServerListenerStartupStreamsMonitor module.
Assume
-
I need to read monitored applications list from a json formatted file and not Server.xml.
-
Monitored applications list could be reloaded dynamically.
Where I can find it’s source code?
Hi,
Some idea for enhancement.
Currently applications list is placed inside Server.xml
<Property>
<Name>startupStreamsMonitorApplicationList</Name>
<Value>live</Value>
</Property>
It’s not so flexible.
It can’t be reloaded without Wowza restart.
Idea:
- Declare path to a file startupStreamsMonitorApplicationList.json
<Property>
<Name>startupStreamsMonitorApplicationList</Name>
<Value>/usr/data/share/startupStreamsMonitorApplicationList.json</Value>
</Property>
- File startupStreamsMonitorApplicationList.json contains json
{
"appList": ["live1", "live2", ... "liveN"];
}
- Add API function to reload this file on the fly without WowzaMediaEngine restart.
Thanks, any ideas appreciated.