<?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: Is it possible to use $row.fieldName$ in a drilldown custom URL? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638428#M52216</link>
    <description>&lt;P&gt;I just now realized you're using a chart rather than a table, but the $row.field$ convention should still work.&amp;nbsp; This table shows the tokens available from a chart.&lt;/P&gt;&lt;P&gt;I wonder if it might help to rename the p99 result and use the new name in a token.&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;| chart p99(memory_usage) as p99 by _time, cluster&amp;lt;/query&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;Token &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Description&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.name$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;X-axis field or category name for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.value$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;X-axis field or category value for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.name2$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Y-axis field or series name for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.value2$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Y-axis field or series value for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$row.&amp;lt;fieldname&amp;gt;$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Access any y-axis field value corresponding to the clicked location x-axis. Not available if the user clicks the chart&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN class=""&gt;legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$row.&amp;lt;x-axis-name&amp;gt;$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Access any x-axis field value corresponding to the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$earliest$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Earliest time for the clicked chart segment. If not applicable, uses the earliest time for the search.&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 03 Apr 2023 17:44:12 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2023-04-03T17:44:12Z</dc:date>
    <item>
      <title>Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/636974#M52195</link>
      <description>&lt;P&gt;I'm using Classic dashboard for this.&lt;/P&gt;&lt;P&gt;I'm trying to use some of the results of a search beneath a Line Chart to modify a custom URL, but need to use values other than click.value, click.value2.&lt;/P&gt;&lt;P&gt;For example: I'd like when a user clicks on a line which is grouped by cluster (A field generated with rex), I'd like to take them to a separate page, with that cluster pre-filled in.&lt;/P&gt;&lt;P&gt;Everything I've read says "Just do $row.cluster$", or "$result.cluster". I thought maybe because it's a value generated with rex, that it might not work, but even things like $row.host$, which I've seen recommended in many places, but it always comes through as just "$row.host$", instead of the value of the field.&lt;/P&gt;&lt;P&gt;I even made a token that references $row.host$, and it translates the token to `%3Frow.host%3F` instead of filling in the actual value.&lt;/P&gt;&lt;P&gt;Here's a slightly trimmed down example of the line chart that is not giving me the proper custom values on drilldown (click.value/click.value2 both work, for what it's worth, but *only* those two):&lt;/P&gt;&lt;PRE&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="*" sourcetype="infra_memory" &lt;BR /&gt;| regex host=".*?bar.*?" &lt;BR /&gt;| rex &amp;lt;insert convoluted 'cluster' regex here&amp;gt;&lt;BR /&gt;| rex field=host "[^0-9]*(?&amp;amp;lt;stack_num&amp;amp;gt;[0-9]+)-"&lt;BR /&gt;| eval memory_usage = ((total-available)/total*100) &lt;BR /&gt;| bucket _time span=1hour &lt;BR /&gt;| chart p99(memory_usage) by _time, cluster&amp;lt;/query&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;drilldown&amp;gt;&lt;BR /&gt;&amp;lt;set token="TEST"&amp;gt;$row.host$&amp;lt;/set&amp;gt;&lt;BR /&gt;&amp;lt;link target="_blank"&amp;gt;/test:$TEST$-$row.TEST$,$tkn.TEST$/rowstuff:$row.stack_num$,$row.host$,$row.cluster$-clickstuff:$click.value$,$click.value2$,$click.host$-result:$result.sourcetype$,$result.host$&amp;lt;/link&amp;gt;&lt;BR /&gt;&amp;lt;/drilldown&amp;gt;&lt;/PRE&gt;&lt;P&gt;(As you can see, I've tried a bunch of different things, in a desperate attempt to find anything that works)&lt;/P&gt;&lt;P&gt;Is what I'm trying to do possible?&lt;/P&gt;</description>
      <pubDate>Fri, 31 Mar 2023 20:00:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/636974#M52195</guid>
      <dc:creator>Kreep</dc:creator>
      <dc:date>2023-03-31T20:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/636990#M52198</link>
      <description>&lt;P&gt;The &lt;FONT face="courier new,courier"&gt;$row.field$&lt;/FONT&gt; construct only works if field exists; otherwise, you get the token as literal text.&lt;/P&gt;&lt;P&gt;In the example, the &lt;FONT face="courier new,courier"&gt;chart&lt;/FONT&gt; command has discarded all fields except 'p99(memory_usage)', _time, and cluster so those are the only fields can be passed in a drilldown.&lt;/P&gt;</description>
      <pubDate>Sat, 01 Apr 2023 00:26:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/636990#M52198</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-04-01T00:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638409#M52215</link>
      <description>&lt;P&gt;Interesting, so I've now set my token/drilldown stuff to the following to test those specific fieldnames:&lt;/P&gt;&lt;PRE&gt;&amp;lt;drilldown&amp;gt;&lt;BR /&gt;  &amp;lt;set token="TEST"&amp;gt;&lt;STRONG&gt;$row.cluster$&lt;/STRONG&gt;&amp;lt;/set&amp;gt;&lt;BR /&gt;  &amp;lt;link target="_blank"&amp;gt;/token:&lt;STRONG&gt;$TEST$&lt;/STRONG&gt;/row:&lt;STRONG&gt;$row.cluster$&lt;/STRONG&gt;,etc:&lt;STRONG&gt;$row.p99(cpu_usage)$&lt;/STRONG&gt;-&lt;STRONG&gt;$row.cpu_usage$&lt;/STRONG&gt;-&lt;STRONG&gt;$row._time$&lt;/STRONG&gt;&amp;lt;/link&amp;gt;&lt;BR /&gt;&amp;lt;/drilldown&amp;gt;&lt;/PRE&gt;&lt;P&gt;And the resulting URL ends with the following:&lt;/P&gt;&lt;P&gt;/token:&lt;STRONG&gt;%24row.cluster%24&lt;/STRONG&gt;/row:&lt;STRONG&gt;$row.cluster$&lt;/STRONG&gt;,etc:&lt;STRONG&gt;$row.p99(cpu_usage)$&lt;/STRONG&gt;-&lt;STRONG&gt;$row.cpu_usage$&lt;/STRONG&gt;-&lt;STRONG&gt;1680526800.000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Somehow, it's still ignoring everything but _time, and I can't figure out why.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 15:26:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638409#M52215</guid>
      <dc:creator>Kreep</dc:creator>
      <dc:date>2023-04-03T15:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638428#M52216</link>
      <description>&lt;P&gt;I just now realized you're using a chart rather than a table, but the $row.field$ convention should still work.&amp;nbsp; This table shows the tokens available from a chart.&lt;/P&gt;&lt;P&gt;I wonder if it might help to rename the p99 result and use the new name in a token.&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;| chart p99(memory_usage) as p99 by _time, cluster&amp;lt;/query&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;Token &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Description&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.name$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;X-axis field or category name for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.value$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;X-axis field or category value for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.name2$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Y-axis field or series name for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$click.value2$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Y-axis field or series value for the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$row.&amp;lt;fieldname&amp;gt;$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Access any y-axis field value corresponding to the clicked location x-axis. Not available if the user clicks the chart&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;SPAN class=""&gt;legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$row.&amp;lt;x-axis-name&amp;gt;$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Access any x-axis field value corresponding to the clicked location. Not available if the user clicks the chart legend.&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD width="137"&gt;&lt;SPAN class=""&gt;$earliest$ &lt;/SPAN&gt;&lt;/TD&gt;&lt;TD width="550"&gt;&lt;SPAN class=""&gt;Earliest time for the clicked chart segment. If not applicable, uses the earliest time for the search.&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 17:44:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638428#M52216</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-04-03T17:44:12Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638695#M52227</link>
      <description>&lt;P&gt;Now using:&lt;/P&gt;&lt;PRE&gt;&amp;lt;search&amp;gt;&lt;BR /&gt;  &amp;lt;query&amp;gt;index="*" sourcetype="infra_cpu" &lt;BR /&gt;    | regex host=".*bar.*"&lt;BR /&gt;    | rex &amp;lt;insert convoluted 'cluster' regex here&amp;gt;&lt;BR /&gt;    | rex field=host "[^0-9]*(?&amp;amp;lt;stack_num&amp;amp;gt;[0-9]+)-"&lt;BR /&gt;    | eval cpu_usage = (100-pctIdle) &lt;BR /&gt;    | bucket _time span=1hour &lt;BR /&gt;    | chart p99(cpu_usage) &lt;STRONG&gt;as usage&lt;/STRONG&gt; by _time, cluster&amp;lt;/query&amp;gt;&lt;BR /&gt;  &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;&lt;BR /&gt;  &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;BR /&gt;  &amp;lt;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;&lt;BR /&gt;&amp;lt;/search&amp;gt;&lt;BR /&gt;&amp;lt;drilldown&amp;gt;&lt;BR /&gt;  &amp;lt;set token="TEST"&amp;gt;&lt;STRONG&gt;$row.usage$&lt;/STRONG&gt;&amp;lt;/set&amp;gt;&lt;BR /&gt;  &amp;lt;link target="_blank"&amp;gt;/ $row.cluster$ - &lt;STRONG&gt;$row.usage$&lt;/STRONG&gt; - $TEST$&amp;lt;/link&amp;gt;&lt;BR /&gt;&amp;lt;/drilldown&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;Still, the only thing that yields any results at all are $click.____$ values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't know if it's relevant, but this is on Splunk 8.2.9, could there be a bug of some sort, or am I just misusing drilldowns?&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 18:51:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638695#M52227</guid>
      <dc:creator>Kreep</dc:creator>
      <dc:date>2023-04-04T18:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638705#M52228</link>
      <description>&lt;P&gt;I don't know what else to suggest.&amp;nbsp; Perhaps the $row.field$ construct doesn't work with the chart type you're using.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 19:41:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/638705#M52228</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2023-04-04T19:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Is it possible to use $row.fieldName$ in a drilldown custom URL?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/639541#M52297</link>
      <description>&lt;P&gt;It's not ideal, but I ended up resolving the issue by taking all the info crammed into $click.name2$, and splitting it and stitching back it together in the link section using tokens.&lt;/P&gt;&lt;P&gt;In case anybody stumbles across this down the road, here's how it ended up looking:&lt;/P&gt;&lt;PRE&gt;&lt;BR /&gt;&amp;lt;query&amp;gt;index="*prd-infra" sourcetype="infra_cpu" &lt;BR /&gt;| rex field=host "(?&amp;amp;lt;cust&amp;amp;gt;[^-]+)-(?&amp;amp;lt;env&amp;amp;gt;[^-]+)-(?&amp;amp;lt;inst&amp;amp;gt;[^-]+)-(?&amp;amp;lt;app&amp;amp;gt;[^-]+)-(?&amp;amp;lt;node&amp;amp;gt;[^0-9]+)-\d+" &lt;BR /&gt;| rex field=host "[^0-9]*(?&amp;amp;lt;stack_num&amp;amp;gt;[0-9]+)-"&lt;BR /&gt;| strcat cust "/" env "/" inst "/" app"/" node cluster&lt;BR /&gt;| eval cpu_usage = (100-pctIdle) &lt;BR /&gt;| bucket _time span=1hour &lt;BR /&gt;| chart p99(cpu_usage) as usage by _time, cluster&amp;lt;/query&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&amp;lt;drilldown&amp;gt;&lt;BR /&gt;  &amp;lt;eval token="cust"&amp;gt;mvindex(split($cluster$,"/"),0)&amp;lt;/eval&amp;gt;&lt;BR /&gt;  &amp;lt;eval token="env"&amp;gt;mvindex(split($cluster$,"/"),1)&amp;lt;/eval&amp;gt;&lt;BR /&gt;  &amp;lt;eval token="inst"&amp;gt;mvindex(split($cluster$,"/"),2)&amp;lt;/eval&amp;gt;&lt;BR /&gt;  &amp;lt;eval token="app"&amp;gt;mvindex(split($cluster$,"/"),3)&amp;lt;/eval&amp;gt;&lt;BR /&gt;  &amp;lt;eval token="node"&amp;gt;mvindex(split($cluster$,"/"),4)&amp;lt;/eval&amp;gt;&lt;BR /&gt;  &amp;lt;link target="_blank"&amp;gt;... cluster=$cust$-$env$-$inst$-$app$&amp;amp;amp; ...&amp;lt;/link&amp;gt;&lt;BR /&gt;&amp;lt;/drilldown&amp;gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I appreciate all the help in trying to troubleshoot this!&lt;/P&gt;</description>
      <pubDate>Tue, 11 Apr 2023 18:52:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Is-it-possible-to-use-row-fieldName-in-a-drilldown-custom-URL/m-p/639541#M52297</guid>
      <dc:creator>Kreep</dc:creator>
      <dc:date>2023-04-11T18:52:27Z</dc:date>
    </item>
  </channel>
</rss>

