Display Xiaomi Zigbee door sensor battery level lovelace?

I try to use monster card to display the battery level. But it just show me the state of the door sensor only.
My code is:

      - type: custom:monster-card
        show_empty: false
        card:
          type: glance
          title: Batteries
        filter:
          include:
            - entity_id: binary_sensor.door_window_sensor_158d0002e2e117
              attributes:
                battery_level: "< 100"

Could someone show me something wrong here?
Thanks so much for reading.

try this:

card:
  show_header_toggle: false
  title: Low Battery Devices
  type: entities
filter:
  exclude: null
  include:
    - attributes:
        battery_level: < 45
      options:
        type: 'custom:template-entity-row'
        state: |
          {{state_attr('this.entity_id','battery_level')}} %
show_empty: true
type: 'custom:auto-entities'