Wowza Community

Video stopping.

Hi,

I’m setting up a media server, i’ve tried with some different tune-up but i’ve got a problem that i cannot solve, when i have just a few users like 10\20 all goes fine, but when i start rising users, up to something like 50\60, the stream stops, just go black, and after some time, it starts back.

on htop the cpu and memory are almost fully free, on iftop i can see that all the interfaces goes from 70\80 Mbps to 10\20 Kbps. And the jconsole disconnects from the server, even if i’m connected locally.

The server have

2x Intel® Xeon® CPU E5-2603 0 @ 1.80GHz

32Gb ram

networking:

2x 10Gb solar flare

4x 1Gb intel

and the storage is not the problem.

Java :

java version “1.6.0_37”

Java™ SE Runtime Environment (build 1.6.0_37-b06)

Java HotSpot™ 64-Bit Server VM (build 20.12-b01, mixed mode)

The operating system is Gentoo with hardened kernel and some tweeking :

Meminfo

MemTotal:       32921128 kB
MemFree:        24351228 kB
Buffers:           94424 kB
Cached:          1821916 kB
SwapCached:            0 kB
Active:           725092 kB
Inactive:        1202088 kB
Active(anon):      10988 kB
Inactive(anon):      124 kB
Active(file):     714104 kB
Inactive(file):  1201964 kB
Unevictable:           0 kB
Mlocked:               0 kB
SwapTotal:       4194300 kB
SwapFree:        4194300 kB
Dirty:                 0 kB
Writeback:             0 kB
AnonPages:         10864 kB
Mapped:             8312 kB
Shmem:               256 kB
Slab:              93916 kB
SReclaimable:      54860 kB
SUnreclaim:        39056 kB
KernelStack:         872 kB
PageTables:         1756 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:    17509136 kB
Committed_AS:      50092 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      370960 kB
VmallocChunk:   34342325304 kB
AnonHugePages:         0 kB
HugePages_Total:    3072
HugePages_Free:     3072
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:        2532 kB
DirectMap2M:    18446744073709549568 kB
DirectMap1G:    31457280 kB

Sysctl

# /etc/sysctl.conf
#
# For more information on how this file works, please see
# the manpages sysctl(8) and sysctl.conf(5).
#
# In order for this file to work properly, you must first
# enable 'Sysctl support' in the kernel.
#
# Look in /proc/sys/ for all the things you can setup.
#
# Disables packet forwarding
net.ipv4.ip_forward = 0
# Disables IP dynaddr
#net.ipv4.ip_dynaddr = 0
# Disable ECN
#net.ipv4.tcp_ecn = 0
# Enables source route verification
net.ipv4.conf.default.rp_filter = N
# Enable reverse path
net.ipv4.conf.all.rp_filter = 1
# Enable SYN cookies (yum!)
# http://cr.yp.to/syncookies.html
net.ipv4.tcp_syncookies = 0
# Disable source route
#net.ipv4.conf.all.accept_source_route = 0
#net.ipv4.conf.default.accept_source_route = 0
# Disable redirects
#net.ipv4.conf.all.accept_redirects = 0
#net.ipv4.conf.default.accept_redirects = 0
# Disable secure redirects
#net.ipv4.conf.all.secure_redirects = 0
#net.ipv4.conf.default.secure_redirects = 0
# Ignore ICMP broadcasts
#net.ipv4.icmp_echo_ignore_broadcasts = 1
# Disables the magic-sysrq key
#kernel.sysrq = 0
# When the kernel panics, automatically reboot in 3 seconds
#kernel.panic = 3
# Allow for more PIDs (cool factor!); may break some programs
#kernel.pid_max = 999999
# You should compile nfsd into the kernel or add it
# to modules.autoload for this to work properly
# TCP Port for lock manager
#fs.nfs.nlm_tcpport = 0
# UDP Port for lock manager
#fs.nfs.nlm_udpport = 0
### custom swap
vm.swappiness = 0
## custom network
# increase TCP max buffer size setable using setsockopt()
net.core.rmem_max = 67108864
net.core.wmem_max = 67108864
# increase Linux autotuning TCP buffer limit
net.ipv4.tcp_rmem = 4096 87380 67108864
net.ipv4.tcp_wmem = 4096 65536 67108864
# increase the length of the processor input queue
net.core.netdev_max_backlog = 250000
net.ipv4.tcp_congestion_control=cubic
## custom fs
fs.inotify.max_user_watches = 65536
fs.file-max = 65535
## Huge Pages
vm.nr_hugepages = 3072

The wowza config are the following :

Setenv.sh

#!/bin/sh
_EXECJAVA=java
JAVA_OPTS="-d64 -Xmx8000M -XX:MaxPermSize=4000M -Xms8000M -Xss256k -XX:+AlwaysPreTouch -XX:ParallelCMSThreads=8 -XX:ParallelGCThreads=8"
JAVA_OPTS="$JAVA_OPTS -server"
JAVA_OPTS="$JAVA_OPTS -XX:+UseConcMarkSweepGC -XX:+UseLargePages -XX:+UseParNewGC -XX:NewSize=512m"
JAVA_OPTS="$JAVA_OPTS -Djava.net.preferIPv4Stack=true"
WMSAPP_HOME=/usr/local/WowzaMediaServer
WMSCONFIG_HOME=/usr/local/WowzaMediaServer
WMSCONFIG_URL=
export WMSAPP_HOME WMSCONFIG_HOME JAVA_OPTS _EXECJAVA

VHost.xml

