如何在Kibana控制台中写评论?

时间:2018-09-30 13:46:49

标签: console comments kibana elastic-stack kibana-6

您能否提供一个提示,提示如何在Kibana开发工具控制台中注释掉行?我对注释语法感兴趣。

2 个答案:

答案 0 :(得分:2)

Kibana开发工具不支持查询中的注释

但是,您可以在查询之前或之后或查询中间使用Function GetNameOfBrand(celltext As String) As String Dim x As Long Dim s As String x = InStr(celltext, "brand") If x = 0 Then GetNameOfBrand = "" Else s = Mid(celltext, x + 16, Len(celltext) - x + 15) x = InStr(s, "'") s = Left(s, x - 1) GetNameOfBrand = s End If End Function 来写注释。

#

答案 1 :(得分:0)

您可以使用#一次注释掉一行。例如:

# This is a search command
GET /_search
{
  "query": {
    "match_all": {}
  }
}