<?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: How i can show the color for different values for multi panels in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741323#M58377</link>
    <description>&lt;P&gt;Thank you very much for your quick response!&lt;BR /&gt;yes, Need visualization based on timestatus wether it is completed,inprogress and incomplete.&lt;BR /&gt;&lt;BR /&gt;index=myindex NUM&lt;BR /&gt;| where isnull(NXT)&lt;BR /&gt;| dedup MC&lt;BR /&gt;| join NUM&lt;BR /&gt;[search index=myindex3 ID&lt;BR /&gt;| eval ID = printf("%01d",ID)&lt;BR /&gt;| rename ID as NUM&lt;BR /&gt;| stats count by NUM&lt;BR /&gt;| eval timestatus=case(count &amp;gt;5, "Complete", count == 0, "Incomplete", count &amp;gt; 0 AND count &amp;gt;= 5, "In Progress") ]&lt;BR /&gt;| search NUM = 1 | stats count AS Total&lt;BR /&gt;&lt;BR /&gt;Output is to show only total count. background "NUM" wise&amp;nbsp; we need to display the colors based on the field "timestatus"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 10 Mar 2025 14:24:55 GMT</pubDate>
    <dc:creator>Anud</dc:creator>
    <dc:date>2025-03-10T14:24:55Z</dc:date>
    <item>
      <title>How i can show the color for different values for multi panels</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741321#M58375</link>
      <description>&lt;P&gt;index=myindex&amp;nbsp;NUM&lt;BR /&gt;| where isnull(NXT)&lt;BR /&gt;| dedup MC&lt;BR /&gt;| eval lrm_time=[ search index=myindex2&lt;BR /&gt;| eventstats min(_time) as min_time&lt;BR /&gt;| where _time=min_time&lt;BR /&gt;| table min_time&lt;BR /&gt;| dedup min_time | return $min_time ]&lt;BR /&gt;| eval formatted_time = strptime(AVAIL_TS, "%Y%m%d%H%M%S")&lt;BR /&gt;| eval lrm_frmt_time = strptime(strftime(lrm_time, "%Y-%m-%d %H:%M:%S"),"%Y-%m-%d %H:%M:%S")&lt;BR /&gt;| eval final_time = if(formatted_time &amp;amp;gt; lrm_frmt_time, formatted_time, null)&lt;BR /&gt;| where isnotnull(final_time)&lt;BR /&gt;| join NUM&lt;BR /&gt;[search index=myindex3&amp;nbsp;NUM&lt;BR /&gt;| eval ID = printf("%01d",ID)&lt;BR /&gt;| rename ID as NUM&lt;BR /&gt;| stats count by NUM&lt;BR /&gt;| eval timestatus=case(count &amp;gt; 5, "Complete", count == 0, "Incomplete", count &amp;gt; 0 AND count &amp;gt;= 5, "In Progress") ]&lt;BR /&gt;| search NUM = 1 | stats count AS Total&lt;/P&gt;&lt;P&gt;Here is the query using output will come count and that value shows using single value.&lt;BR /&gt;file runs 4 times daily. I will create 4 panels show the NUM =1, 2, 3, 4 count.&lt;BR /&gt;how i can show the field timestatus output is complete, incomplete and inprogress for each panel color.&lt;BR /&gt;&lt;BR /&gt;Thanks in Advance!&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 13:28:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741321#M58375</guid>
      <dc:creator>Anud</dc:creator>
      <dc:date>2025-03-10T13:28:58Z</dc:date>
    </item>
    <item>
      <title>Re: How i can show the color for different values for multi panels</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741322#M58376</link>
      <description>&lt;P&gt;Firstly, you need a search which delivers the value you want. This search is a bit confusing. You are formatting a time field and then within the same statement parsing the result using exactly to same format string. You may as well evaluate lrm_frmt_time to lrm_time.&lt;/P&gt;&lt;P&gt;timestatus is coming from your join but you are ignoring it in your final stats command so it is thrown away.&lt;/P&gt;&lt;P&gt;You should try to avoid joins if possible, therefore, I suggest you rewrite the search (or provide a working version), or is that what you are seeking help with, as opposed to how to set the colour on a single visualisation?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 14:17:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741322#M58376</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2025-03-10T14:17:47Z</dc:date>
    </item>
    <item>
      <title>Re: How i can show the color for different values for multi panels</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741323#M58377</link>
      <description>&lt;P&gt;Thank you very much for your quick response!&lt;BR /&gt;yes, Need visualization based on timestatus wether it is completed,inprogress and incomplete.&lt;BR /&gt;&lt;BR /&gt;index=myindex NUM&lt;BR /&gt;| where isnull(NXT)&lt;BR /&gt;| dedup MC&lt;BR /&gt;| join NUM&lt;BR /&gt;[search index=myindex3 ID&lt;BR /&gt;| eval ID = printf("%01d",ID)&lt;BR /&gt;| rename ID as NUM&lt;BR /&gt;| stats count by NUM&lt;BR /&gt;| eval timestatus=case(count &amp;gt;5, "Complete", count == 0, "Incomplete", count &amp;gt; 0 AND count &amp;gt;= 5, "In Progress") ]&lt;BR /&gt;| search NUM = 1 | stats count AS Total&lt;BR /&gt;&lt;BR /&gt;Output is to show only total count. background "NUM" wise&amp;nbsp; we need to display the colors based on the field "timestatus"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Mar 2025 14:24:55 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-i-can-show-the-color-for-different-values-for-multi-panels/m-p/741323#M58377</guid>
      <dc:creator>Anud</dc:creator>
      <dc:date>2025-03-10T14:24:55Z</dc:date>
    </item>
  </channel>
</rss>

