<?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: Referencing SPL variable in simple xml in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712317#M58263</link>
    <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/276742"&gt;@splunker011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try use this code:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;table&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;title&amp;gt;TABLESPACE_FREESPACE&amp;lt;/title&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;search&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;query&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;index="database" source="tables"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval BYTES_FREE = replace(BYTES_FREE, ",", "")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval BYTES_USED = replace(BYTES_USED, ",", "")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_USED = BYTES_USED / (1024 * 1024 * 1024)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_FREE = BYTES_FREE / (1024 * 1024 * 1024)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_USED = floor(GB_USED * 100) / 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_FREE = floor(GB_FREE * 100) / 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval CALCULATED_PERCENT_FREE = (GB_FREE / (GB_USED + GB_FREE)) * 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval CALCULATED_PERCENT_FREE = floor(CALCULATED_PERCENT_FREE * 10) / 10&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| rename TABLESPACE_NAME as "Tablespace", GB_USED as "Used Space (Gb)", GB_FREE as "Free Space (Gb)", PERCENT_FREE as "Free Space (%)"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| table "Tablespace" "Used Space (Gb)" "Free Space (Gb)" "Free Space (%)"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/query&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/search&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="count"&amp;gt;21&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;!-- Use rangeMap to define colors based on "Free Space (%)" --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;format type="color" field="Free Space (%)"&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;rangeMap&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="0" max="20" color="#FF0000"/&amp;gt; &amp;lt;!-- Red for low free space --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="20" max="50" color="#FFA500"/&amp;gt; &amp;lt;!-- Orange for medium --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="50" max="100" color="#00FF00"/&amp;gt; &amp;lt;!-- Green for high free space --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/rangeMap&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/format&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/table&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day,&lt;/P&gt;</description>
    <pubDate>Sun, 23 Feb 2025 20:52:42 GMT</pubDate>
    <dc:creator>Cievo</dc:creator>
    <dc:date>2025-02-23T20:52:42Z</dc:date>
    <item>
      <title>Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712315#M58262</link>
      <description>&lt;P&gt;Hi I am currently trying to reference an SPL variable in simple xml for a table panel in a dashboard. I would like each field value for the "Free space (%)" field to change depending on what the "color" variable in the query evaluates to(green or red).&lt;/P&gt;&lt;P&gt;I found one method online which mentions creating a token in a set tag and then referencing in the colorpallete tag but I haven't been able to get it working:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;table&amp;gt;
  &amp;lt;title&amp;gt;TABLESPACE_FREESPACE&amp;lt;/title&amp;gt;
  &amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;
      index="database" source="tables"
      | eval BYTES_FREE = replace(BYTES_FREE, ",", "")
      | eval BYTES_USED = replace(BYTES_USED, ",", "")
      | eval GB_USED = BYTES_USED / (1024 * 1024 * 1024)
      | eval GB_FREE = BYTES_FREE / (1024 * 1024 * 1024)
      | eval GB_USED = floor(GB_USED * 100) / 100
      | eval GB_FREE = floor(GB_FREE * 100) / 100
      | eval CALCULATED_PERCENT_FREE = (GB_FREE / (GB_USED + GB_FREE)) * 100
      | eval CALCULATED_PERCENT_FREE = floor(CALCULATED_PERCENT_FREE * 10) / 10
      | eval color = if(CALCULATED_PERCENT_FREE &amp;gt;= PERCENT_FREE, "#00FF00", "#FF0000")
      | rename TABLESPACE_NAME as "Tablespace", GB_USED as "Used Space (Gb)", GB_FREE as "Free Space (Gb)", PERCENT_FREE as "Free Space (%)"
      | table "Tablespace" "Used Space (Gb)" "Free Space (Gb)" "Free Space (%)"
    &amp;lt;/query&amp;gt;
    &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
    &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
    &amp;lt;done&amp;gt;
      &amp;lt;set token="color"&amp;gt;$result.color$&amp;lt;/set&amp;gt;
    &amp;lt;/done&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;option name="count"&amp;gt;21&amp;lt;/option&amp;gt;
  &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
  &amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;
  &amp;lt;format type="color" field="Free Space (%)"&amp;gt;
    &amp;lt;colorPalette type="expression"&amp;gt;$color$&amp;lt;/colorPalette&amp;gt;
  &amp;lt;/format&amp;gt;
