We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
worker_processes auto(4 core) with rtmp_auto_push on. No publishers, no clients. In bytes/out bytes is 0KB.
worker_processes auto
rtmp_auto_push on
If change worker_processes to 1, working well. It seems that statistics cannot show the out bytes of hls stream. I only have one app with using hls.
worker_processes
rtmp { server { ... application stream { ... deny play all; meta off; live on; record off; hls on; ... } } }
Any way to troubleshoot? Thx.
The text was updated successfully, but these errors were encountered:
OK, I found the problem.
Config:
server { listen 127.0.0.1:80; server_name 127.0.0.1; ... #location /rtmp_stat { # rtmp_stat all; # allow 127.0.0.1; # deny all; #} ... } server { listen 443 ssl http2; server_name example.com; ... location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } ... }
Then example.com/stat no data.
example.com/stat
After remove comment content, it's working well.
It seems that Nginx with mutli workers cannot count the number of clients well.
Will out bytes statistics be added for hls?
Thanks
Sorry, something went wrong.
Still have problem with statistics data, it seems that I was able to get statistics because I visited the corresponding worker.
No branches or pull requests
worker_processes auto
(4 core) withrtmp_auto_push on
. No publishers, no clients. In bytes/out bytes is 0KB.If change
worker_processes
to 1, working well. It seems that statistics cannot show the out bytes of hls stream.I only have one app with using hls.
Any way to troubleshoot? Thx.
The text was updated successfully, but these errors were encountered: