3.4 数据统计模块
统计模块是NGINX HTTP模。因此,统计指令应该位于http{}块中。
我们在http server模块下增加两个location。
第一个location将我们流媒体的状态全部记录到stat.xsl。
第二个location将stat.xsl访问目录指定到/download/NRM中。
stat.xsl包含在我们nginx-rtmp-module的安装目录中,我们直接指向到那里就可以。
配置完成后,访问 http://172.26.22.30/liveStat ,如图3-5。可以看到页面中清晰的显示了不同直播下的观众、状态、上下行速率、时间、地址、系统等信息。
location /liveStat {
rtmp_stat all;
rtmp_stat_stylesheet stat.xsl;
}
location /stat.xsl {
root /download/NRM/;
}
图3-5