Elastic supports querying through SQL, which is very convenient for querying structured data. I wonder if there are plans to support SQL queries, such as the following search statement:
GET /_sql?format=txt
{
"query": """
SELECT process_path, process_sha, path from file_read_logs where process_path like '%firefox.exe%' and machine_name='PC2FPDLC'
"""
}
Elastic supports querying through SQL, which is very convenient for querying structured data. I wonder if there are plans to support SQL queries, such as the following search statement:
GET /_sql?format=txt { "query": """ SELECT process_path, process_sha, path from file_read_logs where process_path like '%firefox.exe%' and machine_name='PC2FPDLC' """ }