Yes it absolutely has data. I already have a full dashboard with disconnect data based on (IONS) User IDs, and Device names. I am just stuck on this request to be able to filter the data by device type using keywords. I don't think the eval command accepts wildcards like *mac* which I need. Some Device names are for example "John-mac" others are "laptop-Mary", etc. I can get data using the following: | stats count by "User ID" | sort -count but when I try using eval below it gives me nothing. I can confirm that there is a Device named IPAD, Perhaps I should use another command but I'm fairly new at this. Thank you! |eval DeviceType=case(Device=IPAD, "Macs", Device=Laptop, "Windows") |stats count by Device, DeviceType
... View more