diff --git a/frigate/util.py b/frigate/util.py index f82476ebc..5a2e606b9 100755 --- a/frigate/util.py +++ b/frigate/util.py @@ -864,9 +864,9 @@ def get_bandwidth_stats() -> dict[str, dict]: for line in lines: stats = list(filter(lambda a: a != "", line.strip().split("\t"))) try: - if re.search("^ffmpeg/([0-9]+)/", stats[0]): + if re.search("(^ffmpeg|\/go2rtc)/([0-9]+)/", stats[0]): process = stats[0].split("/") - usages[process[1]] = { + usages[process[len(process)-2]] = { "bandwidth": round(float(stats[2]), 1), } except: diff --git a/web/src/routes/System.jsx b/web/src/routes/System.jsx index 8d5c4ef80..5dc45257a 100644 --- a/web/src/routes/System.jsx +++ b/web/src/routes/System.jsx @@ -428,6 +428,7 @@ export default function System() {