This is a documentation for Flashphoner version 1.0.5.973
We recommend you upgrade to the last version and check the actual documentation

Monitoring

JMX console

How to start monitoring

1. Edit %WOWZA_HOME%/conf/Server.xml and set JMX enabled true:

Click here to expand...

2. Setup putty tunnel, save session and open it.

Click here to expand...

3. Start server.

Click here to expand...

4. Start monitoring

Click here to expand...

Top

You can start simple script to record snapshots of top command:

#!/bin/sh
mkdir topreport
cd topreport
while true
    do
        date=`date +"%G-%m-%d-%M-%S"`
        top -b -n 1 > top_$date
        sleep 60
    done

This script creates dir topreport and create top snapshot every minute.

It may be useful during crush diagnostic or stuck diagnostic.

You can also download this script

1. $chmod +x top.sh

2. ./top.sh &

Do not forget to kill top.sh daemon by pid, if it has done it's work.

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.