<?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: Two fileds in timechart in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610948#M212462</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228495"&gt;@janroc&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you have "dst_src" in the eval command, you have to use the same field name also in the stats command and not "dstsrc".&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
    <pubDate>Fri, 26 Aug 2022 12:35:18 GMT</pubDate>
    <dc:creator>gcusello</dc:creator>
    <dc:date>2022-08-26T12:35:18Z</dc:date>
    <item>
      <title>How do I get two fileds "ip numbers" in an timechart?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610921#M212452</link>
      <description>&lt;P&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;How do I get two fileds "ip numbers" in an timechart?&lt;BR /&gt;I tried the aggregate fileds, but show up wrong in my visualisation of showing src and dst ip.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;index=firewall dest_ip=* src=* dest_port=8090 action=blocked
| eval dstsrc=dest_ip . src
| timechart count by dstsrc&lt;/LI-CODE&gt;
&lt;P&gt;Regards Jan&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 11:00:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610921#M212452</guid>
      <dc:creator>janroc</dc:creator>
      <dc:date>2022-08-26T11:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610923#M212453</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228495"&gt;@janroc&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;what's the issue? have you results without executing the timechart command?&lt;/P&gt;&lt;P&gt;in other words are there events that match all the conditions (&lt;SPAN&gt;index=firewall dest_ip=* src=* dest_port=8090 action=blocked)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;And all events have both the fields with a not null value?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Anyway, your approach is correct, The only thing is that I don't like to have attached ip values, I'd use&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;index=firewall dest_ip=* src=* dest_port=8090 action=blocked
| eval dst_src=dest_ip."|".src
| timechart count by dst_src&lt;/LI-CODE&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 08:13:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610923#M212453</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-26T08:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610928#M212454</link>
      <description>&lt;P&gt;The ip numbers should show up as 1.1.1.1 2.2.2.2 but showing as 1.1.1.12.2.2.2&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 08:54:54 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610928#M212454</guid>
      <dc:creator>janroc</dc:creator>
      <dc:date>2022-08-26T08:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610929#M212455</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228495"&gt;@janroc&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;as I said, if you want a sapce between the two IPs you have to add it:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;| eval dst_src=dest_ip." ".src&lt;/LI-CODE&gt;&lt;P&gt;if you put dest_ip.src you make one field but without space between IPs.&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 09:11:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610929#M212455</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-26T09:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610940#M212460</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This will only give me a lot of NULL values now.&lt;/P&gt;&lt;P&gt;-J-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="janroc_0-1661510158132.png" style="width: 400px;"&gt;&lt;img src="https://community.splunk.com/t5/image/serverpage/image-id/21197iC65804A6E29A57B7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="janroc_0-1661510158132.png" alt="janroc_0-1661510158132.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 10:36:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610940#M212460</guid>
      <dc:creator>janroc</dc:creator>
      <dc:date>2022-08-26T10:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610948#M212462</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228495"&gt;@janroc&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;if you have "dst_src" in the eval command, you have to use the same field name also in the stats command and not "dstsrc".&lt;/P&gt;&lt;P&gt;Ciao.&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 12:35:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610948#M212462</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-26T12:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610953#M212463</link>
      <description>&lt;P&gt;My fault of typo, thank you &lt;span class="lia-unicode-emoji" title=":neutral_face:"&gt;😐&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 13:11:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/610953#M212463</guid>
      <dc:creator>janroc</dc:creator>
      <dc:date>2022-08-26T13:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Two fileds in timechart</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/611042#M212475</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/228495"&gt;@janroc&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;good for you, see next time!&lt;/P&gt;&lt;P&gt;Please accept one answer for the other people of Community&lt;/P&gt;&lt;P&gt;Ciao and happy splunking&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;P&gt;P.S.: Karma Points are appreciated &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Aug 2022 08:46:27 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-do-I-get-two-fileds-quot-ip-numbers-quot-in-an-timechart/m-p/611042#M212475</guid>
      <dc:creator>gcusello</dc:creator>
      <dc:date>2022-08-27T08:46:27Z</dc:date>
    </item>
  </channel>
</rss>

