<?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: Displaying a marker for each event in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326014#M97186</link>
    <description>&lt;P&gt;Not knowing what else you are trying to do, this &lt;CODE&gt;streamstats&lt;/CODE&gt; code assigns a unique &lt;CODE&gt;recno&lt;/CODE&gt; to each event and asks to have each plotted distinctly on the map.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=jan DevEUI_location 
| streamstats count as recno 
| geostats latfield=DevEUI_location.DevLAT longfield=DevEUI_location.DevLON count by recno
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 12 Apr 2017 18:07:58 GMT</pubDate>
    <dc:creator>DalJeanis</dc:creator>
    <dc:date>2017-04-12T18:07:58Z</dc:date>
    <item>
      <title>Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326013#M97185</link>
      <description>&lt;P&gt;I'm trying to display markers on a map using Splunk. I'm currently trying out &lt;CODE&gt;geostats&lt;/CODE&gt; but i don't seem to get it working. &lt;/P&gt;

&lt;P&gt;The latitude is stored as  &lt;CODE&gt;DevEUI_location.DevLAT&lt;/CODE&gt; and longitude as  &lt;CODE&gt;DevEUI_location.DevLON&lt;/CODE&gt;.&lt;/P&gt;

&lt;P&gt;I have tried the following: &lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;host=jan DevEUI_location | geostats latfield=DevEUI_location.DevLAT longfield=DevEUI_location.DevLON&lt;/CODE&gt;  --&amp;gt; Displays nothing on map&lt;/P&gt;

&lt;P&gt;&lt;CODE&gt;host=jan DevEUI_location | geostats latfield=DevEUI_location.DevLAT longfield=DevEUI_location.DevLON count&lt;/CODE&gt; --&amp;gt; Displays 1 big circle&lt;/P&gt;

&lt;P&gt;I would like a marker or indicator for each event. Any idea how to do this?&lt;/P&gt;

&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 12 Apr 2017 14:26:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326013#M97185</guid>
      <dc:creator>jankappe</dc:creator>
      <dc:date>2017-04-12T14:26:05Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326014#M97186</link>
      <description>&lt;P&gt;Not knowing what else you are trying to do, this &lt;CODE&gt;streamstats&lt;/CODE&gt; code assigns a unique &lt;CODE&gt;recno&lt;/CODE&gt; to each event and asks to have each plotted distinctly on the map.  &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;host=jan DevEUI_location 
| streamstats count as recno 
| geostats latfield=DevEUI_location.DevLAT longfield=DevEUI_location.DevLON count by recno
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 12 Apr 2017 18:07:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326014#M97186</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-12T18:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326015#M97187</link>
      <description>&lt;P&gt;Thanks for your answer. When running this code i get one pie chart like this:&lt;BR /&gt;
&lt;IMG src="https://i.gyazo.com/588f1e60377d5d42b77a52d5951dfdef.png" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;i would like a marker or circle for each event. &lt;/P&gt;</description>
      <pubDate>Thu, 13 Apr 2017 06:22:19 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326015#M97187</guid>
      <dc:creator>jankappe</dc:creator>
      <dc:date>2017-04-13T06:22:19Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326016#M97188</link>
      <description>&lt;P&gt;Converting to comment so someone else may take a look.  Looks like geostats is going to bin up the various recnos based on locale, so this strategy doesn't help you at all.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 18:49:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326016#M97188</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-14T18:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326017#M97189</link>
      <description>&lt;P&gt;Looks like this may be your answer.&lt;/P&gt;

&lt;P&gt;&lt;A href="https://answers.splunk.com/answers/113295/plotting-points-on-a-splunk-6-map.html"&gt;https://answers.splunk.com/answers/113295/plotting-points-on-a-splunk-6-map.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 18:53:02 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326017#M97189</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-04-14T18:53:02Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326018#M97190</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/203121"&gt;@DalJeanis&lt;/a&gt;,&lt;BR /&gt;
Using the following search: &lt;BR /&gt;
    host=jan DevEUI_location | geostats latfield=DevEUI_location.DevLAT longfield=DevEUI_location.DevLON binspanlat=0.1 binspanlong=0.1 count&lt;/P&gt;

&lt;P&gt;I got this result: &lt;BR /&gt;
&lt;IMG src="https://i.gyazo.com/fd5cc99ab323d799cd7e29d4aab1bbe1.png" alt="alt text" /&gt;&lt;/P&gt;

&lt;P&gt;This may not be exactly what I was looking for but it will do. It would be better if I could zoom in further. I have tried setting maxzoomlevel but I think the above is the max zoom in.&lt;/P&gt;

&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 13:41:30 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326018#M97190</guid>
      <dc:creator>jankappe</dc:creator>
      <dc:date>2020-09-29T13:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Displaying a marker for each event</title>
      <link>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326019#M97191</link>
      <description>&lt;P&gt;@jankappe - if your issue has been solved, please accept the answer so the question will show as resolved.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Sep 2017 23:35:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/Displaying-a-marker-for-each-event/m-p/326019#M97191</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2017-09-25T23:35:01Z</dc:date>
    </item>
  </channel>
</rss>

