Logbook (journal) exclude

Hello,
I excluded several entries on the logbook:

logbook:
  exclude:
    entities:
      - sensor.date_time
      - binary_sensor.updater
      - sun.sun # Don't record sun data
      - sensor.last_boot # Comes from 'systemmonitor' sensor platform
      - sensor.time
      - sensor.date
      - sensor.date_time
      - sensor.date_time_utc
      - sensor.beat

but these entities remain in the journal. What can I do ?

regards

Sensors are excluded from the logbook by default.

https://www.home-assistant.io/integrations/logbook/

The logbook is the list of events you can select from the side menu.

Did you perhaps want to exclude them from the recorder (database)?

1 Like

Iā€™m trying to do the same thing as @vormsty. These sensors do not have the unit_of_measurement attribute so they are visible. I already added excluded them in the configurations.yaml file but these entities are still shown.
Not sure what might be wrong

Edit: Nevermind, I forgot to include sensor.time. Now all Time entities are hidden.

logbook:
  exclude:
    entities:
      - sensor.time_utc
      - sensor.time_date
      - sensor.time_utc
      - sensor.date_time_utc
      - sensor.date_time_iso
      - sensor.date_time
      - sensor.date
      - sensor.internet_time

1 Like