View or search list of all sensors - HowTo?

Hi,
How can I search or view all sensors present in my HA configuration?

The reason I ask is because I’m playing around with configuring my energy home structure, solar, batteries and dynamic tariffs. I’m trying to follow various examples and tutorials on the web and / or youtube, and it seems some sensors are named differently.
If I could do a search in a sensor list view, that would be mighty helpfull.

Thanks for helping out!

Go to Settings/Device & Services. Select the Entities tab and use the Filters feature on the left.

One method would be to isolate by Domain by entering sensor in the search box under the Domain dropdown and choosing both Binary sensor and Sensor

Thanks a ton! :+1:
That really helped me out a lot!

Are you aware if there exists a method, add-on or other way to export sensor.names out?To maybe txt or csv format?
Or even using Studio Code Server or File Editor in yaml?

Go to Developer Tools select Template and enter

{% for entity in (states.sensor | list + states.binary_sensor | list) | sort(attribute='entity_id') -%}
{{ entity.entity_id }}
{% endfor %}

Very easy to copy the list and paste in a text/csv file.

Cool! Learning every day!
Thanks!

Happy to assist! Probably otheravailable methods too, but those are easy ways!