Monitor Whether Rule has Instance Running

I'm thinking this is (should be?) obvious, but I can't find it for the life of me.

Is there a place to go to see if a rule has one or more instances that are currently running, i.e., in process?

No, this is not really possible. You could do something like increment a Hub Variable when the rule begins, and decrement it when the rule exits. Assuming you initialize that variable to zero, it would tell you how many instances are active. Be aware that race conditions are possible if the rule is triggered quite rapidly.

2 Likes

Makes sense, thx