Hi,
I have an Elasticsearch data source pointing to an index with 2 fields – a value (integer) and a timestamp (date). My intention is to use the value field in metric (sum) for only those documents which has “23:59:59.999” in the timestamp.
I am trying to create a variable like – {“find”: “terms”, “field”: “timestamp”, “query”: “”} with a regex to filter only those timestamps which has “23:59:59.999” for any dates.
Can you help me with the regex that I should use?
Thanks.