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:
Trysdyn Black 2025-03-07 22:10:42 -08:00
parent a3c273bad4
commit a274d1a0f6
2 changed files with 17 additions and 0 deletions

View file

@ -134,5 +134,6 @@ class Management:
DISABLED=config.DISABLED, DISABLED=config.DISABLED,
BLOCKED_IPS=config.BLOCKED_IPS, BLOCKED_IPS=config.BLOCKED_IPS,
DISABLED_KEYS=config.DISABLED_KEYS, DISABLED_KEYS=config.DISABLED_KEYS,
STREAM_LIST=config.LAST_STREAM_LIST,
data=data, data=data,
) )

View file

@ -16,6 +16,18 @@
return f"{days}d, {hours:02d}:{minutes:02d}:{seconds:02d}" 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)"> <%def name="blockdata(disabled, blocked_ips, blocked_keys)">
% if disabled: % if disabled:
<h2 class="warning">The server is currently disabled!</h2> <h2 class="warning">The server is currently disabled!</h2>
@ -139,5 +151,9 @@ td.left {
% endfor % endfor
</details> </details>
% endfor % endfor
<hr>
<details><summary>Debug Info</summary>
${cachedata(STREAM_LIST)}
</details>
</body> </body>
<html> <html>