Skip to content

Instantly share code, notes, and snippets.

@zverbatim
Last active December 4, 2018 09:34
Show Gist options
  • Save zverbatim/7163918d980ff849da851e991dd3e90e to your computer and use it in GitHub Desktop.
Save zverbatim/7163918d980ff849da851e991dd3e90e to your computer and use it in GitHub Desktop.
Kibana search criteria:
------------------------------------------------------
type: http
http transition only
http.response.headers["content-type"]: *json
regex operator
responsetime: [10 TO *]
range with 10 including
responsetime: {10 TO *}
range that does not include 10
NOT type: mysql
except
mysql.method: SELECT AND mysql.size: [10000 TO *]
all MySQL SELECT queries with large attachments:
(mysql.method: INSERT OR mysql.method: UPDATE) AND responsetime: [30 TO *]
can use ()
lang:(en OR es)
in condition for terms
+_type:event +_missing_:foo -duration:[10 to *]
+ = must
- = must not
_missing_ = the field that does not exists in the document
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment