<?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 Group by Multiple - TimeChart Question in Reporting</title>
    <link>https://community.splunk.com/t5/Reporting/Group-by-Multiple-TimeChart-Question/m-p/504204#M8104</link>
    <description>&lt;P&gt;Greetings---&lt;/P&gt;&lt;P&gt;I have Wireless logs that I am attempting to create a Timechart, splitting by Area, and displaying stacked by AccessPoint.&lt;BR /&gt;&lt;BR /&gt;Here is my base search:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="wlan" EventType=Authentication
| rex field=AP (?&amp;lt;=AP-)(?&amp;lt;area&amp;gt;.*?)(?=-)
| eval area = upper(area)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideally, I would like to create a Trellis of ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| timechart dc(Mac) AS count by AP&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;grouped by the field &lt;STRONG&gt;area&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;I see loads of examples on answers... this is the closest that I get:&lt;BR /&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/Timechart-count-by-ip-by-fw-name-over-time-with-trellis/m-p/498737" target="_blank" rel="noopener"&gt;https://community.splunk.com/t5/Splunk-Search/Timechart-count-by-ip-by-fw-name-over-time-with-trellis/m-p/498737&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So with this, I get..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="wlan" EventType=Authentication
| rex field=AP (?&amp;lt;=AP-)(?&amp;lt;area&amp;gt;.*?)(?=-)
| eval area = upper(area)
| bucket span=30m _time 
| stats dc(Mac) AS count by _time area AP
| eval {AP}=count
| fields - AP count&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which is VERY close..&lt;BR /&gt;My trellis is grouped by &lt;STRONG&gt;area&lt;/STRONG&gt;, and it displays my bar chart over time.&lt;BR /&gt;However, it 1) does not support stacking, and 2) does not seem to filter the legend...&amp;nbsp;&lt;BR /&gt;in my case, I have around 10 areas and 160 APs., and each chart in the trellis by area displays correctly, but it also displays the all 160 APs in the legend space per chart.&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 12 Jun 2020 16:42:04 GMT</pubDate>
    <dc:creator>richardphung</dc:creator>
    <dc:date>2020-06-12T16:42:04Z</dc:date>
    <item>
      <title>Group by Multiple - TimeChart Question</title>
      <link>https://community.splunk.com/t5/Reporting/Group-by-Multiple-TimeChart-Question/m-p/504204#M8104</link>
      <description>&lt;P&gt;Greetings---&lt;/P&gt;&lt;P&gt;I have Wireless logs that I am attempting to create a Timechart, splitting by Area, and displaying stacked by AccessPoint.&lt;BR /&gt;&lt;BR /&gt;Here is my base search:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="wlan" EventType=Authentication
| rex field=AP (?&amp;lt;=AP-)(?&amp;lt;area&amp;gt;.*?)(?=-)
| eval area = upper(area)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Ideally, I would like to create a Trellis of ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| timechart dc(Mac) AS count by AP&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;grouped by the field &lt;STRONG&gt;area&lt;/STRONG&gt;.&lt;BR /&gt;&lt;BR /&gt;I see loads of examples on answers... this is the closest that I get:&lt;BR /&gt;&lt;A href="https://community.splunk.com/t5/Splunk-Search/Timechart-count-by-ip-by-fw-name-over-time-with-trellis/m-p/498737" target="_blank" rel="noopener"&gt;https://community.splunk.com/t5/Splunk-Search/Timechart-count-by-ip-by-fw-name-over-time-with-trellis/m-p/498737&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;So with this, I get..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index="wlan" EventType=Authentication
| rex field=AP (?&amp;lt;=AP-)(?&amp;lt;area&amp;gt;.*?)(?=-)
| eval area = upper(area)
| bucket span=30m _time 
| stats dc(Mac) AS count by _time area AP
| eval {AP}=count
| fields - AP count&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Which is VERY close..&lt;BR /&gt;My trellis is grouped by &lt;STRONG&gt;area&lt;/STRONG&gt;, and it displays my bar chart over time.&lt;BR /&gt;However, it 1) does not support stacking, and 2) does not seem to filter the legend...&amp;nbsp;&lt;BR /&gt;in my case, I have around 10 areas and 160 APs., and each chart in the trellis by area displays correctly, but it also displays the all 160 APs in the legend space per chart.&lt;BR /&gt;&lt;BR /&gt;Any help is appreciated.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Jun 2020 16:42:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Reporting/Group-by-Multiple-TimeChart-Question/m-p/504204#M8104</guid>
      <dc:creator>richardphung</dc:creator>
      <dc:date>2020-06-12T16:42:04Z</dc:date>
    </item>
  </channel>
</rss>

