<?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: Splunk Dashboard to show the values in slices or any way in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677057#M55427</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; it works buts its not showing values(digits) on pie chart&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="phanikumarcs_0-1707473819507.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29321iF2141B6BE027DACC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="phanikumarcs_0-1707473819507.png" alt="phanikumarcs_0-1707473819507.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 09 Feb 2024 10:17:06 GMT</pubDate>
    <dc:creator>phanikumarcs</dc:creator>
    <dc:date>2024-02-09T10:17:06Z</dc:date>
    <item>
      <title>Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676964#M55418</link>
      <description>&lt;P&gt;Hi Team,&lt;BR /&gt;&lt;BR /&gt;I am trying to create a dashboard pie chart visualization with the spl query.&lt;BR /&gt;we have total_apps are 300, how many apps(count) are there out of this.&lt;BR /&gt;Note: why i am using "dc" here we have foo_foo_1, foo_foo_2, foo_foo_3 apps.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;|rest /services/data/indexes
|rename title as index
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)"
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)_"
|table appname, index
|stats dc(appname) as currentapps
|eval currentapps = currentapps
|eval total_apps = 300&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;from this in pie chart its showing only total_apps or currentapps not both in single pie chart&lt;BR /&gt;so what is the issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 15:07:17 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676964#M55418</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-08T15:07:17Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676966#M55419</link>
      <description>&lt;P&gt;It is not clear what result you are expecting - please can you expand your question&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 13:47:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676966#M55419</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-08T13:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676968#M55420</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; thanks for the response,&lt;BR /&gt;&lt;BR /&gt;actually, I am creating a pie chart in dashboard that will show "totalapps" count and "appname" count on pie chart in two slices.&lt;/P&gt;&lt;P&gt;where our totalapps is 300, and i am extracting appnames using rex.&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 14:32:56 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676968#M55420</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-08T14:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676978#M55421</link>
      <description>&lt;P&gt;Try something like this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|rest /services/data/indexes
|rename title as index
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)"
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)_"
|table appname, index
|stats dc(appname) as count
|eval title = "currentapps"
| append
[| makeresults
| eval count = 300
| eval title="total_apps"]
| table title count&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 08 Feb 2024 16:28:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676978#M55421</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-08T16:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676998#M55422</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; its working for me&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 19:41:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/676998#M55422</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-08T19:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677057#M55427</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; it works buts its not showing values(digits) on pie chart&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="phanikumarcs_0-1707473819507.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29321iF2141B6BE027DACC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="phanikumarcs_0-1707473819507.png" alt="phanikumarcs_0-1707473819507.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 10:17:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677057#M55427</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-09T10:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677058#M55428</link>
      <description>&lt;P&gt;Numbers show up when you hover over each segment&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 10:33:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677058#M55428</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-09T10:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677068#M55431</link>
      <description>&lt;P&gt;So where i can change the changes in the spl or xml source @&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 11:36:34 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677068#M55431</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-09T11:36:34Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677070#M55433</link>
      <description>&lt;P&gt;What changes are you expecting - this is the way pie charts work - you could consider appending the value to the title&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;|rest /services/data/indexes
|rename title as index
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)"
|rex field=index "^foo_(?&amp;lt;appname&amp;gt;.+)_"
|table appname, index
|stats dc(appname) as count
|eval title = "currentapps: ".count
| append
[| makeresults
| eval count = 300
| eval title="total_apps: ".count]
| table title count&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 11:40:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677070#M55433</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-09T11:40:47Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677073#M55434</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; i am expexting the same in the attached picture&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 12:22:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677073#M55434</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-09T12:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677074#M55435</link>
      <description>&lt;P&gt;As you can see &lt;A href="https://docs.splunk.com/Documentation/Splunk/9.2.0/Viz/ChartConfigurationReference#Pie_charts" target="_self"&gt;here&lt;/A&gt;, there are no configuration options for this feature&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 12:51:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677074#M55435</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-09T12:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677076#M55436</link>
      <description>&lt;P&gt;1) yes, this is the first approach i have take, later i posted in the community. But why its not showing the value count over chart.&lt;BR /&gt;&lt;BR /&gt;2) by the way&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp; if you have any idea please help me for this&lt;BR /&gt;&lt;A href="https://community.splunk.com/t5/All-Apps-and-Add-ons/JSON-data-unexpected-value-count/m-p/677019#M80209" target="_blank"&gt;https://community.splunk.com/t5/All-Apps-and-Add-ons/JSON-data-unexpected-value-count/m-p/677019#M80209&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;3)is it possible to remove the label name below colored where like "Mon Jan 15" to "Jan 15" like this. from UI or XML source or SPL&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="phanikumarcs_0-1707483673191.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29323i7C4772D78DACE4A7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="phanikumarcs_0-1707483673191.png" alt="phanikumarcs_0-1707483673191.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 13:02:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677076#M55436</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-09T13:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677086#M55439</link>
      <description>&lt;P&gt;1) already answered - standard pie charts don't have this feature in Splunk&lt;/P&gt;&lt;P&gt;2) responded in thread&lt;/P&gt;&lt;P&gt;3) edit your dashboard panel and change the x-axis title to none&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ITWhisperer_0-1707485340047.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/29324i6CFEFDFCB612B25B/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ITWhisperer_0-1707485340047.png" alt="ITWhisperer_0-1707485340047.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 13:29:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677086#M55439</guid>
      <dc:creator>ITWhisperer</dc:creator>
      <dc:date>2024-02-09T13:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Dashboard to show the values in slices or any way</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677154#M55449</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;for this&amp;nbsp;&lt;SPAN&gt;3) edit your dashboard panel and change the x-axis title to none&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have found the solution to this issue. I applied the following SPL code to the existing SPL, and the visualization updated automatically to reflect the changes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;|timechart span=1d count&lt;BR /&gt;|eval Date=strftime(_time, "%m/%d")&lt;BR /&gt;|table Date, count&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/225168"&gt;@ITWhisperer&lt;/a&gt;&amp;nbsp;thanks for your time...&lt;/P&gt;</description>
      <pubDate>Fri, 09 Feb 2024 17:35:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/Splunk-Dashboard-to-show-the-values-in-slices-or-any-way/m-p/677154#M55449</guid>
      <dc:creator>phanikumarcs</dc:creator>
      <dc:date>2024-02-09T17:35:58Z</dc:date>
    </item>
  </channel>
</rss>

