hello,
I'm wanting to filter out Alexa top 500 DNS queries for a word cloud. For example:
{
"query": {
"bool": {
"should": [
{
"match_phrase": {
"dns_query.keyword": "google.com"
}
},
{
"match_phrase": {
"dns_query.keyword": "google.com"
}
},
{
"match_phrase": {
"dns_query.keyword": "googleads.g.doubleclick.net"
}
}
],
"minimum_should_match": 1
}
}
}
However I have 500 URL's to filter. Is there a way to add all URL's to filter?