I got this to work for some sample queries, but can't get it to work for the actual query I need to run. What I've tried is:
index!="x" instance!="cs" logName="/mobile/direct/" logRecordTypeU=1 NOT logName="/mobile/direct/2.0.adobeair/" |fields logName, _time, organizationId, userId | rex field=logName "/mobile/direct/2..0.(? [^/] )/.*" | where not isnull(device) | timechart span=2w dc(userId) as uniqueUsers by device | sort count | head 10 | stats count by userId
I'm pretty sure this is just a syntax error, but I don't know what exactly the error is.
... View more