<?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: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM) in Splunk ITSI</title>
    <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484556#M1852</link>
    <description>&lt;P&gt;I love how requirements change after answers are provided.  What you want to do is not possible with one single-value panel.&lt;/P&gt;</description>
    <pubDate>Sun, 01 Mar 2020 15:00:20 GMT</pubDate>
    <dc:creator>richgalloway</dc:creator>
    <dc:date>2020-03-01T15:00:20Z</dc:date>
    <item>
      <title>i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484546#M1842</link>
      <description>&lt;P&gt;i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jun 2020 00:30:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484546#M1842</guid>
      <dc:creator>mahendra559</dc:creator>
      <dc:date>2020-06-07T00:30:27Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484547#M1843</link>
      <description>&lt;P&gt;What I've done in the past is combine multiple fields (usually just two) into a single field using the &lt;CODE&gt;.&lt;/CODE&gt; operator.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;... | eval foo = bar . ":" . baz
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 29 Feb 2020 13:30:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484547#M1843</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-02-29T13:30:45Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484548#M1844</link>
      <description>&lt;P&gt;Can you please share more details on the requirement.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Feb 2020 16:25:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484548#M1844</guid>
      <dc:creator>sumanssah</dc:creator>
      <dc:date>2020-02-29T16:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484549#M1845</link>
      <description>&lt;P&gt;Hi @mahendra559,&lt;BR /&gt;
you should try to use a Poste Process Search to have the results you want and to display in different single panels, see the below example:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;dashboard&amp;gt;
  &amp;lt;label&amp;gt;Multi single panel&amp;lt;/label&amp;gt;
  &amp;lt;search id="my_search"&amp;gt;
    &amp;lt;query&amp;gt;
      | makeresults 
      | eval CPU="2", RAM="32GB", disk="1TB"
    &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;sampleRatio&amp;gt;1&amp;lt;/sampleRatio&amp;gt;
  &amp;lt;/search&amp;gt;
  &amp;lt;row&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;CPU&amp;lt;/title&amp;gt;
        &amp;lt;search base="my_search"&amp;gt;
          &amp;lt;query&amp;gt;
            | table CPU 
          &amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;RAM&amp;lt;/title&amp;gt;
        &amp;lt;search base="my_search"&amp;gt;
          &amp;lt;query&amp;gt;
            | table RAM 
          &amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
    &amp;lt;panel&amp;gt;
      &amp;lt;single&amp;gt;
        &amp;lt;title&amp;gt;Disk&amp;lt;/title&amp;gt;
        &amp;lt;search base="my_search"&amp;gt;
          &amp;lt;query&amp;gt;
            | table disk 
          &amp;lt;/query&amp;gt;
        &amp;lt;/search&amp;gt;
        &amp;lt;option name="drilldown"&amp;gt;none&amp;lt;/option&amp;gt;
      &amp;lt;/single&amp;gt;
    &amp;lt;/panel&amp;gt;
  &amp;lt;/row&amp;gt;
&amp;lt;/dashboard&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Ciao.&lt;BR /&gt;
Giuseppe&lt;/P&gt;</description>
      <pubDate>Sat, 29 Feb 2020 16:42:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484549#M1845</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2020-02-29T16:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484550#M1846</link>
      <description>&lt;P&gt;This is done with the &lt;CODE&gt;Trellis&lt;/CODE&gt; feature:&lt;BR /&gt;
&lt;A href="https://docs.splunk.com/Documentation/Splunk/latest/Viz/TrellisView"&gt;https://docs.splunk.com/Documentation/Splunk/latest/Viz/TrellisView&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Feb 2020 23:04:47 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484550#M1846</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-02-29T23:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484551#M1847</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;Env perc
CPU 80
Disk_Space  90
RAM 20
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;you should make table.&lt;BR /&gt;
after that,&lt;BR /&gt;
&lt;CODE&gt;| stats values(*) as * by Env&lt;/CODE&gt;&lt;BR /&gt;
Visualization &amp;gt; Single Value with Trellis&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 01:01:29 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484551#M1847</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-03-01T01:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484552#M1848</link>
      <description>&lt;P&gt;these are metric logs i need cpu ,ram,disk space metric logs  and all these 3 names in one single value panel with colors and percentage&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 14:25:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484552#M1848</guid>
      <dc:creator>mahendra559</dc:creator>
      <dc:date>2020-03-01T14:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484553#M1849</link>
      <description>&lt;P&gt;these are metric logs i need cpu ,ram,disk space metric logs  and all these 3 names in one single value panel with colors and percentage&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 14:26:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484553#M1849</guid>
      <dc:creator>mahendra559</dc:creator>
      <dc:date>2020-03-01T14:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484554#M1850</link>
      <description>&lt;P&gt;these are metric logs i need cpu ,ram,disk space metric logs  and all these 3 names in one single value panel with colors and percentage&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 14:26:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484554#M1850</guid>
      <dc:creator>mahendra559</dc:creator>
      <dc:date>2020-03-01T14:26:51Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484555#M1851</link>
      <description>&lt;P&gt;these are metric logs i need cpu ,ram,disk space metric logs  and all these 3 names in one single value panel with colors and percentage&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 14:27:03 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484555#M1851</guid>
      <dc:creator>mahendra559</dc:creator>
      <dc:date>2020-03-01T14:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484556#M1852</link>
      <description>&lt;P&gt;I love how requirements change after answers are provided.  What you want to do is not possible with one single-value panel.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 15:00:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484556#M1852</guid>
      <dc:creator>richgalloway</dc:creator>
      <dc:date>2020-03-01T15:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484557#M1853</link>
      <description>&lt;P&gt;That is EXACTLY what &lt;CODE&gt;trellis&lt;/CODE&gt; does. Do your homework.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 15:12:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484557#M1853</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-03-01T15:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484558#M1854</link>
      <description>&lt;P&gt;Have you try this? How is it?&lt;BR /&gt;
&lt;CODE&gt;all these 3 names in one single value panel with colors and percentage&lt;/CODE&gt;&lt;BR /&gt;
you want three but single. I think single means one, isn't it?&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 20:45:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484558#M1854</guid>
      <dc:creator>to4kawa</dc:creator>
      <dc:date>2020-03-01T20:45:21Z</dc:date>
    </item>
    <item>
      <title>Re: i want to display multiple fields in single value display, how to display multiple fields in single value display panal (CPU,Disk Space,RAM)</title>
      <link>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484559#M1855</link>
      <description>&lt;P&gt;Trellis is the only native way to do this: 1 panel but multiple related visualizations in that 1 panel.&lt;/P&gt;</description>
      <pubDate>Sun, 01 Mar 2020 21:13:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-ITSI/i-want-to-display-multiple-fields-in-single-value-display-how-to/m-p/484559#M1855</guid>
      <dc:creator>woodcock</dc:creator>
      <dc:date>2020-03-01T21:13:36Z</dc:date>
    </item>
  </channel>
</rss>