<Root>
	<VHost>
		<HostPortList>
			<HostPort>
				<ProcessorCount>16</ProcessorCount>
				<IpAddress>*</IpAddress>
				<Port>1935</Port>
				<SocketConfiguration>
					<ReuseAddress>false</ReuseAddress>
					<ReceiveBufferSize>131072</ReceiveBufferSize>
					<ReadBufferSize>131072</ReadBufferSize>
					<SendBufferSize>131072</SendBufferSize>
					<KeepAlive>true</KeepAlive>
					<AcceptorBackLog>100</AcceptorBackLog>
				</SocketConfiguration>
				<HTTPStreamerAdapterIDs>cupertinostreaming,smoothstreaming,sanjosestreaming,dvrchunkstreaming</HTTPStreamerAdapterIDs>
				<HTTPProviders>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPCrossdomain</BaseClass>
						<RequestFilters>*crossdomain.xml</RequestFilters>
						<AuthenticationMethod>none</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPClientAccessPolicy</BaseClass>
						<RequestFilters>*clientaccesspolicy.xml</RequestFilters>
						<AuthenticationMethod>none</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPProviderMediaList</BaseClass>
						<RequestFilters>*jwplayer.rss|*jwplayer.smil|*medialist.smil|*manifest-rtmp.f4m</RequestFilters>
						<AuthenticationMethod>none</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPServerVersion</BaseClass>
						<RequestFilters>*</RequestFilters>
						<AuthenticationMethod>none</AuthenticationMethod>
					</HTTPProvider>
				</HTTPProviders>
			</HostPort>
			<HostPort>
				<ProcessorCount>16</ProcessorCount>
				<IpAddress>*</IpAddress>
				<Port>8086</Port>
				<SocketConfiguration>
				<ReuseAddress>false</ReuseAddress>
				<ReceiveBufferSize>131072</ReceiveBufferSize>
					<ReadBufferSize>131072</ReadBufferSize>
					<SendBufferSize>131072</SendBufferSize>
					<KeepAlive>true</KeepAlive>
					<AcceptorBackLog>100</AcceptorBackLog>
				</SocketConfiguration>
				<HTTPStreamerAdapterIDs></HTTPStreamerAdapterIDs>
				<HTTPProviders>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.streammanager.HTTPStreamManager</BaseClass>
						<RequestFilters>streammanager*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPServerInfoXML</BaseClass>
						<RequestFilters>serverinfo*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPConnectionInfo</BaseClass>
						<RequestFilters>connectioninfo*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPConnectionCountsXML</BaseClass>
						<RequestFilters>connectioncounts*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.transcoder.httpprovider.HTTPTranscoderThumbnail</BaseClass>
						<RequestFilters>transcoderthumbnail*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPProviderMediaList</BaseClass>
						<RequestFilters>medialist*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.livestreamrecord.http.HTTPLiveStreamRecord</BaseClass>
						<RequestFilters>livestreamrecord*</RequestFilters>
						<AuthenticationMethod>admin-digest</AuthenticationMethod>
					</HTTPProvider>
					<HTTPProvider>
						<BaseClass>com.wowza.wms.http.HTTPServerVersion</BaseClass>
						<RequestFilters>*</RequestFilters>
						<AuthenticationMethod>none</AuthenticationMethod>
					</HTTPProvider>
				</HTTPProviders>
			</HostPort>
		
		</HostPortList>
		
		<HTTPStreamerAdapters>
			<HTTPStreamerAdapter>
				<ID>smoothstreaming</ID>
				<Name>smoothstreaming</Name>
				<Properties>
				</Properties>
			</HTTPStreamerAdapter>
			<HTTPStreamerAdapter>
				<ID>cupertinostreaming</ID>
				<Name>cupertinostreaming</Name>
				<Properties>
				</Properties>
			</HTTPStreamerAdapter>
			<HTTPStreamerAdapter>
				<ID>sanjosestreaming</ID>
				<Name>sanjosestreaming</Name>
				<Properties>
				</Properties>
			</HTTPStreamerAdapter>
			<HTTPStreamerAdapter>
				<ID>dvrchunkstreaming</ID>
				<Name>dvrchunkstreaming</Name>
				<Properties>
				</Properties>
			</HTTPStreamerAdapter>
		</HTTPStreamerAdapters>
		<HandlerThreadPool>
			<PoolSize>1200</PoolSize>
		</HandlerThreadPool>
		<TransportThreadPool>
			<PoolSize>800</PoolSize>
		</TransportThreadPool>
		<IdleWorkers>
			<WorkerCount>16</WorkerCount>
			<CheckFrequency>50</CheckFrequency>
			<MinimumWaitTime>5</MinimumWaitTime>
		</IdleWorkers>
		<NetConnections>
			<ProcessorCount>16</ProcessorCount>
			<IdleFrequency>250</IdleFrequency>
			<SocketConfiguration>
				<ReuseAddress>false</ReuseAddress>
				<ReceiveBufferSize>131072</ReceiveBufferSize>
				<ReadBufferSize>131072</ReadBufferSize>
				<SendBufferSize>131072</SendBufferSize>
				<KeepAlive>true</KeepAlive>
				<AcceptorBackLog>100</AcceptorBackLog>
			</SocketConfiguration>
		</NetConnections>
		<HTTPTunnel>
			<KeepAliveTimeout>2000</KeepAliveTimeout>
		</HTTPTunnel>
		<Client>
			<ClientTimeout>9000</ClientTimeout>
			<IdleFrequency>250</IdleFrequency>
		</Client>
		<RTP>
			<IdleFrequency>75</IdleFrequency>
			<DatagramConfiguration>
				<Incoming>
					<ReuseAddress>true</ReuseAddress>
					<ReceiveBufferSize>131072</ReceiveBufferSize>
					<SendBufferSize>131072</SendBufferSize>
					<MulticastTimeout>50</MulticastTimeout>
					<DatagramMaximumPacketSize>4096</DatagramMaximumPacketSize>
				</Incoming>
				<Outgoing>
					<ReuseAddress>false</ReuseAddress>
					<ReceiveBufferSize>131072</ReceiveBufferSize>
					<SendBufferSize>131072</SendBufferSize>
					<MulticastTimeout>50</MulticastTimeout>
					<DatagramMaximumPacketSize>4096</DatagramMaximumPacketSize>
				</Outgoing>
			</DatagramConfiguration>
			<UnicastIncoming>
				<ProcessorCount>8</ProcessorCount>
			</UnicastIncoming>
			<UnicastOutgoing>
				<ProcessorCount>16</ProcessorCount>
			</UnicastOutgoing>
			<MulticastIncoming>
				<ProcessorCount>8</ProcessorCount>
			</MulticastIncoming>
			<MulticastOutgoing>
				<ProcessorCount>8</ProcessorCount>
			</MulticastOutgoing>
		</RTP>
		<Application>
			<ApplicationTimeout>60000</ApplicationTimeout>
			<PingTimeout>12000</PingTimeout>
			<ValidationFrequency>20000</ValidationFrequency>
			<MaximumPendingWriteBytes>0</MaximumPendingWriteBytes>
			<MaximumSetBufferTime>60000</MaximumSetBufferTime>
		</Application>
		<StartStartupStreams>true</StartStartupStreams>
		<Properties>
		</Properties>
	</VHost>
</Root>

Someone have some ideas ?

Application.xml

