All Apps and Add-ons

Writing a Splunk Query - Unique Count of Initial Access Key Usage from Cloudtrail

tosilesi19
New Member

I have a use case to write a splunk query to display in a line or area chart the unique and initial AWS access key usage by IAM users in our org trending for the past year. Management want to be able to visually show increased cloud adoption numbers over time. Any ideas on how to display this? I feel like I'm almost there with stats but not quite.

index=blah sourcetype=blah user_type=SAMLuser | stats earliest(eventTime) by userIdentity.userName

This almost gets me there, but it won't depict the stats in a pretty line chart.

Thanks!

0 Karma

to4kawa
Ultra Champion

If eventTime is epoch time, how about this?

index=blah sourcetype=blah user_type=SAMLuser 
| stats earliest(eventTime) as _time by userIdentity.userName
| timechart count by userIdentity.userName
0 Karma

tosilesi19
New Member

this gets me closer! but the userIdentity.userName values are all just flat on the x-axis. I need them to display clearly based on the date they were first used.

0 Karma

to4kawa
Ultra Champion

what's y-axis?
a line or area chart's y-axis is number,you know.

0 Karma
Get Updates on the Splunk Community!

Splunk Mobile: Your Brand-New Home Screen

Meet Your New Mobile Hub  Hello Splunk Community!  Staying connected to your data—no matter where you are—is ...

Introducing Value Insights (Beta): Understand the Business Impact your organization ...

Real progress on your strategic priorities starts with knowing the business outcomes your teams are delivering ...

Enterprise Security (ES) Essentials 8.3 is Now GA — Smarter Detections, Faster ...

As of today, Enterprise Security (ES) Essentials 8.3 is now generally available, helping SOC teams simplify ...