nginx-mod-rtmp/stat.xsl

93 lines
2.3 KiB
XML
Raw Normal View History

2012-05-07 13:41:03 +02:00
<?xml version="1.0" encoding="utf-8" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head><title>RTMP statistics</title></head>
<body>
<xsl:apply-templates select="rtmp"/>
<hr/>
Generated by <a href='https://github.com/arut/nginx-rtmp-module'>NGINX RTMP module</a>
</body></html>
</xsl:template>
<xsl:template match="rtmp">
<table cellspacing="1" cellpadding="5">
<tr bgcolor="#999999">
<th>RTMP</th>
<th>#clients</th>
<th>In bytes</th>
<th>Out bytes</th>
<th>In Kbps</th>
<th>Out Kbps</th>
<th>State</th>
<th>Address</th>
<th>Flash version</th>
<th>Page URL</th>
<th>Dropped</th>
<th bgcolor="#ffffff"></th>
</tr>
<tr>
<td colspan="2"/>
<td><xsl:value-of select="in"/></td>
<td><xsl:value-of select="out"/></td>
<td><xsl:value-of select="round(bwin div 1024)"/></td>
<td><xsl:value-of select="round(bwout div 1024)"/></td>
<td><xsl:apply-templates select="publishing"/></td>
</tr>
<xsl:apply-templates select="server"/>
</table>
</xsl:template>
<xsl:template match="server">
<xsl:apply-templates select="application"/>
</xsl:template>
<xsl:template match="application">
<tr bgcolor="#999999">
<td><b><xsl:value-of select="name"/></b></td>
</tr>
<xsl:apply-templates select="live"/>
</xsl:template>
<xsl:template match="live">
<tr bgcolor="#aaaaaa">
<td><i>live streams</i></td>
<td align="middle"><xsl:value-of select="nclients"/></td>
</tr>
<xsl:apply-templates select="stream"/>
</xsl:template>
<xsl:template match="stream">
<tr valign="top" bgcolor="#cccccc">
<td><xsl:value-of select="name"/></td>
<td align="middle"><xsl:value-of select="nclients"/></td>
<td><xsl:value-of select="in"/></td>
<td><xsl:value-of select="out"/></td>
<td><xsl:value-of select="round(bwin div 1024)"/></td>
<td><xsl:value-of select="round(bwout div 1024)"/></td>
<td><xsl:apply-templates select="publishing"/></td>
<td bgcolor="#ffffff">
<xsl:apply-templates select="client"/>
</td>
</tr>
</xsl:template>
<xsl:template match="client">
<tr bgcolor="#eeeeee">
<td colspan="6" bgcolor="#ffffff"/>
<td><xsl:apply-templates select="publishing"/></td>
<td><xsl:value-of select="address"/></td>
<td><xsl:value-of select="flashver"/></td>
<td><xsl:value-of select="pageurl"/></td>
<td><xsl:value-of select="dropped"/></td>
</tr>
</xsl:template>
<xsl:template match="publishing">
publishing
</xsl:template>
</xsl:stylesheet>