diff --git a/docs/kibana/panels/table.asciidoc b/docs/kibana/panels/table.asciidoc index 4064dede990..85a8c1a360d 100644 --- a/docs/kibana/panels/table.asciidoc +++ b/docs/kibana/panels/table.asciidoc @@ -52,12 +52,18 @@ columns in the table, would trim each column at 20 character. The entirety of th still available in the expanded view of the event. // src/app/panels/table/module.js:105 -spyable:: Set to false to disable the inspect icon +localTime:: Set to true to adjust the timeField to the browser's local time // src/app/panels/table/module.js:112 +timeField:: If localTime is set to true, this field will be adjusted to the browsers local time +// src/app/panels/table/module.js:116 + +spyable:: Set to false to disable the inspect icon +// src/app/panels/table/module.js:120 + ==== Queries queries object:: This object describes the queries to use on this panel. queries.mode::: Of the queries available, which to use. Options: +all, pinned, unpinned, selected+ queries.ids::: In +selected+ mode, which query ids are selected. -// src/app/panels/table/module.js:116 +// src/app/panels/table/module.js:124 diff --git a/src/app/dashboards/logstash.json b/src/app/dashboards/logstash.json index 9bd1aac1550..02d24dee842 100644 --- a/src/app/dashboards/logstash.json +++ b/src/app/dashboards/logstash.json @@ -128,6 +128,8 @@ }, "overflow": "min-height", "fields": [], + "localTime": true, + "timeField": "@timestamp", "highlight": [], "sortable": true, "header": true, diff --git a/src/app/panels/table/editor.html b/src/app/panels/table/editor.html index 3a4c36bd749..9b5f26e7b3e 100644 --- a/src/app/panels/table/editor.html +++ b/src/app/panels/table/editor.html @@ -1,48 +1,49 @@