Splunk Search

How do I create a Field for Mac Address?

mayler
Path Finder

The mac address format for all of my logs is xx:xx:xx:xx:xx:xx

AUTHORIZATION-SUCCESS: user: airport; mac: e8:06:88:8a:17:97; author reason: new session; ssid: slo_airport; AP 32/1

AUTHORIZATION-SUCCESS: user: airport; mac: 00:1c:b3:be:08:2c; author reason: new session; ssid: slo_airport; AP 32/2

I'm trying to " my search string " | stats distinct_count(mac)

I would think that the mac address would be a "pre-built" field. Thanks.

1 Solution

ftk
Motivator

You can extract the mac address using rex as such:

your search string | rex "mac: (?<mac>\S+);" | stats distinct_count(mac)

View solution in original post

ftk
Motivator

You can extract the mac address using rex as such:

your search string | rex "mac: (?<mac>\S+);" | stats distinct_count(mac)

mayler
Path Finder

Thank you very very very much.

0 Karma
Get Updates on the Splunk Community!

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

A Guide To Cloud Migration Success

As enterprises’ rapid expansion to the cloud continues, IT leaders are continuously looking for ways to focus ...