<?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: What is event id in last pass data? in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/596181#M76744</link>
    <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/150308"&gt;@hcanivel_splunk&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 02 May 2022 17:25:28 GMT</pubDate>
    <dc:creator>lewisk03</dc:creator>
    <dc:date>2022-05-02T17:25:28Z</dc:date>
    <item>
      <title>What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497872#M61247</link>
      <description>&lt;P&gt;I'm seeing "event_id" fields in my last pass data that appears to be a random field. &lt;/P&gt;

&lt;P&gt;I'm getting event_id values of Event1 through Event18 across data that is otherwise identical. &lt;BR /&gt;
Neither of the lookups enrich this data. I'm wondering if anyone knows what this field is used for?&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jan 2020 17:29:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497872#M61247</guid>
      <dc:creator>tprz</dc:creator>
      <dc:date>2020-01-29T17:29:41Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497873#M61248</link>
      <description>&lt;P&gt;Look at the input data, specifically the _raw field, and see if the values you are ending up with in Event_id are in the actual data or not.  If you can give more detailed examples, without showing us anything proprietary, then we can help you more.&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 04:01:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497873#M61248</guid>
      <dc:creator>DalJeanis</dc:creator>
      <dc:date>2020-09-30T04:01:06Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497874#M61249</link>
      <description>&lt;P&gt;Example event&lt;/P&gt;

&lt;P&gt;Action: Log in&lt;BR /&gt;
   Data: whatever.com&lt;BR /&gt;
   IP_Address: 10.10.10.10&lt;BR /&gt;
   Time: 2050-12-06 18:44:72&lt;BR /&gt;
   Username: &lt;A href="mailto:user@spaghetti.com" target="_blank"&gt;user@spaghetti.com&lt;/A&gt;&lt;BR /&gt;
   event_id: Event5&lt;/P&gt;</description>
      <pubDate>Wed, 30 Sep 2020 03:59:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497874#M61249</guid>
      <dc:creator>tprz</dc:creator>
      <dc:date>2020-09-30T03:59:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497875#M61250</link>
      <description>&lt;P&gt;in the raw json&lt;/P&gt;

&lt;P&gt;"event_id": "Event5"&lt;/P&gt;</description>
      <pubDate>Mon, 03 Feb 2020 19:11:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/497875#M61250</guid>
      <dc:creator>tprz</dc:creator>
      <dc:date>2020-02-03T19:11:12Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/506949#M62293</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/41147"&gt;@tprz&lt;/a&gt;!&lt;/P&gt;&lt;P&gt;Unfortunately, LastPass doesn't do a great job of providing much information in their API spec doc. The event id, from what I've surmised is effectively a basic, iterated sequential count-based id generated from the reporting command API call, based on whatever parameters you've provided in the request.&lt;/P&gt;&lt;P&gt;The pros/cons from my perspective developing against the API, given the current restraints:&lt;/P&gt;&lt;P&gt;+ You can easily identify a missing event in the sequence (from 0 .. N, where N is the length of the "Data" field in the response)&lt;/P&gt;&lt;P&gt;+ Should be easy to identify how many events per call (once you apply some decent SPL to extract the count number)&lt;/P&gt;&lt;P&gt;- This Event id has no relation whatsoever to the actual payload&lt;/P&gt;&lt;P&gt;- Unfortunately, this event id isn't truly unique (in other data sources, this should be either a UUID or some sort of derivative hash of the event)&lt;/P&gt;&lt;P&gt;Take it for what's worth though. I didn't feel I should fix/customize for a better event id in the event the vendor updates their event API (and my code would break). I figured get the data out efficiently for those who prefer a TA option.&lt;/P&gt;&lt;P&gt;Hope this explanation helps!&lt;/P&gt;</description>
      <pubDate>Wed, 01 Jul 2020 22:44:52 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/506949#M62293</guid>
      <dc:creator>hcanivel_splunk</dc:creator>
      <dc:date>2020-07-01T22:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/595656#M76724</link>
      <description>&lt;P&gt;I know this is an older thread, is it possible to look into fix/customize of the TA for LastPass to drop duplicate events like this? We see the same issue and for example, 253 event logs for one single event. Apparently because the event id is different for each log, that is why there are multiple logs, but we only need to see one of these.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 27 Apr 2022 20:56:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/595656#M76724</guid>
      <dc:creator>lewisk03</dc:creator>
      <dc:date>2022-04-27T20:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/596181#M76744</link>
      <description>&lt;P&gt;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/150308"&gt;@hcanivel_splunk&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 02 May 2022 17:25:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/596181#M76744</guid>
      <dc:creator>lewisk03</dc:creator>
      <dc:date>2022-05-02T17:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: What is event id in last pass data?</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/597254#M76801</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.splunk.com/t5/user/viewprofilepage/user-id/245291"&gt;@lewisk03&lt;/a&gt;&amp;nbsp;!&lt;/P&gt;&lt;P&gt;Feel free to PR into the project. I've cleared it internally for open-source contributions:&amp;nbsp;&lt;A href="https://github.com/splunk/TA-lastpass" target="_blank"&gt;https://github.com/splunk/TA-lastpass&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Basically, the eventid isn't really an eventid at all; it's more of an event or queue item counter from the event query REST call based off of the time parameter in your query.&lt;/P&gt;&lt;P&gt;I've struggled with this when I first designed and developed the original code, but I've never come to grips on how to best capture these events and the "meta" data and minimizing transforming the raw data set itself. My happy compromise is to introduce critical fields I think are missing or reformat values that may break analysis but to not change the original, fundamental data set.&lt;/P&gt;&lt;P&gt;I would highly recommend you reach out to LastPass and encourage them to update their API resources (data set) to improve data quality.&lt;/P&gt;&lt;P&gt;I don't think these are the ideal responses you're looking for, but hopefully you can take value in what I'm sharing back. Cheers!&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 20:17:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/What-is-event-id-in-last-pass-data/m-p/597254#M76801</guid>
      <dc:creator>hcanivel_splunk</dc:creator>
      <dc:date>2022-05-10T20:17:10Z</dc:date>
    </item>
  </channel>
</rss>

