Hi, I am new to elasticsearch and kibana. I have loaded some log data into elasticsearch and I have a field called "LogDetail" and the content looks like below
*Antenna plate 1 temperature: 40.00 degC* I would like to get the log events/documents for temperature > 70.00 degC. This is how we are doing in MySQL. SELECT substring(log_detail, 30, 5) AS temp FROM log_table WHERE log_detail like 'temperature: %' HAVING temp > 70.00 Is this something we can do with elastisearch query or the data needs to be parsed to get the temperature value out of it while loading the data? Thanks -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/6fc53bd1-a088-4ed6-a83d-1c00931f023c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
