Kapacitor Template for Multiple Where Clause

Hi

I have a template for Threshold based alerts for my system. In the Where_filter earlier I needed only one tag, but now I need multiple tags. Is there a way we can do multiple tag values in the where_filter.?
I tried to put it as a list but it does not allow that.

Would really appreciate if I can get any help on this.

My Template looks like this-

// Which measurement to consume
var measurement string
// where filter put a tag
var where_filter = lambda: TRUE
var groups = [*]
// Which field to process
var field string
// Critical criteria,
var crit lambda

stream
|from()
.measurement(measurement)
.where(where_filter)
.groupBy(groups)
|alert()
.stateChangesOnly()
.crit(crit)
.log(’/var/log/kapacitor/logfile.log’)