visualization doesnt work
as title, visualization doesnt work
it shows Error: Network Error

but activitywatch is running and seems no error
2022-03-08 16:14:55 [INFO ]: * Running on http://localhost:5600/ (Press CTRL+C to quit) (werkzeug:113)
2022-03-08 16:16:21 [INFO ]: Received heartbeat after pulse window, inserting as new event. (bucket: aw-watcher-input_DESKTOP-SCARZ) (aw_server.api:264)

am I using the wrong method? If so, how can I see the visualised data?
Did you follow the instructions in the README? I notice they are a bit lacking, and could probably explain better how to configure things.
How are you opening the visualization? What does the dev tools say about the failing request?
yeah, i did follow the instructions in readme

and I found that also need to install pug-cli ,in order to run the command in makefile, you may add this step into the readme
i opened the index.html file under aw-watcher-input\visualization\dist .Is this wrong? I cant find another way because readme doesnt mention that
the dev tools shows like this

can you send me the built files(the packed aw-watcher-input and bundle.js), because the files i built manually using makefile dont work thank you very much!
and i cant find the graph in activites page
any suggestion?
Hmm, the error "Access to XMLHttpRequest at ... from origin null has been blocked" seems weird. Not sure how the origin gets set to null, maybe because you're trying to open the HTML visualization directly in your browser? (don't do that, it won't work, unless you disable CORS checks on the server entirely, but that opens a security hole)
To get the visualization to show in the Activity dashboard vis menu, you need to run a more recent version of aw-server. Either v0.12.0b1, or latest from source.
i have the same issue on Version: v0.12.0b1
Hmm, the error "Access to XMLHttpRequest at ... from origin null has been blocked" seems weird. Not sure how the origin gets set to null, maybe because you're trying to open the HTML visualization directly in your browser? (don't do that, it won't work, unless you disable CORS checks on the server entirely, but that opens a security hole)
To get the visualization to show in the Activity dashboard vis menu, you need to run a more recent version of aw-server. Either v0.12.0b1, or latest from source.
how can i add the visualization into the dashboard menu. can you tell me the steps and i will try. thx
issue persists on Version: v0.12.1 https://s3.eu-central-1.amazonaws.com/cos-dev-attachments/ShareX/notsimon/iYwpkRkQZynbTVBL.mp4
aw-server log gives this:
2022-10-14 18:40:46 [INFO ]: Received heartbeat after pulse window, inserting as new event. (bucket: aw-watcher-input_simon-ms7b89) (aw_server.api:279)
2022-10-14 18:43:17 [INFO ]: 404 (127.0.0.1): [33mGET /pages/aw-watcher-input/?hostname=simon-ms7b89&start=2022-09-27T00%3A00%3A00+02%3A00&end=2022-09-27T22%3A00%3A00.000Z HTTP/1.1[0m (flask:25)
2022-10-14 18:58:04 [INFO ]: 404 (127.0.0.1): [33mGET /api/0/buckets//events/703029 HTTP/1.1[0m (flask:25)
I just tried this watcher again, and could get it working.
Pushed a new commit with some README improvements, should clarify some things.
Open issue for me as well. Error reported is: Static content: index.html of watcher: aw-watcher-input not found!.
I did follow all the steps as described in the README.md. Posting more info:
- npm / make installed everything properly; I launched the event logger and I can see it logs the events and save them into the db
- This is how my
/Users/xmachine/Library/Application Support/activitywatch/aw-server/aw-server.inilooks like:
host = localhost
port = 5600
storage = peewee
cors_origins =
[server-testing]
host = localhost
port = 5666
storage = peewee
cors_origins =
[server.custom_static]
aw-watcher-input = "/Applications/ActivityWatch.app/Contents/MacOS/aw-watcher-input/visualization/dist/"
-
index.htmlis inside thedistfolder
Any thoughts?
@leoentersthevoid You are editing the wrong/old config file. We switched to toml config in v0.11.0 (iirc).
Update
I messed up the config. After the correction, it works. Posting it here for tracking:
[server]
host = "localhost"
port = "5600"
storage = "peewee"
cors_origins = ""
[server.custom_static]
aw-watcher-input = "/Applications/ActivityWatch.app/Contents/MacOS/aw-watcher-input/visualization/dist/"
[server-testing]
host = "localhost"
port = "5666"
storage = "peewee"
cors_origins = ""
@ErikBjare, thanks! Just switched to .toml, which has the following config now:
[server]
host = "localhost"
port = "5600"
storage = "peewee"
cors_origins = ""
[server-testing]
host = "localhost"
port = "5666"
storage = "peewee"
cors_origins = ""
[server-testing.custom_static]
aw-watcher-input = "/Applications/ActivityWatch.app/Contents/MacOS/aw-watcher-input/visualization/dist/"
It doesn't seem to solve the issue. I'm currently running the v0.12.1, if that helps.
@leoentersthevoid Are you running in testing mode?
If not, you put the config under the wrong section (should be under server.custom_static, not server-testing.custom_static).
Edit: just now say your edit (didn't see that from the notification email), nice you got it working!