Cheers, I am hoping to get some help on a splunk search to generate a badging report. I'll explain further. There are two types of badges students can earn, Sell & Deploy. There are three levels of badges within each badge type. The levels are Novice, Capable and Expert. Issued badges expire after one year. This means students must either renew their existing badge before the expiration date or the student can earn the next level higher badge prior to the expiration date. If a student renews their existing badge, the internal system marks the badge name as Renew_Novice, Renew_Capable, or Renew_Expert depending on which badge they earn. I've supplied some demo data to help illustrate what the data looks like. I need to generate a report that lists the student's name, email address, highest level badge name and expiration date of the highest level badge. There is no need to see lower level badges or expiration dates for lower level badges. Thank you. Each event is a student name and badge type. I onboarded the data so that the timestamp for each event ( _time) is the EarnDate of the badge The output of the Splunk report should show the following: Domain, First name, Last name, Email, Badge, ExpireDate mno.com, lisa edwards,
[email protected], Sell_Expert, 12/6/23 mno.com, lisa edwards,
[email protected], Deploy_Capable, 8/1/24 abc.com, allen anderson,
[email protected], Sell_Novice, 10/3/24 def.com, andy braden,
[email protected], Deploy_Capable, 1/3/24 ghi.com, bill connors,
[email protected], Sell_Novice, 10/17/23 jkl.com, brandy duggan,
[email protected], Sell_Expert, 9/5/24 Demo Data below. First name Last name Email Domain Badge EarnDate ExpireDate lisa edwards
[email protected] mno.com Sell_Novice 5/22/22 5/22/23 lisa edwards
[email protected] mno.com Deploy_Novice 5/27/22 5/27/23 andy braden
[email protected] def.com Deploy_Novice 11/10/22 11/10/23 allen anderson
[email protected] abc.com Sell_Novice 11/18/22 11/18/23 andy braden
[email protected] def.com Deploy_Capable 1/3/23 1/3/24 bill connors
[email protected] ghi.com Sell_Novice 10/17/22 10/17/23 brandy duggan
[email protected] jkl.com Sell_Novice 7/6/23 7/6/24 lisa edwards
[email protected] mno.com Sell_Capable 7/24/22 7/24/23 lisa edwards
[email protected] mno.com Deploy_Capable 8/20/22 8/20/23 brandy duggan
[email protected] jkl.com Sell_Capable 8/10/23 8/10/24 brandy duggan
[email protected] jkl.com Sell_Expert 9/5/22 9/5/24 allen anderson
[email protected] abc.com Renew_Sell_Novice 10/3/23 10/3/24 lisa edwards
[email protected] mno.com Sell_Expert 12/6/22 12/6/23 lisa edwards
[email protected] mno.com Renew_Deploy_Capable 8/1/23 8/1/24
... View more