In kibana, I have below type of log entries in the "message" field. I want to search for all the unique/distinct URLs from the log.
My URL format is like web.cluster.test.com/api/*
123.456.78.90 - a898fur6x5b10hd5 phoenix-xml login_unified "POST web.cluster.test.com/api/login_unified.php HTTP/1.1" "python-requests/2.21.0" - {"output":"xml","domain":"test","reusesess":"0","userid":"abc@test.net","pass":"<REDACTED>"} {"domain":"test","userid":"abc@test.net","pass":"<REDACTED>","mdpass":null,"reseller":null,"resellerpass":null,"reusesess":false,"output":"xml","apiuser":null,"apipass":"<REDACTED>","logout":null}
123.456.78.90 - a65oaby6x5b10hd5 phoenix-xml user_query "POST web.cluster.test.com/api/user_query.php HTTP/1.1" "python-requests/2.21.0" - {"output":"xml","domain":"test","reusesess":"0","userid":"abc@test.net","pass":"<REDACTED>"} {"domain":"test","userid":"abc@test.net","pass":"<REDACTED>","mdpass":null,"reseller":null,"resellerpass":null,"reusesess":false,"output":"xml","apiuser":null,"apipass":"<REDACTED>","logout":null}
If I search with "web.cluster.test.com/api/*" in the search bar, it gives me that patterns URLs in the search result, but they are not unique.
How can we get all the unique URL's from it? Appriciate your help and thank you.