We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c66951 commit 944a4afCopy full SHA for 944a4af
2 files changed
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "aw-watcher-utilization"
3
-version = "1.2.1"
+version = "1.2.2"
4
description = "An Activity Watch watcher which monitors CPU, RAM, GPU and disk usage."
5
authors = ["Alwin Schuster"]
6
license = "MPL-2.0"
visualization/index.html
@@ -37,7 +37,7 @@
37
const hostname = urlParams.get('hostname');
38
const title = urlParams.get('title') || 'cpu_percent';
39
40
- const client = new AWClient('test-client', {testing: window.location.port === "5666"});
+ const client = new AWClient('test-client', {baseURL: window.location.origin});
41
42
function avg(arr) {
43
return arr.reduce((a, b) => a + b, 0) / arr.length;
0 commit comments