&amp;lt;/table&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;Any help would be appreciated, thanks &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2025 19:12:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712315#M58262</guid>
      <dc:creator>splunker011</dc:creator>
      <dc:date>2025-02-23T19:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712317#M58263</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/276742"&gt;@splunker011&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try use this code:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;lt;table&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;title&amp;gt;TABLESPACE_FREESPACE&amp;lt;/title&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;search&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;query&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;index="database" source="tables"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval BYTES_FREE = replace(BYTES_FREE, ",", "")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval BYTES_USED = replace(BYTES_USED, ",", "")&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_USED = BYTES_USED / (1024 * 1024 * 1024)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_FREE = BYTES_FREE / (1024 * 1024 * 1024)&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_USED = floor(GB_USED * 100) / 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval GB_FREE = floor(GB_FREE * 100) / 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval CALCULATED_PERCENT_FREE = (GB_FREE / (GB_USED + GB_FREE)) * 100&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| eval CALCULATED_PERCENT_FREE = floor(CALCULATED_PERCENT_FREE * 10) / 10&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| rename TABLESPACE_NAME as "Tablespace", GB_USED as "Used Space (Gb)", GB_FREE as "Free Space (Gb)", PERCENT_FREE as "Free Space (%)"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;| table "Tablespace" "Used Space (Gb)" "Free Space (Gb)" "Free Space (%)"&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/query&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/search&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="count"&amp;gt;21&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;!-- Use rangeMap to define colors based on "Free Space (%)" --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;format type="color" field="Free Space (%)"&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;rangeMap&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="0" max="20" color="#FF0000"/&amp;gt; &amp;lt;!-- Red for low free space --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="20" max="50" color="#FFA500"/&amp;gt; &amp;lt;!-- Orange for medium --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;range min="50" max="100" color="#00FF00"/&amp;gt; &amp;lt;!-- Green for high free space --&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/rangeMap&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/format&amp;gt;&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;&amp;lt;/table&amp;gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a nice day,&lt;/P&gt;</description>
      <pubDate>Sun, 23 Feb 2025 20:52:42 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712317#M58263</guid>
      <dc:creator>Cievo</dc:creator>
      <dc:date>2025-02-23T20:52:42Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712321#M58264</link>
      <description>&lt;P&gt;color isn't listed in the final table command of your search so it doesn't appear in the final result set.&lt;/P&gt;&lt;P&gt;If you want a field that isn't displayed in your table, start the field name with and underscore e.g. _color and reference that in the done handler.&lt;/P&gt;&lt;P&gt;Try something like this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;table&amp;gt;
  &amp;lt;title&amp;gt;TABLESPACE_FREESPACE&amp;lt;/title&amp;gt;
  &amp;lt;search&amp;gt;
    &amp;lt;query&amp;gt;
      index="database" source="tables"
      | eval BYTES_FREE = replace(BYTES_FREE, ",", "")
      | eval BYTES_USED = replace(BYTES_USED, ",", "")
      | eval GB_USED = BYTES_USED / (1024 * 1024 * 1024)
      | eval GB_FREE = BYTES_FREE / (1024 * 1024 * 1024)
      | eval GB_USED = floor(GB_USED * 100) / 100
      | eval GB_FREE = floor(GB_FREE * 100) / 100
      | eval CALCULATED_PERCENT_FREE = (GB_FREE / (GB_USED + GB_FREE)) * 100
      | eval CALCULATED_PERCENT_FREE = floor(CALCULATED_PERCENT_FREE * 10) / 10
      | eval _color = if(CALCULATED_PERCENT_FREE &amp;gt;= PERCENT_FREE, "#00FF00", "#FF0000")
      | rename TABLESPACE_NAME as "Tablespace", GB_USED as "Used Space (Gb)", GB_FREE as "Free Space (Gb)", PERCENT_FREE as "Free Space (%)"
      | table "Tablespace" "Used Space (Gb)" "Free Space (Gb)" "Free Space (%)" _color
    &amp;lt;/query&amp;gt;
    &amp;lt;earliest&amp;gt;-24h@h&amp;lt;/earliest&amp;gt;
    &amp;lt;latest&amp;gt;now&amp;lt;/latest&amp;gt;
    &amp;lt;done&amp;gt;
      &amp;lt;set token="color"&amp;gt;$result._color$&amp;lt;/set&amp;gt;
    &amp;lt;/done&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;option name="count"&amp;gt;21&amp;lt;/option&amp;gt;
  &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
  &amp;lt;option name="wrap"&amp;gt;false&amp;lt;/option&amp;gt;
  &amp;lt;format type="color" field="Free Space (%)"&amp;gt;
    &amp;lt;colorPalette type="expression"&amp;gt;$color|s$&amp;lt;/colorPalette&amp;gt;
  &amp;lt;/format&amp;gt;