<Root>
	<Application>
		<Connections>
			<AutoAccept>true</AutoAccept>
			<AllowDomains></AllowDomains>
		</Connections>
		<Streams>
			<StreamType>default</StreamType>
			<StorageDir>/vds/01</StorageDir>
			<KeyDir>${com.wowza.wms.context.VHostConfigHome}/keys</KeyDir>
			<LiveStreamPacketizers></LiveStreamPacketizers>
			<Properties>
			</Properties>
		</Streams>
		<Transcoder>
			<LiveStreamTranscoder></LiveStreamTranscoder>
			<Templates>${SourceStreamName}.xml,transrate.xml</Templates>
			<ProfileDir>${com.wowza.wms.context.VHostConfigHome}/transcoder/profiles</ProfileDir>
			<TemplateDir>${com.wowza.wms.context.VHostConfigHome}/transcoder/templates</TemplateDir>
			<Properties>
			</Properties>
		</Transcoder>
		<DVR>
			<Recorders></Recorders>
			<Store></Store>
			<WindowDuration>0</WindowDuration>
			<StorageDir>${com.wowza.wms.context.VHostConfigHome}/dvr</StorageDir>
			<ArchiveStrategy>append</ArchiveStrategy>
			<Repeater>
				<ChunkOriginURL></ChunkOriginURL>
			</Repeater>
			<!-- Properties for DVR -->
			<Properties>
			</Properties>
		</DVR>
		<TimedText>
			<!-- VOD caption providers (separate with commas): vodcaptionproviderttml, vodcaptionprovidermp4_3gpp -->
			<VODTimedTextProviders>vodcaptionprovidermp4_3gpp</VODTimedTextProviders>
			
			<!-- Properties for TimedText -->
			<Properties>
			</Properties>		
		</TimedText>
		
		<!-- HTTPStreamers (separate with commas): cupertinostreaming, smoothstreaming, sanjosestreaming, dvrchunkstreaming -->
		<HTTPStreamers>cupertinostreaming,smoothstreaming,sanjosestreaming</HTTPStreamers>
		<SharedObjects>
			<StorageDir></StorageDir>
		</SharedObjects>
		<Client>
			<IdleFrequency>-1</IdleFrequency>
			<Access>
				<StreamReadAccess>*</StreamReadAccess>
				<StreamWriteAccess>*</StreamWriteAccess>
				<StreamAudioSampleAccess></StreamAudioSampleAccess>
				<StreamVideoSampleAccess></StreamVideoSampleAccess>
				<SharedObjectReadAccess>*</SharedObjectReadAccess>
				<SharedObjectWriteAccess>*</SharedObjectWriteAccess>
			</Access>
		</Client>
		<RTP>
			<!-- RTP/Authentication/[type]Methods defined in Authentication.xml. Default setup includes; none, basic, digest -->
			<Authentication>
				<PublishMethod>digest</PublishMethod>
				<PlayMethod>none</PlayMethod>
			</Authentication>
			<!-- RTP/AVSyncMethod. Valid values are: senderreport, systemclock, rtptimecode -->
			<AVSyncMethod>senderreport</AVSyncMethod>
			<MaxRTCPWaitTime>12000</MaxRTCPWaitTime>
			<IdleFrequency>75</IdleFrequency>
			<RTSPSessionTimeout>90000</RTSPSessionTimeout>
			<RTSPMaximumPendingWriteBytes>0</RTSPMaximumPendingWriteBytes>
			<RTSPBindIpAddress></RTSPBindIpAddress>
			<RTSPConnectionIpAddress>0.0.0.0</RTSPConnectionIpAddress>
			<RTSPOriginIpAddress>127.0.0.1</RTSPOriginIpAddress>
			<IncomingDatagramPortRanges>*</IncomingDatagramPortRanges>
			<!-- Properties defined here will override any properties defined in conf/RTP.xml for any depacketizers loaded by this application -->
			<Properties>
			</Properties>
		</RTP>
		<MediaCaster>
			<RTP>
				<RTSP>
					<!-- udp, interleave -->
					<RTPTransportMode>interleave</RTPTransportMode>
				</RTSP>
			</RTP>
			<!-- Properties defined here will override any properties defined in conf/MediaCasters.xml for any MediaCasters loaded by this applications -->
			<Properties>
			</Properties>
		</MediaCaster>
		<MediaReader>
			<!-- Properties defined here will override any properties defined in conf/MediaReaders.xml for any MediaReaders loaded by this applications -->
			<Properties>
			</Properties>
		</MediaReader>
		<MediaWriter>
			<!-- Properties defined here will override any properties defined in conf/MediaWriter.xml for any MediaWriter loaded by this applications -->
			<Properties>
			</Properties>
		</MediaWriter>
		<LiveStreamPacketizer>
			<!-- Properties defined here will override any properties defined in conf/LiveStreamPacketizers.xml for any LiveStreamPacketizers loaded by this applications -->
			<Properties>
			</Properties>
		</LiveStreamPacketizer>
		<HTTPStreamer>
			<!-- Properties defined here will override any properties defined in conf/HTTPStreamers.xml for any HTTPStreamer loaded by this applications -->
			
		</HTTPStreamer>
		<Repeater>
			<OriginURL></OriginURL>
			<QueryString><![CDATA[]]></QueryString>
		</Repeater> 
		<Modules>
			<Module>
				<Name>base</Name>
				<Description>Base</Description>
				<Class>com.wowza.wms.module.ModuleCore</Class>
			</Module>
			<Module>
				<Name>properties</Name>
				<Description>Properties</Description>
				<Class>com.wowza.wms.module.ModuleProperties</Class>
			</Module>
			<Module>
				<Name>logging</Name>
				<Description>Client Logging</Description>
				<Class>com.wowza.wms.module.ModuleClientLogging</Class>
			</Module>
			<Module>
				<Name>flvplayback</Name>
				<Description>FLVPlayback</Description>
				<Class>com.wowza.wms.module.ModuleFLVPlayback</Class>
			</Module> 
		</Modules>
		<Properties>
		</Properties>
	</Application>
</Root>

It sounds like a network limitation, a bandwidth bottleneck.

It doesn’t help to use DEBUG level logging, it’s too much info usually. Revert to INFO.

Richard

when i have just a few users like 10\20 all goes fine, but when i start rising users, up to something like 50\60, the stream stops, just go black

This sounds like a bandwidth bottle-neck. DEBUG level logging won’t help. It is useful sometimes but otherwise just makes it difficult to see what is happening.

Richard

xxlukexx, did you manage to fix your problem?

Would you find sharing your findings and solution?

Regards,

This is the startup in debug mode :

