Skip to content

Commit

Permalink
version 1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fbaligand committed Mar 1, 2020
1 parent 16be0fb commit bb103b1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ This Kibana visualization plugin is like a Data Table, but with enhanced feature
- When combined with computed columns, each computed column can be added per split column or after all split columns
- Hide export links (when checked, it will hide "Raw" and "Formatted" export links)
- Add a total label on total line first column (ex: `Total:`)
- Kibana supported versions : all versions from 5.5 to 7.5
- Ability to display striped rows
- Kibana supported versions : all versions from 5.5 to 7.6

## Demo

Expand All @@ -64,6 +65,12 @@ Every release package includes a Plugin version (X.Y.Z) and a Kibana version (A.

Common features available for 'Computed Column Formula' and 'Lines Computed Filter':
- Support for [expr-eval](https://github.com/silentmatt/expr-eval#expression-syntax) expressions
- Support for features brought by expr-eval 2.0:
- Ability to reference arrays. Especially useful to reference a 'Top Hits' metric column: `col1[0]`
- New functions for arrays available: `join, map, filter`
- Variable assignment: `x = 4`
- Custom function definitions: `myfunction(x, y) = x * y`
- Evaluate multiple expressions by separating them with `;`
- Ability to reference total hits count returned by ES query (ex: `col0 / total * 100`)
- Ability to reference a column by its label (ex: `col['Sum of duration'] / col['Count']`)
- Column reference validation (by number or label), with error notification
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "enhanced-table",
"version": "1.7.0",
"version": "1.8.0",
"description": "This visualization plugin is like a Data Table, but with enhanced features like computed columns, filter bar and pivot table",
"main": "index.js",
"kibana": {
Expand Down

0 comments on commit bb103b1

Please sign in to comment.