<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Drilldown on Dashboard not working properly in Splunk Cloud Platform</title>
    <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640235#M2177</link>
    <description>&lt;P&gt;No it's okay you were right, I had a typo&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 17 Apr 2023 15:06:15 GMT</pubDate>
    <dc:creator>jhilton90</dc:creator>
    <dc:date>2023-04-17T15:06:15Z</dc:date>
    <item>
      <title>Why is drilldown on dashboard not working properly?</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640216#M2170</link>
      <description>&lt;P&gt;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:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=keycloak "fields.environment"=production redirect_uri=* type=UPDATE_PASSWORD 
| rename customerReferenceAccountId as AccountID | top AccountID limit=20&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=keycloak "fields.environment"=production customerReferenceAccountId=$AccountID$ type=UPDATE_PASSWORD 
| table $AccountID$, username, userId, redirect_uri, ipAddress, _time&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;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$.&lt;/P&gt;
&lt;P&gt;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&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 21:14:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640216#M2170</guid>
      <dc:creator>jhilton90</dc:creator>
      <dc:date>2023-04-17T21:14:38Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640222#M2171</link>
      <description>&lt;LI-CODE lang="markup"&gt;index=keycloak "fields.environment"=production customerReferenceAccountId=$AccountID$ type=UPDATE_PASSWORD 
| table customerReferenceAccountId, username, userId, redirect_uri, ipAddress, _time&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Apr 2023 14:44:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640222#M2171</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-04-17T14:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640223#M2172</link>
      <description>&lt;P&gt;That doesn't work I'm afraid&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 14:50:49 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640223#M2172</guid>
      <dc:creator>jhilton90</dc:creator>
      <dc:date>2023-04-17T14:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640224#M2173</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=keycloak "fields.environment"=production customerReferenceAccountId=$AccountID|s$ type=UPDATE_PASSWORD 
| table customerReferenceAccountId, username, userId, redirect_uri, ipAddress, _time&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 17 Apr 2023 14:52:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640224#M2173</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-04-17T14:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640227#M2174</link>
      <description>&lt;P&gt;Isn't that the same? I tried it but it didn't work&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 14:55:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640227#M2174</guid>
      <dc:creator>jhilton90</dc:creator>
      <dc:date>2023-04-17T14:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640229#M2175</link>
      <description>&lt;P&gt;Run the dashboard.&lt;BR /&gt;Click "Edit".&lt;BR /&gt;Scroll to your panel.&lt;BR /&gt;In the upper-right corner, click on the snowman menu and select "Edit Drilldown".&lt;BR /&gt;In the popup that opens, select "Link to Search".&lt;BR /&gt;In the redrawn popup, select, "Custom".&lt;BR /&gt;Paste this in it:&amp;nbsp;&lt;SPAN&gt;index="keycloak" AND fields.environment="production" AND customerReferenceAccountId="$click.value$" AND type="UPDATE_PASSWORD" | table AccountID, username, userId, redirect_uri, ipAddress, _time&lt;/SPAN&gt;&lt;BR /&gt;Or maybe something like this: |inputlookup foo WHERE AccountID="$click.value$"&lt;BR /&gt;Save it all.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:07:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640229#M2175</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2023-04-17T15:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640234#M2176</link>
      <description>&lt;P&gt;No, it uses |s to make the token a string - without more detail on what your events look like and what exactly isn't working, it is a little difficult to make other suggestions. If you want more help, please provide more detail on what your issues are&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:05:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640234#M2176</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2023-04-17T15:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: Drilldown on Dashboard not working properly</title>
      <link>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640235#M2177</link>
      <description>&lt;P&gt;No it's okay you were right, I had a typo&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 17 Apr 2023 15:06:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Cloud-Platform/Why-is-drilldown-on-dashboard-not-working-properly/m-p/640235#M2177</guid>
      <dc:creator>jhilton90</dc:creator>
      <dc:date>2023-04-17T15:06:15Z</dc:date>
    </item>
  </channel>
</rss>

