I have a dashboard which displays information about password resets and I have a bar chart showing the top 20 accounts that have reset their passwords, code as follows:
index=keycloak "fields.environment"=production redirect_uri=* type=UPDATE_PASSWORD
| rename customerReferenceAccountId as AccountID | top AccountID limit=20
This displays as a bar chat absolutely fine, however what I'm trying to achieve is to be able to click one of the bars in this chart, which will then display a table with AccountID, username, userId, redirect_uri, ipAddress, _time. Code as follows:
index=keycloak "fields.environment"=production customerReferenceAccountId=$AccountID$ type=UPDATE_PASSWORD
| table $AccountID$, username, userId, redirect_uri, ipAddress, _time
In the first table I have set the "On Click" with a value of "Manage tokens on this dashboard" as follows: Set AccountID = $click.value$.
However, when I click on one of the bars, the table below isn't displaying any information, I just get "No results found" but I know that there are results
... View more