Kibana cannot do a the Histogram of the cumulative value of a field as 
describe at:https://github.com/elasticsearch/kibana/issues/740

To overcome that I created a separate index where I calculate myself the 
total and saved it to Elasticsearch.

The mapping looks as follows:

curl -XPOST localhost:9200/first_install -d '{
    "settings" : {
        "number_of_shards" : 5
    },
    "mappings" : {
        "fi" : {
            "properties" : {
                "evtTime" : { "type" : "date", "index": "not_analyzed", 
"format": "dd/MMM/yyyy:HH:mm:ss" },
                "cumulativeValue" : { "type" : "integer", "index": 
"not_analyzed" }
            }
        }
    }
}'

The values are saved properly but unexpectedly Kibana does not draw the 
line i would expect, instead it joins between point that do not exist.

Following is the Kibana sreenshot:

[image: enter image description here]

The line curve should always be increasing since my data set is always 
increasing, that i can prove by the following events as seen by kibana 
itself:

[image: enter image description here]

Could it be related to the data formatting I did?

Thx in advance.

-- 
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/26eb4c3b-a821-4fdf-ac42-90db0cdcb8e5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to