&amp;lt;/table&amp;gt;&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;</description>
      <pubDate>Mon, 24 Feb 2025 23:47:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712321#M58264</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-24T23:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712396#M58269</link>
      <description>&lt;P&gt;Hi ITWhisperer,&lt;/P&gt;&lt;P&gt;Its still not coloring the cells unfortunately. I've tried your suggestion and also modified it to try to get it to work. I noticed&amp;nbsp;that you combined the last two fields to create a single column:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| table ... "Free Space (%) _color"&lt;/LI-CODE&gt;&lt;P&gt;Was that intentional? I tried making them separate fields in the table command but that didn't work either:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| table ... "Free Space (%)" "_color"&lt;/LI-CODE&gt;&lt;P&gt;Also, is the method by which I'm selecting the "color/_color" variable in the done handler and then referencing it in the &amp;lt;colorpallete&amp;gt; tag correct?&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I hardcode a value into the &amp;lt;colorpallete&amp;gt; tag it works fine but I need it to store the value of "color/_color"&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 19:51:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712396#M58269</guid>
      <dc:creator>splunker011</dc:creator>
      <dc:date>2025-02-24T19:51:28Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712400#M58271</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Cievo,&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Is it possible to have a different threshold for each field value? "PERCENT_FREE" in the query is actually a static value/threshold which is not calculated from "GB_USED" and "GB_FREE". "&lt;EM&gt;CALCULATED_PERCENT_FREE&lt;/EM&gt;" is the calculated value.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;So I would like each cell in the&amp;nbsp;&lt;EM&gt;"Free Space (%)"&amp;nbsp; &lt;/EM&gt;column to change color according to:&lt;BR /&gt;&lt;BR /&gt;If&amp;nbsp;&amp;nbsp;&lt;EM&gt;CALCULATED_PERCENT_FREE &amp;gt;=&amp;nbsp; PERCENT_FREE -&amp;gt;&amp;nbsp;&amp;nbsp;&lt;/EM&gt;Cell goes green&lt;/P&gt;&lt;P&gt;If&amp;nbsp;&lt;EM&gt;CALCULATED_PERCENT_FREE =&amp;nbsp; PERCENT_FREE - 1&amp;nbsp; -&amp;gt;&amp;nbsp;&lt;/EM&gt;Cell goes amber&lt;BR /&gt;If&amp;nbsp;&lt;EM&gt;CALCULATED_PERCENT_FREE &amp;lt; PERCENT_FREE - 1 -&amp;gt;&lt;/EM&gt;&amp;nbsp;Cell goes red&lt;BR /&gt;&lt;BR /&gt;(The original query did not contain the amber clause but I have planned to put it in eventually when I get the functionality working)&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 20:10:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712400#M58271</guid>
      <dc:creator>splunker011</dc:creator>
      <dc:date>2025-02-24T20:10:34Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712404#M58272</link>
      <description>&lt;P&gt;You are right, it should have been&lt;/P&gt;&lt;PRE&gt;| table ... "Free Space (%)" "_color"&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;You also need to make sure the token is quoted&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;&amp;lt;colorPalette type="expression"&amp;gt;$color|s$&amp;lt;/colorPalette&amp;gt;&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;See updated solution&lt;/P&gt;</description>
      <pubDate>Mon, 24 Feb 2025 23:48:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712404#M58272</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-02-24T23:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Referencing SPL variable in simple xml</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712452#M58274</link>
      <description>&lt;P&gt;Sweet, its storing the color in &lt;EM&gt;$color|s$&lt;/EM&gt;&amp;nbsp;and displaying it in the "Free Space (%)" column cells now which is what I need.&lt;/P&gt;&lt;P&gt;But it only evaluates for the first color value in the column not for each individual field value. So the whole column is a single color.&lt;/P&gt;&lt;P&gt;Is there a way of making it evaluate for each field value?&lt;/P&gt;</description>
      <pubDate>Tue, 25 Feb 2025 12:39:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Referencing-SPL-variable-in-simple-xml/m-p/712452#M58274</guid>
      <dc:creator>splunker011</dc:creator>
      <dc:date>2025-02-25T12:39:41Z</dc:date>
    </item>
  </channel>
</rss>

