Flash Media Server |
|||
| Server Management ActionScript Language Reference > Server Management ActionScript Dictionary > getAppStats() | |||
getAppStats(app_name)
app_name A string that contains the name of the application for which you want performance data.
If the call succeeds, the server sends a reply information object with a level property of status, a code property of NetConnection.Call.Success, and a data property that is an object. The data object has the following properties:
|
Property |
Description |
|---|---|
|
|
Number; total number of connection attempts accepted by this application. |
|
|
Number; total number of bytes read by this application. |
|
|
Number; total number of bytes written by this application. |
|
|
Number; total number of connections currently active. |
|
|
ActionScript Date object; time the application started. |
|
|
Number; total number of messages dropped by this application. |
|
|
Number; total number of messages processed by this application. |
|
|
Number; total number of messages sent by this application. |
|
|
Number; total number of normal connections. |
|
|
Number; total number of connections through a remote edge. |
|
|
Number; total number of remote edges that are connected. |
|
|
Number; total number of service connections. |
|
|
Number; total number of services requested. |
|
|
Number; total number of admin connections. |
|
|
Number; total number of debug connections. |
|
|
Number; total number of connection attempts rejected by this application. |
|
|
Number; total number of socket connections to the application since the application was started. |
|
|
Number; total number of disconnections from the application since the application was started. |
|
|
Number; total number of instances that have been loaded since the application started. This property does not represent the total number of active instances loaded. To get the number of active instances loaded, subtract the value of |
|
|
Number; total number of instances that have been unloaded since the application started. |
|
|
Number; time, in seconds, the application has been running. |
If the call fails, the server sends a reply information object with a level property of error and a code property of NetConnection.Call.Failed or a more specific value, if available. Some objects might also have a description property that contains a string describing the cause of the failure.
Gets aggregate performance data for all instances of the specified application.