#Version: 1.0
#Start-Date: 2012-11-16 18:22:20 GMT
#Software: Wowza Media Server 3.5.0 build2989
#Date: 2012-11-16
#Fields: date	time	tz	x-event	x-category	x-severity	x-status	x-ctx	x-comment	x-vhost	x-app	x-appinst	x-duration	s-ip	s-port	s-uri	c-ip	c-proto	c-referrer	c-user-agent	c-client-id	cs-bytes	sc-bytes	x-stream-id	x-spos	cs-stream-bytes	sc-stream-bytes	x-sname	x-sname-query	x-file-name	x-file-ext	x-file-size	x-file-length	x-suri	x-suri-stem	x-suri-query	cs-uri-stem	cs-uri-query
2012-11-16	18:22:21	GMT	comment	server	DEBUG	200	-	Loading Server.xml: file:///usr/local/WowzaMediaServer/conf/Server.xml	-	-	-	0.415	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	DEBUG	200	-	Using existing MBeanServer 0	-	-	-	0.538	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	DEBUG	200	-	Loading VHosts.xml: file:///usr/local/WowzaMediaServer/conf/VHosts.xml	-	-	-	0.587	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	DEBUG	200	-	{VHostItem=_defaultVHost_ configDir=/usr/local/WowzaMediaServer connectionLimit=0 properties={}}	-	-	-	0.598	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	server-start	server	INFO	200	Wowza Media Server 3 Monthly Edition 3.5.0 build2989	-	-	-	-	0.761	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Server License Key: SVRM3-XXXXX-XXXXX-XXXXX-XXXXX-rUQxP	-	-	-	0.762	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Maximum Connections: Unlimited	-	-	-	0.763	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Transcoder Streams Available: Unlimited	-	-	-	0.768	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Transcoder Watermark: No	-	-	-	0.769	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	nDVR Available: Yes	-	-	-	0.77	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	DRM Available: Yes	-	-	-	0.77	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Hardware Available Processors: 8	-	-	-	0.771	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Hardware Physical Memory: 15561MB/32149MB	-	-	-	0.772	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Hardware Swap Space: 4095MB/4095MB	-	-	-	0.773	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Max File Descriptor Count: 20000	-	-	-	0.774	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Open File Descriptor Count: 46	-	-	-	0.775	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	OS Name: Linux	-	-	-	0.775	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	OS Version: 3.5.4-hardened-r1	-	-	-	0.776	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	OS Architecture: amd64	-	-	-	0.777	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Name: Java HotSpot(TM) 64-Bit Server VM	-	-	-	0.777	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Vendor: Sun Microsystems Inc.	-	-	-	0.778	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Version: 1.6.0_37	-	-	-	0.779	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java VM Version: 20.12-b01	-	-	-	0.779	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Spec Version: 1.6	-	-	-	0.78	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Home: /opt/sun-jdk-1.6.0.37/jre	-	-	-	0.78	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Max Heap Size: 7948MB	-	-	-	0.781	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Architecture: 64	-	-	-	0.782	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Locale[user.language]: en	-	-	-	0.782	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Locale[user.country]: US	-	-	-	0.783	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Locale[file.encoding]: ANSI_X3.4-1968	-	-	-	0.784	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Timezone[user.timezone]: GB	-	-	-	0.784	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[0]: -Xmx8000M	-	-	-	0.785	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[1]: -XX:MaxPermSize=4000M	-	-	-	0.786	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[2]: -Xms8000M	-	-	-	0.786	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[3]: -Xss256k	-	-	-	0.787	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[4]: -XX:+AlwaysPreTouch	-	-	-	0.788	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[5]: -XX:ParallelCMSThreads=8	-	-	-	0.788	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[6]: -XX:ParallelGCThreads=8	-	-	-	0.789	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[7]: -XX:+UseConcMarkSweepGC	-	-	-	0.79	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[8]: -XX:+UseLargePages	-	-	-	0.79	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[9]: -XX:+UseParNewGC	-	-	-	0.791	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[10]: -XX:NewSize=512m	-	-	-	0.791	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[11]: -Djava.net.preferIPv4Stack=true	-	-	-	0.792	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[12]: -Dcom.sun.management.jmxremote=true	-	-	-	0.793	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[13]: -Dcom.wowza.wms.runmode=service	-	-	-	0.793	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[14]: -Dcom.wowza.wms.native.base=linux	-	-	-	0.794	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[15]: -Dcom.wowza.wms.AppHome=/usr/local/WowzaMediaServer	-	-	-	0.794	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[16]: -Dcom.wowza.wms.ConfigURL=	-	-	-	0.795	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Java Args[17]: -Dcom.wowza.wms.ConfigHome=/usr/local/WowzaMediaServer	-	-	-	0.796	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Server runmode: service	-	-	-	0.796	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Server native.platform: linux	-	-	-	0.797	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:21	GMT	comment	server	INFO	200	-	Server threads[h/t]: 10/10	-	-	-	0.798	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	INFO	200	-	JMX java.rmi.server.hostname: xxxxxxxxxxxxxx	-	-	-	1.654	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	INFO	200	-	JMX bind attempt service:jmx:rmi://xxxxxxxxxxxx:8084/jndi/rmi://xxxxxxxxxxxxxx:8085/jmxrmi	-	-	-	1.655	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	INFO	200	-	JMX password file: /usr/local/WowzaMediaServer/conf/jmxremote.password	-	-	-	1.658	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	INFO	200	-	JMX access file: /usr/local/WowzaMediaServer/conf/jmxremote.access	-	-	-	1.659	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	INFO	200	-	JMX bind successful	-	-	-	1.82	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	Loading Streams.xml: file:///usr/local/WowzaMediaServer/conf/Streams.xml	-	-	-	1.867	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=default description=FLV Video Recorder baseClass=com.wowza.wms.stream.record.MediaStreamRecord playClass=com.wowza.wms.stream.file.MediaStreamFilePlay properties={behindDropPFrames=4000 preGenerateMediaIndex=false versionFile=false appendFile=false maxPendingSeekRequests=4 behindDropAudio=6000 behindDropDFrames=2000 behindSendSeqCount=4 behindDropKFrames=6000 seekTarget=videoKeyFrame disableLowBandwidthThrottling=false}}	-	-	-	1.986	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=record description=FLV Video Recorder baseClass=com.wowza.wms.stream.record.MediaStreamRecord playClass=com.wowza.wms.stream.file.MediaStreamFilePlay properties={behindDropPFrames=4000 preGenerateMediaIndex=false versionFile=false appendFile=false maxPendingSeekRequests=4 behindDropAudio=6000 behindDropDFrames=2000 behindSendSeqCount=4 behindDropKFrames=6000 seekTarget=videoKeyFrame disableLowBandwidthThrottling=false}}	-	-	-	1.991	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=live description=Live Video baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false behindDropAudio=6000 flushInterval=75 behindDropDFrames=1500 behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=true}}	-	-	-	1.999	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=live-lowlatency description=Live Video baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=2000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=3000 flushInterval=50 behindDropDFrames=1000 behindDropKFrames=3000 disableLowBandwidthThrottling=false instantOn=false}}	-	-	-	2.008	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=chat description=Live Video baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=6000 flushInterval=50 behindDropDFrames=1500 behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=false}}	-	-	-	2.018	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=live-record description=Video Live with Recording baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 recordDataPackets=true appendFile=false behindDropAudio=6000 recordWaitForVideoKeyFrame=true versionFile=true onFlushNotifyClients=false flushInterval=125 behindDropDFrames=1500 behindDropKFrames=6000 instantOn=true disableLowBandwidthThrottling=false}}	-	-	-	2.031	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=live-record-lowlatency description=Video Live with Recording baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=2000 isLive=true maxliveaudiolatency=8000 recordDataPackets=true appendFile=false behindDropAudio=3000 recordWaitForVideoKeyFrame=true versionFile=true onFlushNotifyClients=true flushInterval=50 behindDropDFrames=1000 behindDropKFrames=3000 instantOn=false disableLowBandwidthThrottling=false}}	-	-	-	2.044	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=file description=FLV Video Player baseClass=com.wowza.wms.stream.MediaStreamBase playClass=com.wowza.wms.stream.file.MediaStreamFilePlay properties={behindDropPFrames=4000 preGenerateMediaIndex=false maxPendingSeekRequests=4 behindDropAudio=6000 behindDropDFrames=2000 behindSendSeqCount=4 behindDropKFrames=6000 seekTarget=videoKeyFrame disableLowBandwidthThrottling=false}}	-	-	-	2.052	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=shoutcast description=ShoutCast baseClass=com.wowza.wms.stream.MediaStreamBase playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false behindDropAudio=6000 flushInterval=75 behindDropDFrames=1500 mediaCasterType=shoutcast behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=true}}	-	-	-	2.059	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=shoutcast-record description=ShoutCast baseClass=com.wowza.wms.stream.MediaStreamBase playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 appendFile=false behindDropAudio=6000 mediaCasterType=shoutcast-record versionFile=true onFlushNotifyClients=false flushInterval=75 behindDropDFrames=1500 behindDropKFrames=6000 instantOn=true disableLowBandwidthThrottling=false}}	-	-	-	2.066	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=shoutcast-buffer description=ShoutCast Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={isLive=true maxliveaudiolatency=20000 onFlushNotifyClients=false flushInterval=125}}	-	-	-	2.074	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=shoutcast-buffer-record description=ShoutCast Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass= properties={isLive=true versionFile=true maxliveaudiolatency=20000 onFlushNotifyClients=false appendFile=false flushInterval=125}}	-	-	-	2.081	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-origin description=Live Repeater Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=6000 flushInterval=50 behindDropDFrames=1500 behindDropKFrames=6000 disableLowBandwidthThrottling=true instantOn=false}}	-	-	-	2.088	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-origin-record description=Live Repeater Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass=com.wowza.wms.stream.live.MediaStreamLivePlay properties={behindDropPFrames=3000 isLive=true versionFile=true maxliveaudiolatency=8000 onFlushNotifyClients=true appendFile=false behindDropAudio=6000 flushInterval=50 behindDropDFrames=1500 behindDropKFrames=6000 disableLowBandwidthThrottling=true instantOn=false}}	-	-	-	2.094	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-edge description=Live Stream Repeater Edge baseClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCaster playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=3000 isLive=true isLiveRepeaterEdge=true maxliveaudiolatency=8000 onFlushNotifyClients=false behindDropAudio=6000 flushInterval=75 behindDropDFrames=1500 mediaCasterType=liverepeater behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=true}}	-	-	-	2.098	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-edge-lowlatency description=Live Stream Repeater Edge baseClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCaster playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=2000 isLive=true isLiveRepeaterEdge=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=3000 flushInterval=50 behindDropDFrames=1000 mediaCasterType=liverepeater behindDropKFrames=3000 disableLowBandwidthThrottling=false instantOn=false}}	-	-	-	2.102	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-edge-origin description=Live Stream Repeater Edge baseClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCaster playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=2000 isLive=true isLiveRepeaterEdge=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=3000 flushInterval=50 behindDropDFrames=1000 mediaCasterType=liverepeater behindDropKFrames=3000 disableLowBandwidthThrottling=true instantOn=false}}	-	-	-	2.106	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=liverepeater-buffer description=Live Stream Repeater Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass= properties={isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false flushInterval=50}}	-	-	-	2.109	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-live description=RTP Live baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false behindDropAudio=6000 flushInterval=75 behindDropDFrames=1500 mediaCasterType=rtp behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=true}}	-	-	-	2.112	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-live-record description=RTP Live Record baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 recordDataPackets=true appendFile=false behindDropAudio=6000 recordWaitForVideoKeyFrame=true mediaCasterType=rtp-record versionFile=true onFlushNotifyClients=false flushInterval=75 behindDropDFrames=1500 behindDropKFrames=6000 instantOn=true disableLowBandwidthThrottling=false}}	-	-	-	2.116	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-live-lowlatency description=RTP Live Low Latency baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=2000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=true behindDropAudio=3000 flushInterval=50 behindDropDFrames=1000 mediaCasterType=rtp-lowlatency behindDropKFrames=3000 disableLowBandwidthThrottling=false instantOn=false}}	-	-	-	2.119	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-live-record-lowlatency description=RTP Live Low Latency Record baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass=com.wowza.wms.stream.mediacaster.MediaStreamMediaCasterPlay properties={behindDropPFrames=2000 isLive=true maxliveaudiolatency=8000 recordDataPackets=true appendFile=false behindDropAudio=3000 recordWaitForVideoKeyFrame=true mediaCasterType=rtp-record-lowlatency versionFile=true onFlushNotifyClients=true flushInterval=50 behindDropDFrames=1000 behindDropKFrames=3000 instantOn=false disableLowBandwidthThrottling=false}}	-	-	-	2.123	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-buffer description=RTP Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass= properties={isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false flushInterval=50}}	-	-	-	2.126	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-buffer-lowlatency description=RTP Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass= properties={isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=true flushInterval=50}}	-	-	-	2.129	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-buffer-record description=RTP Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass= properties={isLive=true versionFile=true maxliveaudiolatency=8000 onFlushNotifyClients=false appendFile=false flushInterval=50}}	-	-	-	2.132	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtp-buffer-record-lowlatency description=RTP Buffer baseClass=com.wowza.wms.stream.live.MediaStreamLiveRecord playClass= properties={isLive=true versionFile=true maxliveaudiolatency=8000 onFlushNotifyClients=true appendFile=false flushInterval=50}}	-	-	-	2.135	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=netconnection description=NetConnection Stream baseClass=com.wowza.wms.stream.MediaStreamVODTest playClass=null properties={}}	-	-	-	2.138	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=rtpout description=Live Video baseClass=com.wowza.wms.stream.live.MediaStreamLive playClass=com.wowza.wms.stream.rtp.MediaStreamRTPPlay properties={behindDropPFrames=3000 isLive=true maxliveaudiolatency=8000 onFlushNotifyClients=false behindDropAudio=6000 flushInterval=75 behindDropDFrames=1500 behindDropKFrames=6000 disableLowBandwidthThrottling=false instantOn=true}}	-	-	-	2.141	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=httpstreamer description=HTTP Streamer baseClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamer playClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamerPlay properties={isLive=true}}	-	-	-	2.143	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=httprepeater-edge description=HTTP Streamer baseClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamerRepeaterEdge playClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamerRepeaterEdgePlay properties={isLive=true mediaCasterType=httprepeater}}	-	-	-	2.146	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=httprepeater-origin description=HTTP Streamer baseClass=com.wowza.wms.stream.MediaStreamBase playClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamerRepeaterOriginPlay properties={isLive=true}}	-	-	-	2.149	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{StreamType=httprepeater-buffer description=HTTP Live Stream Repeater Buffer baseClass=com.wowza.wms.stream.httpstreamer.MediaStreamHTTPStreamerRepeaterBuffer playClass= properties={isLive=true}}	-	-	-	2.152	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	Loading MediaReaders.xml: file:///usr/local/WowzaMediaServer/conf/MediaReaders.xml	-	-	-	2.153	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp4 description=MP4 Media Reader baseClass=com.wowza.wms.mediareader.h264.MediaReaderH264 contentType=media properties={mp4IndexBufferSize=16384 mp4ReadAheadSize=65536}}	-	-	-	2.169	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=flv description=FLV Media Reader baseClass=com.wowza.wms.mediareader.flv.MediaReaderFLV contentType=media properties={flvSeekBufferSize=24576 flvReadAheadSize=65536}}	-	-	-	2.17	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=flvMeta description=FLV Media Reader baseClass=com.wowza.wms.mediareader.flv.MediaReaderFLV contentType=media properties={flvSeekBufferSize=24576 flvReadAheadSize=65536}}	-	-	-	2.171	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp3 description=MP3 Media Reader baseClass=com.wowza.wms.mediareader.mp3.MediaReaderMP3 contentType=media properties={mp3ReadAheadSize=16384 mp3JustID3Tags=false}}	-	-	-	2.172	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=id3 description=MP3 Media Reader baseClass=com.wowza.wms.mediareader.mp3.MediaReaderMP3 contentType=media properties={mp3ReadAheadSize=16384 mp3JustID3Tags=true}}	-	-	-	2.174	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp4cupertino description=MP4 Media Reader Cupertino baseClass=com.wowza.wms.httpstreamer.cupertinostreaming.file.MediaReaderH264Cupertino contentType=media properties={mp4IndexBufferSize=16384 mp4ReadAheadSize=65536}}	-	-	-	2.175	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp3cupertino description=MP3 Media Reader Cupertino baseClass=com.wowza.wms.httpstreamer.cupertinostreaming.file.MediaReaderMP3Cupertino contentType=media properties={mp3ReadAheadSize=65536 mp3JustID3Tags=false}}	-	-	-	2.176	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp4smooth description=MP4 Media Reader Smooth Streaming baseClass=com.wowza.wms.httpstreamer.smoothstreaming.file.MediaReaderH264SmoothStreamer contentType=media properties={mp4IndexBufferSize=16384 mp4ReadAheadSize=65536}}	-	-	-	2.177	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp4sanjose description=MP4 Media Reader San Jose baseClass=com.wowza.wms.httpstreamer.sanjosestreaming.file.MediaReaderH264SanJose contentType=media properties={mp4IndexBufferSize=16384 mp4ReadAheadSize=65536}}	-	-	-	2.179	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=mp3sanjose description=MP3 Media Reader San Jose baseClass=com.wowza.wms.httpstreamer.sanjosestreaming.file.MediaReaderMP3SanJose contentType=media properties={mp3ReadAheadSize=65536 mp3JustID3Tags=false}}	-	-	-	2.18	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=smil description=SMIL Media Reader baseClass=com.wowza.wms.mediareader.smil.MediaListReaderSMIL contentType=medialist properties={smilMaxFileLength=1048576}}	-	-	-	2.181	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=ngrp description=Name Group Media Reader baseClass=com.wowza.wms.stream.MediaListReaderNGRP contentType=medialist properties={}}	-	-	-	2.183	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=amlst description=API base MediaList Reader baseClass=com.wowza.wms.stream.MediaListReaderAMLST contentType=medialist properties={}}	-	-	-	2.184	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=ttml description=TTML Reader baseClass=com.wowza.wms.timedtext.ttml.TimedTextReaderTTML contentType=media properties={ttmlMaxFileLength=1048576}}	-	-	-	2.185	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=srt description=SRT Reader baseClass=com.wowza.wms.timedtext.srt.TimedTextReaderSRT contentType=media properties={srtMaxFileLength=1048576}}	-	-	-	2.186	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaReader=scc description=SCC Reader baseClass=com.wowza.wms.timedtext.cea608.TimedTextReaderSCC contentType=media properties={sccMaxFileLength=1048576}}	-	-	-	2.188	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	Loading MediaWriters.xml: file:///usr/local/WowzaMediaServer/conf/MediaWriters.xml	-	-	-	2.189	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaWriter=flv description=FLV Media Writer baseClass=com.wowza.wms.mediawriter.flv.MediaWriterFLV properties={}}	-	-	-	2.194	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{MediaWriter=mp4 description=H.264 Media Writer baseClass=com.wowza.wms.mediawriter.h264.MediaWriterH264 properties={}}	-	-	-	2.195	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	Loading MP3Tags.xml: file:///usr/local/WowzaMediaServer/conf/MP3Tags.xml	-	-	-	2.196	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map track=TRCK	-	-	-	2.201	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map comment=COMM	-	-	-	2.201	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map comment=COM	-	-	-	2.202	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map year=TYER	-	-	-	2.202	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map album=TALB	-	-	-	2.203	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map artist=TPE1	-	-	-	2.203	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map songtitle=TIT2	-	-	-	2.203	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map songtitle=TT2	-	-	-	2.204	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map genre=TCON	-	-	-	2.204	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1SongTitle=v1SongTitle	-	-	-	2.205	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1LeadArtist=v1LeadArtist	-	-	-	2.205	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1AlbumTitle=v1AlbumTitle	-	-	-	2.206	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1YearReleased=v1YearReleased	-	-	-	2.206	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1SongComment=v1SongComment	-	-	-	2.206	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1SongGenre=v1SongGenre	-	-	-	2.207	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	MP3map v1TrackNumberOnAlbum=v1TrackNumberOnAlbum	-	-	-	2.207	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{HTTPStreamerItem=smoothstreaming description=Silverlight Smooth Streaming baseClass=com.wowza.wms.httpstreamer.smoothstreaming.httpstreamer.HTTPStreamerAdapterSmoothStreamer applicationContextClass=com.wowza.wms.httpstreamer.smoothstreaming.httpstreamer.HTTPStreamerApplicationContextSmoothStreamer idleFrequency=250 requestFilter=*/Manifest|*.ismv|*.isma|*.ismd|*clientaccesspolicy.xml liveStreamPacketizer=smoothstreamingpacketizer liveStreamRepeater=smoothstreamingrepeater properties={requestTimeout=12000 validSessionTimeout=25000 tcpTimeToLive=9000 streamStreamType=httpstreamer repeaterStreamType=httprepeater-edge newSessionTimeout=8000 tcpKeepAliveTimeout=9000}}	-	-	-	2.221	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{HTTPStreamerItem=cupertinostreaming description=Apple Cupertino Streaming baseClass=com.wowza.wms.httpstreamer.cupertinostreaming.httpstreamer.HTTPStreamerAdapterCupertinoStreamer applicationContextClass=com.wowza.wms.httpstreamer.cupertinostreaming.httpstreamer.HTTPStreamerApplicationContextCupertinoStreamer idleFrequency=250 requestFilter=*.m3u8|*.m3u|*.ts|*.aac|*.mp3|*.m3u8key liveStreamPacketizer=cupertinostreamingpacketizer liveStreamRepeater=cupertinostreamingrepeater properties={requestTimeout=8000 validSessionTimeout=25000 tcpTimeToLive=9000 streamStreamType=httpstreamer repeaterStreamType=httprepeater-edge newSessionTimeout=8000 tcpKeepAliveTimeout=9000}}	-	-	-	2.223	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{HTTPStreamerItem=sanjosestreaming description=San Jose Streaming baseClass=com.wowza.wms.httpstreamer.sanjosestreaming.httpstreamer.HTTPStreamerAdapterSanJoseStreamer applicationContextClass=com.wowza.wms.httpstreamer.sanjosestreaming.httpstreamer.HTTPStreamerApplicationContextSanJoseStreamer idleFrequency=250 requestFilter=*manifest.f4m|*.abst|*crossdomain.xml liveStreamPacketizer=sanjosestreamingpacketizer liveStreamRepeater=sanjosestreamingrepeater properties={requestTimeout=8000 validSessionTimeout=25000 tcpTimeToLive=9000 streamStreamType=httpstreamer repeaterStreamType=httprepeater-edge newSessionTimeout=8000 tcpKeepAliveTimeout=9000}}	-	-	-	2.225	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{HTTPStreamerItem=dvrchunkstreaming description=DVR Chunk Streaming baseClass=com.wowza.wms.httpstreamer.dvrrepeater.HTTPStreamerAdapterDvrChunkStreamer applicationContextClass=com.wowza.wms.httpstreamer.dvrrepeater.HTTPStreamerApplicationContextDvrChunkStreamer idleFrequency=250 requestFilter=*.dvr liveStreamPacketizer=dvrstreamingpacketizer liveStreamRepeater=dvrstreamingrepeater properties={requestTimeout=8000 validSessionTimeout=25000 tcpTimeToLive=9000 streamStreamType=httpstreamer repeaterStreamType=httprepeater-edge newSessionTimeout=8000 tcpKeepAliveTimeout=9000}}	-	-	-	2.227	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=smoothstreamingpacketizer description=Smooth Streaming Packetizer baseClass=com.wowza.wms.httpstreamer.smoothstreaming.livestreampacketizer.LiveStreamPacketizerSmoothStreaming isRepeater=false liveRepeaterPlayerClass= liveRepeaterReceiverClass= properties={}}	-	-	-	2.235	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=smoothstreamingrepeater description=Smooth Streaming Repeater baseClass=com.wowza.wms.httpstreamer.smoothstreaming.livestreampacketizer.LiveStreamPacketizerSmoothStreaming isRepeater=true liveRepeaterPlayerClass=com.wowza.wms.httpstreamer.smoothstreaming.liverepeater.SmoothStreamerLiveRepeaterPlayer liveRepeaterReceiverClass=com.wowza.wms.httpstreamer.smoothstreaming.liverepeater.SmoothStreamerLiveRepeaterReceiver properties={}}	-	-	-	2.237	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=cupertinostreamingpacketizer description=Cupertino Streaming Packetizer baseClass=com.wowza.wms.httpstreamer.cupertinostreaming.livestreampacketizer.LiveStreamPacketizerCupertino isRepeater=false liveRepeaterPlayerClass= liveRepeaterReceiverClass= properties={}}	-	-	-	2.238	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=cupertinostreamingrepeater description=Cupertino Streaming Repeater baseClass=com.wowza.wms.httpstreamer.cupertinostreaming.livestreampacketizer.LiveStreamPacketizerCupertino isRepeater=true liveRepeaterPlayerClass=com.wowza.wms.httpstreamer.cupertinostreaming.liverepeater.CupertinoStreamerLiveRepeaterPlayer liveRepeaterReceiverClass=com.wowza.wms.httpstreamer.cupertinostreaming.liverepeater.CupertinoStreamerLiveRepeaterReceiver properties={}}	-	-	-	2.24	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=sanjosestreamingpacketizer description=San Jose Streaming Packetizer baseClass=com.wowza.wms.httpstreamer.sanjosestreaming.livestreampacketizer.LiveStreamPacketizerSanJose isRepeater=false liveRepeaterPlayerClass= liveRepeaterReceiverClass= properties={}}	-	-	-	2.241	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=sanjosestreamingrepeater description=San Jose Streaming Repeater baseClass=com.wowza.wms.httpstreamer.sanjosestreaming.livestreampacketizer.LiveStreamPacketizerSanJose isRepeater=true liveRepeaterPlayerClass=com.wowza.wms.httpstreamer.sanjosestreaming.liverepeater.SanJoseStreamerLiveRepeaterPlayer liveRepeaterReceiverClass=com.wowza.wms.httpstreamer.sanjosestreaming.liverepeater.SanJoseStreamerLiveRepeaterReceiver properties={}}	-	-	-	2.242	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=dvrstreamingrepeater description=DVR Repeater baseClass=com.wowza.wms.dvr.impl.DvrLiveStreamManager isRepeater=true liveRepeaterPlayerClass=com.wowza.wms.httpstreamer.dvrrepeater.DvrLiveRepeaterPlayer liveRepeaterReceiverClass=com.wowza.wms.httpstreamer.dvrrepeater.DvrLiveRepeaterReceiver properties={isDvrPacketizer=true}}	-	-	-	2.244	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamPacketizerItem=dvrstreamingpacketizer description=DVR Streamer baseClass=com.wowza.wms.dvr.impl.DvrLiveStreamManager isRepeater=false liveRepeaterPlayerClass= liveRepeaterReceiverClass= properties={isDvrPacketizer=true}}	-	-	-	2.245	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-

