WARNING Dashboard 'events' not found

I just upgraded to the new HA Dashboard and am getting this in my logs, continuously:

Aug 18 19:29:31 hass appdaemon[15037]: 2017-08-18 19:29:31.260881 INFO Compiling dashboard ‘events’
Aug 18 19:29:31 hass appdaemon[15037]: 2017-08-18 19:29:31.303244 WARNING Dashboard ‘events’ not found
Aug 18 19:29:31 hass appdaemon[15037]: 2017-08-18 19:29:31.303713 INFO function [compile_dash] finished in 43 ms

About every 30 seconds. It was worse before I created ‘events_head.html’ and ‘events_body.html’.

I don’t know what this dashboard is or why it’s trying to recompile it all the time but it’s also causing my own appdaemon script to restart continuously…

Does anyone know what this is about?

I found the culprit. Another browser had an open tab with the old Dashboard. The old Dashboard (the first version of HA Dashboard) polled by doing an http GET:

recvfrom(9, “GET /events?lastEventId=&r=34231”…, 262144, 0, NULL, NULL) = 420

This causes the new Dashboard to look for pre-compiled dashboard assets and when not found, tries to compile it…

1 Like