regexp.matchRegexpString() function
*Output data type: Boolean*
*Data type: Regexp*
v
*Data type: String*
Examples
Filter by columns that contain matches to a regular expression
import "regexp"
data
|> filter(fn: (r) =>
r: /Alert\:/,
v: r.message
)