HI Guys,
I have a url like this:
https://localhost/Client/V2/clients/23423/acc/view
https://localhost/Client/V2/clients/23424/acc/view
https://localhost/Client/V2/clients/23425/acc/view
https://localhost/Client/V2/clients/23423/acc/basic
https://localhost/Client/V2/clients/23423/acc/basic
https://localhost/Client/V2/clients/23423/acc/basic
https://localhost/Client/V2/clients/23425/acc/basic
I want to group into two rows
url | count
https://localhost/Client/V2/clients/*/acc/view| 3
https://localhost/Client/V2/clients/*/acc/basic | 4
How can I aggregate?
It is a url field.
I tried with
rex field=url
"https://localhost/Client/V2/clients/(\d+)/*"
| table url
but it did not work.
... View more