<?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 How do I create a line graph showing traffic over time? in Dashboards &amp; Visualizations</title>
    <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297004#M40401</link>
    <description>&lt;P&gt;I am attempting to create a visualization showing outgoing traffic from my firewall showing the destination IPs and ports. I'm limiting the time range to 15 minutes or less. The goal is to get a picture of the kind of traffic  going out of the network and where.&lt;/P&gt;

&lt;P&gt;I've attempted to use Pivot but I'm not sure what to use as filters to get the desired output. Any suggestions?&lt;/P&gt;</description>
    <pubDate>Fri, 17 Nov 2017 12:27:58 GMT</pubDate>
    <dc:creator>geoffmx</dc:creator>
    <dc:date>2017-11-17T12:27:58Z</dc:date>
    <item>
      <title>How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297004#M40401</link>
      <description>&lt;P&gt;I am attempting to create a visualization showing outgoing traffic from my firewall showing the destination IPs and ports. I'm limiting the time range to 15 minutes or less. The goal is to get a picture of the kind of traffic  going out of the network and where.&lt;/P&gt;

&lt;P&gt;I've attempted to use Pivot but I'm not sure what to use as filters to get the desired output. Any suggestions?&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 12:27:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297004#M40401</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2017-11-17T12:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297005#M40402</link>
      <description>&lt;P&gt;Try one of the following custom visualizations:&lt;/P&gt;

&lt;P&gt;Network Topology - Custom Visualization: &lt;A href="https://splunkbase.splunk.com/app/3762/"&gt;https://splunkbase.splunk.com/app/3762/&lt;/A&gt;&lt;BR /&gt;
Afterglow App - &lt;A href="https://splunkbase.splunk.com/app/277/"&gt;https://splunkbase.splunk.com/app/277/&lt;/A&gt;&lt;BR /&gt;
Sankey Custom Visualization - &lt;A href="https://splunkbase.splunk.com/app/3112/"&gt;https://splunkbase.splunk.com/app/3112/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 17:15:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297005#M40402</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-17T17:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297006#M40403</link>
      <description>&lt;P&gt;Thanks niketnilay! It may take a while before I can get approvals to download and test out apps in my splunk cloud instance. So I have to ask... does any of these sort by ports? They seem to show node-to-node visualization. I'd like to see what traffic is going out to destination port 22, 25, 53, 80,  and so on.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 18:34:13 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297006#M40403</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2017-11-17T18:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297007#M40404</link>
      <description>&lt;P&gt;I have not used &lt;CODE&gt;Afterglow&lt;/CODE&gt; myself, but the other two I can list the query output expectations&lt;/P&gt;

&lt;P&gt;Network Topology - Custom Visualization, expects 5 columns which could be &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt; &amp;lt;YourBaseSearch&amp;gt;
| table sourceHost sourcePort targetHost targetPort linkType
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;&lt;CODE&gt;Sankey Custom Visualization&lt;/CODE&gt; expects stats like count, avg(bytes) for source and destination combination. It can have a circular dependency.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;&amp;lt;YourBaseSearch&amp;gt;
| stats count, avg(bytes) by source destintion
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;If you have source and destination latitude and longitude, you can use &lt;CODE&gt;Missile Map&lt;/CODE&gt; Visualization: &lt;A href="https://splunkbase.splunk.com/app/3511/"&gt;https://splunkbase.splunk.com/app/3511/&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;So you can choose based on what data you can get from your logged events.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Nov 2017 19:43:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297007#M40404</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-17T19:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297008#M40405</link>
      <description>&lt;P&gt;@geoffmx, in order to test and confirm whether these apps are good fit for your use case or not, you can try out these Apps on your local machine (may be monitor your home network traffic). These Apps come with built in examples as well.&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2017 04:31:44 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297008#M40405</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-24T04:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297009#M40406</link>
      <description>&lt;P&gt;Awesome! Thanks @niketnilay&lt;/P&gt;</description>
      <pubDate>Sun, 26 Nov 2017 06:31:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297009#M40406</guid>
      <dc:creator>geoffmx</dc:creator>
      <dc:date>2017-11-26T06:31:31Z</dc:date>
    </item>
    <item>
      <title>Re: How do I create a line graph showing traffic over time?</title>
      <link>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297010#M40407</link>
      <description>&lt;P&gt;@geoffmx, If you have tried the visualizations and have found any one working as per your use case, please remember to Accept my original answers and up vote and comments that helped.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Nov 2017 09:03:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Dashboards-Visualizations/How-do-I-create-a-line-graph-showing-traffic-over-time/m-p/297010#M40407</guid>
      <dc:creator>niketn</dc:creator>
      <dc:date>2017-11-26T09:03:30Z</dc:date>
    </item>
  </channel>
</rss>

