Skip to content

Instantly share code, notes, and snippets.

@iserko
Created April 3, 2014 21:23
Show Gist options
  • Save iserko/9963195 to your computer and use it in GitHub Desktop.
Save iserko/9963195 to your computer and use it in GitHub Desktop.
Example:
I run the stats query and get:
{
"indices": {
"example_index_name": {
"total": {
"search": {
"groups": {
"group1": {
"query_total": 50000
}
}
}
}
}
}
}
I run the stats query again after 5 seconds and get:
{
"indices": {
"example_index_name": {
"total": {
"search": {
"groups": {
"group1": {
"query_total": 123
}
}
}
}
}
}
}
and 5 seconds after that one:
{
"indices": {
"example_index_name": {
"total": {
"search": {
"groups": {
"group1": {
"query_total": 50200
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment