Hello,
I am new to Kibana.
I have elastic search index having 3 timestamp fields as below.
{ "current_timestap": "2015-10-01 06:10:10", "order_timestamp": "2015-09-01 06:10:10", "invoice_timestamp": "2015-09-07 06:10:10","order_id":1}
{ "current_timestap": "2015-10-01 06:30:10", "order_timestamp": "2015-09-02 06:10:10", "invoice_timestamp": "2015-09-10 06:10:10" ,"order_id":2}
{ "current_timestap": "2015-10-01 06:50:10", "order_timestamp": "2015-09-30 06:10:10", "invoice_timestamp": "2015-10-01 06:10:10","order_id":1}
Note current_timestap is document created time stamp in elastic search.
order_timestamp - order placed timestamp.
invoice_timestamp - invoice geneated timestamp
While configuring index pattern in Kibana I used current_timestamp field as time field event(global time filter).
Now I need two line charts which shows order submission rate and invoice rate. While creating line chart, selected the following options.
X axis - Data histogram
Field - order_timestamp
interval - 1 hour
The graph is plotting good.
Now my concern in with global filter(based on current_timestamp). The problem is if I select last 15 minutes,the order order submission rate graph may have old data. For example If have orders which are older than 15 mintues, but document got create in last 15 minutes that record will come in the graph.
Actually I expect the graph to show only orders which are created in last 15 minutes(order_timestamp). Similar the case with invoice rate graph also.
Am I doing something wrong here?