<?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 do I take specific information from Case ()? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480160#M134582</link>
    <description>&lt;P&gt;That's great! That actually answers another question I had. &lt;/P&gt;

&lt;P&gt;From this data set, if I wanted to display just the Chrome portion, how would I go about doing that?&lt;/P&gt;</description>
    <pubDate>Fri, 08 Nov 2019 16:32:51 GMT</pubDate>
    <dc:creator>lmzheng</dc:creator>
    <dc:date>2019-11-08T16:32:51Z</dc:date>
    <item>
      <title>How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480158#M134580</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;

&lt;P&gt;I am trying to take specific information after a eval function. How would I go about taking only the Chrome information as an output?&lt;/P&gt;

&lt;P&gt;eval Browser = case(TridentVersion = 8,"Windows 10 IE", TridentVersion = 7,"IE 11", TridentVersion = 6, "IE 10", TridentVersion = 5, "IE 9", TridentVersion = 4, "IE 8", EdgeVersion &amp;gt;= 1, "Edge", FirefoxVersion &amp;gt;= 1, "Firefox", SafariVersion &amp;gt;= 1, "Safari", ChromeVersion &amp;gt;=1, "Chrome", 1=1, "Other") &lt;/P&gt;

&lt;P&gt;The reasons I'm using the eval function in the first place is to get the percentages, but I want to display each statistic in a separate panel rather than a pie chart. &lt;/P&gt;

&lt;P&gt;I used search Browser = Chrome, but it returns the string as the value instead of the number.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:06:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480158#M134580</guid>
      <dc:creator>lmzheng</dc:creator>
      <dc:date>2019-11-08T16:06:18Z</dc:date>
    </item>
    <item>
      <title>Re: How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480159#M134581</link>
      <description>&lt;P&gt;try something like this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;| eval Browser = case(TridentVersion = 8,"Windows 10 IE", TridentVersion = 7,"IE 11", TridentVersion = 6, "IE 10", TridentVersion = 5, "IE 9", TridentVersion = 4, "IE 8", EdgeVersion &amp;gt;= 1, "Edge", FirefoxVersion &amp;gt;= 1, "Firefox", SafariVersion &amp;gt;= 1, "Safari", ChromeVersion &amp;gt;=1, "Chrome", 1=1, "Other") | stats count by Browser | eventstats sum(count) as count1  | evla perc=round((count/count1)*100,2) | table Browser perc
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Then choose single value visualization and then use the trellis layout and split by Browser.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:29:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480159#M134581</guid>
      <dc:creator>mayurr98</dc:creator>
      <dc:date>2019-11-08T16:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480160#M134582</link>
      <description>&lt;P&gt;That's great! That actually answers another question I had. &lt;/P&gt;

&lt;P&gt;From this data set, if I wanted to display just the Chrome portion, how would I go about doing that?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:32:51 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480160#M134582</guid>
      <dc:creator>lmzheng</dc:creator>
      <dc:date>2019-11-08T16:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480161#M134583</link>
      <description>&lt;P&gt;Basically, how do I return just the total? Because when I try visualizing, it always visualizes the word instead of the number.&lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:40:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480161#M134583</guid>
      <dc:creator>lmzheng</dc:creator>
      <dc:date>2019-11-08T16:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480162#M134584</link>
      <description>&lt;P&gt;Found it! I used the list command to display the y values only. &lt;/P&gt;</description>
      <pubDate>Fri, 08 Nov 2019 16:50:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480162#M134584</guid>
      <dc:creator>lmzheng</dc:creator>
      <dc:date>2019-11-08T16:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: How do I take specific information from Case ()?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480163#M134585</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;

&lt;P&gt;From this data set, if I wanted to display just the Chrome portion, how would I go about doing that?&lt;BR /&gt;
Ans. You can use trellis option for respective panel to display them individually.&lt;/P&gt;

&lt;P&gt;Regards,&lt;BR /&gt;
Tejas&lt;/P&gt;</description>
      <pubDate>Sun, 10 Nov 2019 14:22:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-take-specific-information-from-Case/m-p/480163#M134585</guid>
      <dc:creator>tbavarva</dc:creator>
      <dc:date>2019-11-10T14:22:33Z</dc:date>
    </item>
  </channel>
</rss>

