BroadSoft-Xtended / BroadWorks-Dashboards-and-Discovery

This repository contains the BroadWorks Dashboards and Discovery components to extend BroadWorks data mining, reporting, and analysis capabilities.
23 stars 4 forks source link

Duplicate Timestamps Question #49

Open tsanchez88 opened 6 years ago

tsanchez88 commented 6 years ago

I noticed when doing searches in the "Discover" area of Kibana on my setup, that it would show the Time results duplicated. I did some searching and found other Elasticsearch users who had experienced this say that they had changed the index to not "Store" the date entry in order to fix it. I modified the template to do this and confirmed that the Discover searches now come back with only a single timestamp, but I was curious if anyone knows if this might break other plugins or dashboards that are supplied here.

    "mappings": {
            "log_record": {
                    "properties": {
                            "logtimestamp": {
                                    "type": "date",
                                    "format": "yyyy-MM-dd HH:mm:ss.SSS zzz || epoch_millis",
                                    "doc_values": true,
                                    "store": false
                            },
kdotson3263k commented 6 years ago

I am not aware of the impact, but thanks for posting this!