<?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: stats or chart by multiple columns while using visualizations in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607520#M211229</link>
    <description>&lt;P&gt;This worked great for my number display, but I can't seem to get it to work on the radial gauges like your screenshot. Did you have to do something else to get it to populate multiple gauges?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 29 Jul 2022 12:28:46 GMT</pubDate>
    <dc:creator>AK89</dc:creator>
    <dc:date>2022-07-29T12:28:46Z</dc:date>
    <item>
      <title>How to use stats or chart by multiple columns while using visualizations?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607439#M211182</link>
      <description>&lt;P&gt;Here is the sample data set:&lt;/P&gt;
&lt;TABLE width="339"&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;ENTITY_NAME&lt;/TD&gt;
&lt;TD width="118"&gt;REPLICATION_OF&lt;/TD&gt;
&lt;TD width="124"&gt;VALUE&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server1&lt;/TD&gt;
&lt;TD width="118"&gt;BackupA&lt;/TD&gt;
&lt;TD width="124"&gt;59&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server2&lt;/TD&gt;
&lt;TD width="118"&gt;BackupB&lt;/TD&gt;
&lt;TD width="124"&gt;28&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server3&lt;/TD&gt;
&lt;TD width="118"&gt;backup_noenc_h1&lt;/TD&gt;
&lt;TD width="124"&gt;54&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server3&lt;/TD&gt;
&lt;TD width="118"&gt;backup_utility_h1&lt;/TD&gt;
&lt;TD width="124"&gt;96&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server4&lt;/TD&gt;
&lt;TD width="118"&gt;backup_noenc_h2&lt;/TD&gt;
&lt;TD width="124"&gt;40&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD width="97"&gt;server4&lt;/TD&gt;
&lt;TD width="118"&gt;backup_utility_h2&lt;/TD&gt;
&lt;TD width="124"&gt;700&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to be able to use the number display visualization to display entity_name, replication_of, and latest value for each record. I've tried these:&lt;/P&gt;
&lt;P&gt;| stats latest(VALUE) by REPLICATION_OF ENTITY_NAME&lt;BR /&gt;| chart latest(VALUE) by REPLICATION_OF ENTITY_NAME&lt;BR /&gt;| chart latest(VALUE) over REPLICATION_OF by ENTITY_NAME&lt;/P&gt;
&lt;P&gt;Ultimately I want something that looks like this, but not sure if you can display three data series in a number display. If this isn't possible, what would be the best way to visualize a data set like this?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AK89_0-1659056729061.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20740iA8B7151E9B1633FA/image-size/large?v=v2&amp;amp;px=999" role="button" title="AK89_0-1659056729061.png" alt="AK89_0-1659056729061.png" /&gt;&lt;/span&gt;&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;</description>
      <pubDate>Fri, 29 Jul 2022 05:52:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607439#M211182</guid>
      <dc:creator>AK89</dc:creator>
      <dc:date>2022-07-29T05:52:14Z</dc:date>
    </item>
    <item>
      <title>Re: stats or chart by multiple columns while using visualizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607446#M211186</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-07-28 at 8.53.35 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20743i9FF70542EB048D10/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-07-28 at 8.53.35 PM.png" alt="Screen Shot 2022-07-28 at 8.53.35 PM.png" /&gt;&lt;/span&gt;If the main consideration is display, I have this really silly trick:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval label = REPLICATION_OF . " - " . ENTITY_NAME
| stats latest(VALUE) by label&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 03:56:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607446#M211186</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-07-29T03:56:47Z</dc:date>
    </item>
    <item>
      <title>Re: stats or chart by multiple columns while using visualizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607512#M211226</link>
      <description>&lt;P&gt;I thought of trying something like that last night (combining the values into one field) but couldn't get it to work. Thanks a lot, this accomplishes what I was looking for!&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 11:53:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607512#M211226</guid>
      <dc:creator>AK89</dc:creator>
      <dc:date>2022-07-29T11:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: stats or chart by multiple columns while using visualizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607520#M211229</link>
      <description>&lt;P&gt;This worked great for my number display, but I can't seem to get it to work on the radial gauges like your screenshot. Did you have to do something else to get it to populate multiple gauges?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Jul 2022 12:28:46 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607520#M211229</guid>
      <dc:creator>AK89</dc:creator>
      <dc:date>2022-07-29T12:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: stats or chart by multiple columns while using visualizations</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607595#M211259</link>
      <description>&lt;P&gt;I'm not aware of any special setting. &amp;nbsp;I'm using a 9.0.0 installation. &amp;nbsp;After the stats, Splunk visualization automatically selected "Radial Gauge". &amp;nbsp;All I did is select trellis.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-07-29 at 9.17.27 PM.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20754i2E7435964344D52E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2022-07-29 at 9.17.27 PM.png" alt="Screen Shot 2022-07-29 at 9.17.27 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;By default, radial gauge uses the "shiny" skin; another skin (style) is "minimal", like this&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2022-07-29 at 9.15.35 PM.png" style="width: 999px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/20755iD001EA92CC9A17AD/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2022-07-29 at 9.15.35 PM.png" alt="Screen Shot 2022-07-29 at 9.15.35 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 30 Jul 2022 04:27:35 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-use-stats-or-chart-by-multiple-columns-while-using/m-p/607595#M211259</guid>
      <dc:creator>yuanliu</dc:creator>
      <dc:date>2022-07-30T04:27:35Z</dc:date>
    </item>
  </channel>
</rss>

