Skip to content

Instantly share code, notes, and snippets.

@odrianoaliveira
Created April 12, 2018 14:01
Show Gist options
  • Save odrianoaliveira/5eb2387811a28c24b88b59cd1323d754 to your computer and use it in GitHub Desktop.
Save odrianoaliveira/5eb2387811a28c24b88b59cd1323d754 to your computer and use it in GitHub Desktop.
kibana scripted field
if (!doc['request.keyword'].empty) {
def m = /\/api\/(.*[-\/]v[0-9])\/.*/.matcher(doc['request.keyword'].value);
if (m.matches()) {
return m.group(1)
}
}
return ""
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment