So I've got a dashboard about failed login attempts and I want to have a searchable function as well. The searchable function will have four separate search boxes, which will be "Username", "User ID", "Email Address" and "IP Address". I want it to so that when you search for the username in the username search box, it will retrieve the Username in the username tile, User ID in the user id tile, Email Address in the email address tile and IP Address in the ip address tile. Likewise if you were to search for any of those other things it would return all those results. Just as a note, the username can be either an email address or a string of numbers and letter My code looks like this so far: IP Address Tile: index=keycloak ipAddress=$ipaddress$
| table ipAddress Username Tile: index=keycloak username=$username$ AND username!="*@*"
| dedup userId
| fields username
| table username Any help with this would be great
... View more