Hi, I would like to humbly ask for some example how to use markers in Kibana3 histograms as I unable to get it run. What I unsuccessfully tried is bellow, definitely I miss something. Thanks
curl -XPUT 'http://localhost:9200/ossec-logstash-2014.02.05/deploy/1' -d '{ "timestamp" : "2014-02-05T12:00:00", "message" : "Security scans", "tag" : "marks" }' via head plugin query search I can get it: {"query":{"bool":{"must":[{"term":{"deploy.tags":"marks"}}],"must_not":[],"should":[]}},"from":0,"size":50,"sort":[],"facets":{}} _index _type _id ▼ _score timestamp message tags ossec-logstash-2014.02.05 deploy 1 12.396167 2014-02-04T 12:00:00 Security scans marks but in Kibana I don't see any marks (even If I tried to query just deploy.tags I have empty result in Kibana), in histogram query: "size": 10, "query": { "filtered": { "query": { "query_string": { "query": "deploy.tags:\"marks\"" } }, "filter": { "bool": { "must": [ { "range": { "@timestamp": { "from": 1391497422132, "to": "now" } } } ] } } } }, "sort": [ { "@timestamp": { "order": "desc" } }, Marker setup in histogram: Markeer query: deploy.tags:"marks" Tooltip field: @message Sort: @timestamp -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/2425cab4-01a7-48ab-bf7d-9bf0aff95c8f%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
