基巴纳。数据表。根据长度排除术语
Kibana. Data tables. Exclude terms depending on the length
我在 Elasticsearch 中存储句子。
示例:
this is a sentence
this is a second sentence
我想显示一个数据 table,其中包含我的 Kibana 4.3.1 中最常用的术语,选择:
Metric = count
Split rows
Aggregation = terms
Field = input
Order by = metric count
Order descending. Size 5
这就是我在 table 中得到的:
this 2
is 2
a 2
sentence 2
second 1
而且我想删除少于 3 个字符的短词。在此示例中,"is" 和 "a".
如何实现?
谢谢!
添加这个 Exclude Pattern
:
[a-zA-Z0-9]{0,3}
我在 Elasticsearch 中存储句子。 示例:
this is a sentence
this is a second sentence
我想显示一个数据 table,其中包含我的 Kibana 4.3.1 中最常用的术语,选择:
Metric = count
Split rows
Aggregation = terms
Field = input
Order by = metric count
Order descending. Size 5
这就是我在 table 中得到的:
this 2
is 2
a 2
sentence 2
second 1
而且我想删除少于 3 个字符的短词。在此示例中,"is" 和 "a".
如何实现?
谢谢!
添加这个 Exclude Pattern
:
[a-zA-Z0-9]{0,3}