elastic / stream2es

Stream data into ES (Wikipedia, Twitter, stdin, or other ESes)
356 stars 60 forks source link

[Twitter] index hashtags #3

Closed dadoonet closed 11 years ago

dadoonet commented 11 years ago

Twitter provides hashtags in tweets under entities.hashtags array. See entities twitter doc. For example:

{
    "text": "Loved #devnestSF"
    "entities": {
      "media": [
      ],
      "urls": [
      ],
      "user_mentions": [
      ],
      "hashtags": [
        "text": "devnestSF"
        "indices": [
          6,
          16
        ]
      ]
    }
}

I would love to have hashtags (not analyzed by default) to build live Kibana dashboards using that property too.

drewr commented 11 years ago

You're right! Coming up...