the remaning part …

2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{LiveStreamTranscoderItem: name="transcoder", description="Transcoder", baseClass="com.wowza.wms.transcoder.model.LiveStreamTranscoder"}	-	-	-	2.253	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{DvrRecorderItem=dvrrecorder description=DVR Recorder baseClass=com.wowza.wms.dvr.impl.LiveStreamDvrRecorder properties={}}	-	-	-	2.259	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	{DvrStoreItem=dvrfilestorage description=DVR File Storage baseClass= properties={{Properties: }}}	-	-	-	2.264	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:22	GMT	comment	server	DEBUG	200	-	Loading VHost.xml: file:///usr/local/WowzaMediaServer/conf/VHost.xml	-	-	-	2.265	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	Loading MediaCasters.xml: file:///usr/local/WowzaMediaServer/conf/MediaCasters.xml	-	-	-	2.453	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=shoutcast description=ShoutCast baseClass=com.wowza.wms.mediacaster.shoutcast.ShoutCastReceiver streamType=shoutcast-buffer connectionTimeout=4000 keepAliveTime=10000 properties={isMediaCasterVideo=false streamTimeout=12000 characterEncoding=8859_1}}	-	-	-	2.467	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=shoutcast-record description=ShoutCast Record baseClass=com.wowza.wms.mediacaster.shoutcast.ShoutCastReceiver streamType=shoutcast-buffer-record connectionTimeout=4000 keepAliveTime=10000 properties={isMediaCasterVideo=false streamTimeout=12000 characterEncoding=8859_1}}	-	-	-	2.469	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=rtp description=RTP MediaCaster baseClass=com.wowza.wms.mediacaster.rtp.RTPMediaCaster streamType=rtp-buffer connectionTimeout=4000 keepAliveTime=10000 properties={streamTimeout=12000 sdpHTTPCheckFreqency=4000 rtpSessionDescriptionDataProviderClass=com.wowza.wms.mediacaster.rtp.RTPSessionDescriptionDataProviderBasic sdpFileCheckFreqency=4000 rtspConnectionTimeout=4000 rtspSessionTimeout=15000}}	-	-	-	2.471	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=rtp-lowlatency description=RTP MediaCaster baseClass=com.wowza.wms.mediacaster.rtp.RTPMediaCaster streamType=rtp-buffer-lowlatency connectionTimeout=4000 keepAliveTime=10000 properties={streamTimeout=12000 sdpHTTPCheckFreqency=4000 rtpSessionDescriptionDataProviderClass=com.wowza.wms.mediacaster.rtp.RTPSessionDescriptionDataProviderBasic sdpFileCheckFreqency=4000 rtspConnectionTimeout=4000 rtspSessionTimeout=15000}}	-	-	-	2.472	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=rtp-record description=RTP MediaCaster Record baseClass=com.wowza.wms.mediacaster.rtp.RTPMediaCaster streamType=rtp-buffer-record connectionTimeout=4000 keepAliveTime=10000 properties={streamTimeout=12000 sdpHTTPCheckFreqency=4000 rtpSessionDescriptionDataProviderClass=com.wowza.wms.mediacaster.rtp.RTPSessionDescriptionDataProviderBasic sdpFileCheckFreqency=4000 rtspConnectionTimeout=4000 rtspSessionTimeout=15000}}	-	-	-	2.474	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=rtp-record-lowlatency description=RTP MediaCaster Record baseClass=com.wowza.wms.mediacaster.rtp.RTPMediaCaster streamType=rtp-buffer-record-lowlatency connectionTimeout=4000 keepAliveTime=10000 properties={streamTimeout=12000 sdpHTTPCheckFreqency=4000 rtpSessionDescriptionDataProviderClass=com.wowza.wms.mediacaster.rtp.RTPSessionDescriptionDataProviderBasic sdpFileCheckFreqency=4000 rtspConnectionTimeout=4000 rtspSessionTimeout=15000}}	-	-	-	2.476	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=liverepeater description=Live Stream Repeater baseClass=com.wowza.wms.mediacaster.wowza.LiveMediaStreamReceiver streamType=liverepeater-buffer connectionTimeout=4000 keepAliveTime=60000 properties={streamTimeout=12000 isLiveRepeater=true}}	-	-	-	2.478	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{MediaCasterItem=httprepeater description=HTTP Live Stream Repeater baseClass=com.wowza.wms.mediacaster.wowza.LiveMediaStreamReceiver streamType=httprepeater-buffer connectionTimeout=4000 keepAliveTime=60000 properties={streamTimeout=12000 setStreamType=httprepeater-origin}}	-	-	-	2.479	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerMPEGTS.init	-	-	-	2.521	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=MPEGTS description=MPEG Transport Stream baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEGTS instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEGTS@34e0e90 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.522	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerQuicktimeH264.init	-	-	-	2.525	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=QuicktimeH264 description=Quicktime H264 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerQuicktimeH264 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerQuicktimeH264@78979f67 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.526	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerRFC2250MP3.init	-	-	-	2.529	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=RFC2250MP3 description=MP3 RFC2250 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2250MP3 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2250MP3@55f157b properties={rtcpMissingWarningTime=8000}}	-	-	-	2.529	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerSpeex.init	-	-	-	2.532	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=Speex description=Speex baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerSpeex instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerSpeex@3ee7f6eb properties={rtcpMissingWarningTime=8000}}	-	-	-	2.533	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerADPCM.init	-	-	-	2.535	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=ADPCM description=ADPCM baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerADPCM instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerADPCM@6708f8e0 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.536	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerG711ALaw.init	-	-	-	2.539	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=G711ALaw description=G711ALaw baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerG711ALaw instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerG711ALaw@20a29c6e properties={rtcpMissingWarningTime=8000}}	-	-	-	2.539	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerRFC2190H263.init	-	-	-	2.543	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=H263 description=H263 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2429H263 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2429H263@163b4b1e properties={rtcpMissingWarningTime=8000}}	-	-	-	2.543	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerRFC3106MPEG4.init	-	-	-	2.546	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=MP4V-ES description=MP4V-ES baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC3106MPEG4 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC3106MPEG4@ad72200 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.546	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerRFC3106MPEG2.init	-	-	-	2.549	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=MP4V description=MP4V baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2250MPEG2 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC2250MPEG2@5fa80aea properties={rtcpMissingWarningTime=8000}}	-	-	-	2.55	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerSorensonVideo3.init	-	-	-	2.553	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=SorensonVideo3 description=Sorenson Video 3 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerSorensonVideo3 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerSorensonVideo3@6bdc64a5 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.553	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerScreenCodec.init	-	-	-	2.556	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=ScreenCodec description=ScreenCodec baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerScreenCodec instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerScreenCodec@7966340c properties={rtcpMissingWarningTime=8000}}	-	-	-	2.556	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerVP8.init	-	-	-	2.56	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=VP8 description=VP8 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerVP8 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerVP8@4301ac93 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.56	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerVorbis.init	-	-	-	2.563	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=Vorbis description=Vorbis baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerVorbis instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerVorbis@715f1f9c properties={rtcpMissingWarningTime=8000}}	-	-	-	2.564	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerRFC3984H264.init	-	-	-	2.568	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=RFC3984H264 description=RFC3984 H264 baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC3984H264 instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerRFC3984H264@307bd0d properties={rtcpMissingWarningTime=8000}}	-	-	-	2.568	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerMPEG4LATM.init	-	-	-	2.572	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=MPEG4LATM description=MPEG4 LATM baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEG4LATM instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEG4LATM@7461f533 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.572	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	RTPDePacketizerMPEG4AAC.init	-	-	-	2.576	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{RTPDePacketizerItem=MPEG4AAC description=MPEG4 AAC baseClass=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEG4AAC instance=com.wowza.wms.rtp.depacketizer.RTPDePacketizerMPEG4AAC@79b66b06 properties={rtcpMissingWarningTime=8000}}	-	-	-	2.577	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	Loading StartupStreams.xml: file:///usr/local/WowzaMediaServer/conf/StartupStreams.xml	-	-	-	2.589	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{TimedTextTypeItem name:Caption}	-	-	-	2.598	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{TimedTextTypeItem name:CEA608 type:Caption inf:com.wowza.wms.timedtext.cea608.ITimedTextProviderCEA608}	-	-	-	2.601	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{TimedTextTypeItem name:AMF type:Caption inf:com.wowza.wms.timedtext.amf.ITimedTextProviderAMF}	-	-	-	2.602	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{VODTimedTextProviderItem name:vodcaptionprovidermp4_3gpp type:Caption baseClass:com.wowza.wms.timedtext.vod.model.VODCaptionProviderMP4_3GPP outputTypes:[CEA608, AMF] extensions:[] props:[]}	-	-	-	2.61	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{VODTimedTextProviderItem name:vodcaptionproviderttml type:Caption baseClass:com.wowza.wms.timedtext.vod.model.VODCaptionProviderTTML outputTypes:[CEA608, AMF] extensions:[ttml] props:[]}	-	-	-	2.612	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{VODTimedTextProviderItem name:vodcaptionprovidersrt type:Caption baseClass:com.wowza.wms.timedtext.vod.model.VODCaptionProviderSRT outputTypes:[CEA608, AMF] extensions:[srt] props:[]}	-	-	-	2.614	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	{VODTimedTextProviderItem name:vodcaptionproviderscc type:Caption baseClass:com.wowza.wms.timedtext.vod.model.VODCaptionProviderSCC outputTypes:[CEA608] extensions:[scc] props:[]}	-	-	-	2.615	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	vhost-start	vhost	INFO	200	_defaultVHost_	-	-	-	-	2.679	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	INFO	200	-	_defaultVHost_ threads[h/t]:1200/800 home:/usr/local/WowzaMediaServer	-	-	-	2.768	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: socket: setReuseAddress: from:true to:false	-	-	-	2.784	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReuseAddress: from:false to:false	-	-	-	2.785	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReceiveBufferSize: from:43690 to:131072	-	-	-	2.785	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReadBufferSize: from:43690 to:131072	-	-	-	2.785	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setSendBufferSize: from:32768 to:131072	-	-	-	2.786	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setTrafficClass: from:0 to:0	-	-	-	2.786	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setKeepAlive: from:false to:true	-	-	-	2.787	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setOobInline: from:false to:false	-	-	-	2.787	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setSoLinger: from:-1 to:-1	-	-	-	2.787	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setTcpNoDelay: from:false to:false	-	-	-	2.788	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	vhost	INFO	200	_defaultVHost_	Bind attempt ([any]:1935:16)	-	-	-	2.805	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	INFO	200	-	ServerHandler[_defaultVHost_:[any]:1935]: debugTCPExceptions:true	-	-	-	2.808	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	vhost	INFO	200	_defaultVHost_	Bind successful ([any]:1935)	-	-	-	2.824	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: socket: setReuseAddress: from:true to:false	-	-	-	2.827	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReuseAddress: from:false to:false	-	-	-	2.827	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReceiveBufferSize: from:43690 to:131072	-	-	-	2.827	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setReadBufferSize: from:43690 to:131072	-	-	-	2.828	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setSendBufferSize: from:32768 to:131072	-	-	-	2.828	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setTrafficClass: from:0 to:0	-	-	-	2.828	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setKeepAlive: from:false to:true	-	-	-	2.829	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setOobInline: from:false to:false	-	-	-	2.829	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setSoLinger: from:-1 to:-1	-	-	-	2.83	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	DEBUG	200	-	config: session: setTcpNoDelay: from:false to:false	-	-	-	2.83	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	vhost	INFO	200	_defaultVHost_	Bind attempt ([any]:8086:16)	-	-	-	2.83	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	INFO	200	-	ServerHandler[_defaultVHost_:[any]:8086]: debugTCPExceptions:true	-	-	-	2.831	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	vhost	INFO	200	_defaultVHost_	Bind successful ([any]:8086)	-	-	-	2.835	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	INFO	200	-	Server.startShutdownHook: Start server shutdown hook	-	-	-	2.84	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-
2012-11-16	18:22:23	GMT	comment	server	INFO	200	-	Wowza Media Server is started!	-	-	-	2.841	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-	-

It sounds like a network limitation, a bandwidth bottleneck.

It doesn’t help to use DEBUG level logging, it’s too much info usually. Revert to INFO.

Richard

Debugging was only to take some more accurate log to post here.

And the network is working perfectly… is nothing outside the video server… network and storage are tested for more than 20Gbps throughput with other servers…

is there any known problem with hardened kernel or gentoo?