<?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: Browser type Display issues with Useragent in Security</title>
    <link>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/515599#M11727</link>
    <description>&lt;P&gt;When i use this to my splunk script, it gives all data to "Other". Firefox=0, Chrome=0 IE=0&lt;/P&gt;&lt;P&gt;Why is that? please guide me thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=apache hostdomain=sube.garantibbva.com.tr (uri="/isube/login/pinverify*" OR uri="/isube/login/login/smspinverify*" OR uri="/isube/login/mobiletokenverify*") | stats count(eval(match(User_Agent, "Firefox"))) as "Firefox", count(eval(match(User_Agent, "Chrome"))) as "Chrome", count(eval(match(User_Agent, "Safari"))) as "Safari", count(eval(match(User_Agent, "MSIE"))) as "IE", count(eval(match(User_Agent, "Trident"))) as "Trident", count(eval(NOT match(User_Agent, "Chrome|Firefox|Safari|MSIE|Trident"))) as "Other" | transpose | sort by User_Agent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="shared-page"&gt;&lt;DIV class="main-section-body"&gt;&lt;DIV class="search"&gt;&lt;DIV class="search-results"&gt;&lt;DIV class="tab-content"&gt;&lt;DIV class="tab-pane search-results-statisticspane"&gt;&lt;DIV class="shared-reportvisualizer"&gt;&lt;DIV class="viz-controller"&gt;&lt;DIV class="facets-container"&gt;&lt;DIV class="viz-panel  viz-facet-size-medium"&gt;&lt;DIV class="lazy-view-container lazy-results-table shared-resultstable-lazyresultstable"&gt;&lt;DIV class="shared-resultstabledrilldown results-table"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sat, 22 Aug 2020 19:24:25 GMT</pubDate>
    <dc:creator>cangur</dc:creator>
    <dc:date>2020-08-22T19:24:25Z</dc:date>
    <item>
      <title>Browser type Display issues with Useragent</title>
      <link>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192549#M5663</link>
      <description>&lt;P&gt;I have a query which is giving me different types of browser stats but when I try to display that in a pie chart it shows only one of those browsers as overall&lt;/P&gt;

&lt;P&gt;index = "cc_web" sourcetype = * | stats count(eval(match(User_Agent, "Firefox"))) as "Firefox", count(eval(match(User_Agent, "Chrome"))) as "Chrome", count(eval(match(User_Agent, "Safari"))) as "Safari", count(eval(match(User_Agent, "MSIE"))) as "IE", count(eval(match(User_Agent, "Trident"))) as "Trident", count(eval(NOT match(User_Agent, "Chrome|Firefox|Safari|MSIE|Trident"))) as "Other" | sort by User_Agent&lt;/P&gt;

&lt;P&gt;If I display using Bar chart it shows firefox/firefox firefox chrome, firefox IE so on&lt;BR /&gt;
if I display using Pie chart it shows only first of the browser matched&lt;/P&gt;

&lt;P&gt;Please let me knw what is the best possible way to display the browsers.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 19:56:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192549#M5663</guid>
      <dc:creator>puneetkharband1</dc:creator>
      <dc:date>2020-09-28T19:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Browser type Display issues with Useragent</title>
      <link>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192550#M5664</link>
      <description>&lt;P&gt;When you invoke multiple count commands you are creating multiple columns in the output table i.e. multiple data series and a pie chart can use only a single data series which is why only the first browser is showing up in the chart.&lt;/P&gt;

&lt;P&gt;You need to add a transpose the command before sorting for it to become a single data series which can be used for graphing.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;index = "cc_web" sourcetype = * | stats count(eval(match(User_Agent, "Firefox"))) as "Firefox", count(eval(match(User_Agent, "Chrome"))) as "Chrome", count(eval(match(User_Agent, "Safari"))) as "Safari", count(eval(match(User_Agent, "MSIE"))) as "IE", count(eval(match(User_Agent, "Trident"))) as "Trident", count(eval(NOT match(User_Agent, "Chrome|Firefox|Safari|MSIE|Trident"))) as "Other" | transpose | sort by User_Agent
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 May 2015 00:04:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192550#M5664</guid>
      <dc:creator>ramdaspr</dc:creator>
      <dc:date>2015-05-12T00:04:50Z</dc:date>
    </item>
    <item>
      <title>Re: Browser type Display issues with Useragent</title>
      <link>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192551#M5665</link>
      <description>&lt;P&gt;I like this as a simple, basic check to identify the Browser Type without too much complexity.&lt;/P&gt;

&lt;P&gt;Ideally, it would be nice to parse out specifics, but starting with something basic does answer the mail on this question.&lt;/P&gt;</description>
      <pubDate>Mon, 30 Sep 2019 22:14:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/192551#M5665</guid>
      <dc:creator>justdan23</dc:creator>
      <dc:date>2019-09-30T22:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Browser type Display issues with Useragent</title>
      <link>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/515599#M11727</link>
      <description>&lt;P&gt;When i use this to my splunk script, it gives all data to "Other". Firefox=0, Chrome=0 IE=0&lt;/P&gt;&lt;P&gt;Why is that? please guide me thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;index=apache hostdomain=sube.garantibbva.com.tr (uri="/isube/login/pinverify*" OR uri="/isube/login/login/smspinverify*" OR uri="/isube/login/mobiletokenverify*") | stats count(eval(match(User_Agent, "Firefox"))) as "Firefox", count(eval(match(User_Agent, "Chrome"))) as "Chrome", count(eval(match(User_Agent, "Safari"))) as "Safari", count(eval(match(User_Agent, "MSIE"))) as "IE", count(eval(match(User_Agent, "Trident"))) as "Trident", count(eval(NOT match(User_Agent, "Chrome|Firefox|Safari|MSIE|Trident"))) as "Other" | transpose | sort by User_Agent&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="shared-page"&gt;&lt;DIV class="main-section-body"&gt;&lt;DIV class="search"&gt;&lt;DIV class="search-results"&gt;&lt;DIV class="tab-content"&gt;&lt;DIV class="tab-pane search-results-statisticspane"&gt;&lt;DIV class="shared-reportvisualizer"&gt;&lt;DIV class="viz-controller"&gt;&lt;DIV class="facets-container"&gt;&lt;DIV class="viz-panel  viz-facet-size-medium"&gt;&lt;DIV class="lazy-view-container lazy-results-table shared-resultstable-lazyresultstable"&gt;&lt;DIV class="shared-resultstabledrilldown results-table"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 22 Aug 2020 19:24:25 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/Browser-type-Display-issues-with-Useragent/m-p/515599#M11727</guid>
      <dc:creator>cangur</dc:creator>
      <dc:date>2020-08-22T19:24:25Z</dc:date>
    </item>
  </channel>
</rss>

