aw-watcher-input icon indicating copy to clipboard operation
aw-watcher-input copied to clipboard

visualization doesnt work

Open scarrrr316 opened this issue 3 years ago • 13 comments

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

image

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)

image

am I using the wrong method? If so, how can I see the visualised data?

scarrrr316 avatar Mar 08 '22 08:03 scarrrr316

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?

ErikBjare avatar Mar 08 '22 09:03 ErikBjare

yeah, i did follow the instructions in readme image

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 image

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!

scarrrr316 avatar Mar 08 '22 13:03 scarrrr316

image and i cant find the graph in activites page

scarrrr316 avatar Mar 08 '22 16:03 scarrrr316

any suggestion?

scarrrr316 avatar May 07 '22 23:05 scarrrr316

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.

ErikBjare avatar May 09 '22 11:05 ErikBjare

i have the same issue on Version: v0.12.0b1

Mr-Ples avatar May 10 '22 23:05 Mr-Ples

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

scarrrr316 avatar May 10 '22 23:05 scarrrr316

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)

Mr-Ples avatar Oct 14 '22 16:10 Mr-Ples

I just tried this watcher again, and could get it working.

image

Pushed a new commit with some README improvements, should clarify some things.

ErikBjare avatar Nov 23 '22 12:11 ErikBjare

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.ini looks 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.html is inside the dist folder

Any thoughts?

futurisold avatar Dec 20 '22 11:12 futurisold

@leoentersthevoid You are editing the wrong/old config file. We switched to toml config in v0.11.0 (iirc).

ErikBjare avatar Dec 20 '22 13:12 ErikBjare

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.

futurisold avatar Dec 20 '22 17:12 futurisold

@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!

ErikBjare avatar Dec 21 '22 08:12 ErikBjare