Timelion query

Try using either quotes, or if you have a non-analyzed field with the same data, you can point to that. Elasticsearch might have created one for you automatically depending on how you set up your mappings, and what version you are using - you can check this out in the Index patterns page of management:

the .keyword one above is the one that won't strip out special characters. So here are a few examples:

The query as you wrote it, returns too many matches:

Adding quotes removes them:

As does using the .keyword variation:

Here is my data for reference in this example:
29 AM

Hope that helps!

1 Like