I try to use {HOST.CONN} in a JSONPath preprocessing rule.
I tried a lot of escaping variants, but can't make it work.
Does anybody spot the error? Are macros supported in preprocessing?
Code:
# This works
$.nodes[?(@.host =~ "192.168.0.100")]
# Checking value of HOST.CONN
{HOST.CONN}: 192.168.0.100
# This does not work
$.nodes[?(@.host =~ "{HOST.CONN}")]
Does anybody spot the error? Are macros supported in preprocessing?
Comment