Solved: Missing deconz event from hue dimmer

Give the lang delay in hue motion sensor response, I created a second machine containing home assistant in a venv under Ubuntu 18.04. I have the community support version in docker on that machine. I have added 4 motion sensors that communicate with my main HA via mqtt. These are all working well. I have a hue dimmer also installed via phoscon named living_room_switch. The firmware shows as up to date. I’ve added deconz logging to HA in the machine containing deconz. When I press buttons on the hue dimmer I don’t see any events. In the HA logs (Should they be there?). The automation shown below is not triggered (should it be?). I’m definitely not sure where to go from here.

- id: living_room_button_one
  alias: living_room_button_one
  trigger:
  - event_data:
      event: 1001
      id: living_room_switch
    event_type: deconz_event
    platform: event
  - event_data:
      event: 1002
      id: living_room_switch
    event_type: deconz_event
    platform: event
  action:
  - data:
      payload: '1'
      retain: 'true'
      topic: conbee/sensor/living_room_switch/state
    service: mqtt.publish

What is that?

It is here. It is what You need to use if you are running home assistant and not hassio.

Turns out that when I looked in the integrations tab, Discovery wanted me to run deconz configuration again even though it was already configured. Seemed odd but when I did that my application ran properly when I pushed the dimmer button.