31
30

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

kibanaのクエリのメモ

Last updated at Posted at 2015-05-28

kibana4で、
Visualizationで用意されているもの以外で結果を絞りたい時のクエリをメモメモ

  • どっかのフィールドの値で絞りたい(name=hoge)

    • name:"hoge"
  • andとかorとか使いたい

    • name:"hoge" AND pagenum:1
    • name:"hoge" OR name:"hage"
  • wildcard使いたい

    • name:hoge
      • 上記はnameフィールドだけにあたってくれない事もあった
      • 詳細は未調査
  • フィールドがあるかないかで絞りたい

    • _exists_:name
    • _missing_:name
  • ほにゃほにゃ以上

    • pagenum:>1

詳細はこのへんにのってた
https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html#query-string-syntax

31
30
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
31
30

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?