Hello,
I'm collecting tweets from twitter using ELK 5.X, In order to handle my application, I need to :
1- Convert all collected twitter hashtags to lowercase :
I used mutate in logstash file
filter{ mutate { lowercase => [ [entities][hashtags][text] ] } }
but this is not working. ( hashtag value text is an element of the object entities.hashtags)
waiting for your help,
Thank you