Splunk Search

Extract help...

a212830
Champion

Hi,

We log our filesystem utilization to Splunk, and I'd like to extract percentage used field, but the formats for Windows/*Nix are different. Was wondering if there are any regex experts out there that could take the two examples and create a universal regex that grabs the percent used utilization:

Nix (percentage is after "Use%")
14:42:21 05/05/2015 good 1048593817 [Linux][Baseline][SERVERA][FileSystem][/tmp] FileSystems\/tmp\Use%=1% 11:33243 0 1

Windows (percentage is after bracket and before %full):
14:56:34 05/05/2015 good 1039182967 [Windows][Baseline][ei0610vwin][DriveSpaceFree][C-MBFree] 93.414% full, 3372MB free, 51197MB total 2:251 93.414 3372

TIA...

Tags (2)
0 Karma

stephanefotso
Motivator

Hello! Here is what you can do. Working both for Windows/*Nix filesystems!

.....|rex field=_raw "^[^\n]*Use\%=(?P<tmpuse>\d+)"|rex field=_raw "^(?:[^ \n]* ){1,8}(?P<tmpuse>[0-9.]+)\%\s*full"|table tmpuse

Thanks!

SGF
0 Karma

a212830
Champion

This gave me an error - perhaps something was translated when posting? Is there a way to make this an extract?

0 Karma

stephanefotso
Motivator

Here is what to type.

|rex field=_raw "^[^\n]Use\%=(?P<tmpuse>\d+)"|rex field=_raw "^(?:[^ \n] ){1,8}(?P<tmpuse>[0-9.]+)\%\s*full"|table tmpuse

SGF
0 Karma

a212830
Champion

Thanks, not working though. Comes back blank.

0 Karma

stephanefotso
Motivator

The problem is the text editor. replace "&lt;" with < and "&gt;"with > in the code bellow
...|rex field=_raw "^[^\n]Use%=(?P&lt;tmpuse&gt;d+)"|rex field=_raw "^(?:[^ \n] ){1,8}(?P&lt;tmpuse&gt;[0-9.]+)\%s*full"|table tmpuse

SGF
0 Karma

a212830
Champion

Tried that:

|rex field=_raw "^[^\n]Use%=(?P&lt;tmpuse&gt;d+)"|rex field=_raw "^(?:[^ \n] ){1,8}(?P&lt;tmpuse&gt;[0-9.]+)\%s*full"|table tmpuse

Doesn't work.

0 Karma

stephanefotso
Motivator

Always errors in your above code! Escape all % caracters. And put a star(*) after all "[^ \n]", and do not forget to replace "&lt;" as mentioned earlier.
See my first query above.

SGF
0 Karma

woodcock
Esteemed Legend
([\d\.]*)%
0 Karma

woodcock
Esteemed Legend

Did you try mine? Here is the full search:
... | rex "(?&lt;myPct&gt;[\d\.]*)%" | table myPct

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...