Report cached stream list in management
The stream list caching issues should be fixed, but this is useful for sniffing out possible future issues.
This commit is contained in:
parent
a3c273bad4
commit
a274d1a0f6
2 changed files with 17 additions and 0 deletions
|
@ -134,5 +134,6 @@ class Management:
|
|||
DISABLED=config.DISABLED,
|
||||
BLOCKED_IPS=config.BLOCKED_IPS,
|
||||
DISABLED_KEYS=config.DISABLED_KEYS,
|
||||
STREAM_LIST=config.LAST_STREAM_LIST,
|
||||
data=data,
|
||||
)
|
||||
|
|
|
@ -16,6 +16,18 @@
|
|||
return f"{days}d, {hours:02d}:{minutes:02d}:{seconds:02d}"
|
||||
%>
|
||||
|
||||
<%def name="cachedata(stream_list)">
|
||||
<h3>Stream Cache <a title="This is a list of every stream that the middleware thinks is live. It should match the list of live streams reported by the OvenMediaEngine API above. If they don't match, there's a bug in OvenEmprex's cache handling and some streams may not appear properly."><u>[?]</u></a></h3>
|
||||
<ul>
|
||||
% if not stream_list:
|
||||
<li>No Live Streams</li>
|
||||
% endif
|
||||
% for stream in stream_list:
|
||||
<li>${stream[0]}:${stream[1]}:${stream[2]}</li>
|
||||
% endfor
|
||||
</ul>
|
||||
</%def>
|
||||
|
||||
<%def name="blockdata(disabled, blocked_ips, blocked_keys)">
|
||||
% if disabled:
|
||||
<h2 class="warning">The server is currently disabled!</h2>
|
||||
|
@ -139,5 +151,9 @@ td.left {
|
|||
% endfor
|
||||
</details>
|
||||
% endfor
|
||||
<hr>
|
||||
<details><summary>Debug Info</summary>
|
||||
${cachedata(STREAM_LIST)}
|
||||
</details>
|
||||
</body>
|
||||
<html>
|
||||
|
|
Loading…
Add table
Reference in a new issue