List all Rules and the used script type in them (dsl, JS, Blockly) and also when they were executed last time

Hi all,

is there a way to get a list of all rules (in my case 139) which shows what type of script (if any) is used?

I want to convert all of my “legacy” dsl rules, but dont what to check every single one of them manually :wink:

Also it would be nice to know when the rule was executed last time (timestamp).

Best,

Well, let me answer that first part my self :wink:

Development sidebar:

1 Like

Openhab’s REST API ip-address/rest/rules gives you a json object with all rules where you can access the type of language by actions.configuration.type (gives you “application/javascript”)

1 Like