Hello,
I'm trying to create a wildcard filter that filters on paths starting with c:\git*
But:
{
"query": {
"wildcard": {
"process.working_directory": {
"value": "c:\\git\\*"
}
}
}
}
is not working. And escaping the ':', as suggested in Wildcard query with a file path - Search for c:\users\public* results in:
How should I handle this?
Grtz
Willem