In my frontend I wanted to have a seperate page with all log informations of actions that are executed automatic in Node-RED.
For this I have created a dummy sensor (which collects all kinds of logging info of different entities) in my configuration.yaml:
sensor:
- platform: template
sensors:
dummy_log_entity:
friendly_name: "Dummy log entity"
value_template: "on"
In the frontend I have added a logbook card:
type: logbook
entities:
- sensor.dummy_log_entity
hours_to_show: 48
From Node-RED I created a log item:
The result of the logbook option in the sidebar (which are correct):
But in my own page in the frontend I see this:
So it doesn’t show the logged items.
I have reinstalled Home Assistant on a Raspeberry. The previous installation of Home Assistant on a pc everything was working correctly.
Does somebody know what I’m doing wrong?
Edit: I see that the topic is moved to the Node-RED forum. But Node-RED does everything okay. The problem is that the logbook card in lovelace is not showing the correct information which you see correctly in the Logbook sidebar option.