DEV question - DVR web UI page and browser's web console inspector not auto-refreshing

I'm on the DVR web UI Settings page and trying to view activity with the Web Console Inspector in both Firefox 83.0 (64-bit) and Edge 87.0.664.47 (Official build) (64-bit).

Getting this warning which is what I think is keeping the web page and web console inspector from refreshing in both browsers?
Not sure how to fix.

settings:1 Tracking Prevention blocked access to storage for https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
    <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
    <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
    <link rel="manifest" href="/manifest.json">
    <meta name="apple-mobile-web-app-capable" content="yes">
    <title>Channels DVR</title>
  </head>
  <body>
    <div id="content"></div>
    <div id="modal-wrapper"></div>
    <div id="modal"></div>
    <script async type="text/javascript" src="https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1"></script>
    <script type="text/javascript" src="/bundle.js"></script>
    <script>
      if ('serviceWorker' in navigator) {
        navigator.serviceWorker.register('/service-worker.js').then(function(registration) {
          console.log('Service worker registration succeeded:', registration)
        }, function(error) {
          console.log('Service worker registration failed:', error)
        })
      }
    </script>
  </body>
</html>

Not really sure what you mean. That warning seems harmless

Since the Activity section of the web UI displays updates in real time, messages go by so fast and disappear you can't see them.

I tried using curl http://x.x.x.x:8089/dvr/events/subscribe to view the activity, which works, but it doesn't give timestamps of when the events occur.

I remember using the web console inspector a few weeks ago and it would display upates to the activity section of the web page along with timestamps.
Now the web console inspector doesn't update in real time.

P.S. I realize it's a Holiday and didn't expect a reply yet.

The event stream is active while the dvr page is in focus. If you switch focus to the web inspector then the page is no longer active and the event stream stops.

1 Like

DUH
Thank You, I didn't realize that.