| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- == table
- Status: *Stable*
- The table panel contains a sortable, pagable view of documents that. It can be arranged into
- defined columns and offers several interactions, such as performing adhoc terms aggregations.
- // src/app/panels/table/module.js:5
- === Parameters
- size:: The number of hits to show per page
- // src/app/panels/table/module.js:53
- pages:: The number of pages available
- // src/app/panels/table/module.js:59
- offset:: The current page
- // src/app/panels/table/module.js:63
- sort:: An array describing the sort order of the table. For example [`@timestamp',`desc']
- // src/app/panels/table/module.js:67
- overflow:: The css overflow property. `min-height' (expand) or `auto' (scroll)
- // src/app/panels/table/module.js:71
- fields:: the fields used a columns of the table, in an array.
- // src/app/panels/table/module.js:75
- highlight:: The fields on which to highlight, in an array
- // src/app/panels/table/module.js:79
- sortable:: Set sortable to false to disable sorting
- // src/app/panels/table/module.js:83
- header:: Set to false to hide the table column names
- // src/app/panels/table/module.js:87
- paging:: Set to false to hide the paging controls of the table
- // src/app/panels/table/module.js:91
- field_list:: Set to false to hide the list of fields. The user will be able to expand it,
- but it will be hidden by default
- // src/app/panels/table/module.js:95
- all_fields:: Set to true to show all fields in the mapping, not just the current fields in
- the table.
- // src/app/panels/table/module.js:100
- trimFactor:: The trim factor is the length at which to truncate fields takinging into
- consideration the number of columns in the table. For example, a trimFactor of 100, with 5
- columns in the table, would trim each column at 20 character. The entirety of the field is
- still available in the expanded view of the event.
- // src/app/panels/table/module.js:105
- 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:124
|