Wildcard character "*" doesn't seem to work with Analytics Custom Report Filter

Using the Analytics Custom Report, I wanted to get Developer name based on Target URL. So I tried using the below expression in Filter, but looks like the regular expression is not working

(target_url eq '*ProductInfo/V2*'). 

Is the wildcard character "*" not supported ? Is there any other workaround/alternative to do this ?

Solved Solved
0 2 482
1 ACCEPTED SOLUTION

Not applicable

Hello Amar,

Apigee Analytics use a syntax very similar to PostgreSQL and the wildcard should be "%" instead of "*". Try editing your filter as:

(target_url eq '%ProductInfo/V2%')

View solution in original post

2 REPLIES 2

Not applicable

Hello Amar,

Apigee Analytics use a syntax very similar to PostgreSQL and the wildcard should be "%" instead of "*". Try editing your filter as:

(target_url eq '%ProductInfo/V2%')

@oponce@apigee.com

Thanks a lot for your suggestion.