How do you use pcre named pattern matches with store-matches?
I've been trying to do things like
message("IP: (?<ip>\S+)" flags(store-matches) type("pcre"))
and then insert into a database with things like
values("$ip") or values("$+{ip}")
and nothing works.
I cant seem to find any examples of usage through google either.