Splunk Search

Uptime Conversion

cinsley
Explorer

Below is a two result conversion table.  The data I am given, some will have days in the field and others will only have time.  How do I setup a conversion to handle this situation.  The convert auto(UpTime) works great as long as the field contains an entry with days.  The rex works well, again as long as the field contains a string containing days.

| makeresults
| eval UpTime="5:10:07:03.2419156"|append [|makeresults |eval UpTime="9:28:35.1006819"]
| convert auto(UpTime) AS autoDays
| rex field=UpTime "(?<days>\d+):(?<hours>\d+):(?<minutes>\d+):(?<seconds>\d+)\.(?<micro>\d+)"
| table UpTime, autoDays, days,hours,minutes, seconds, micro

Results:

UpTime                            autoDays  days    hours   minutes seconds              micro 

5:10:07:03.2419156                5           5         10             07            03          2419156
9:28:35.1006819                      9

Labels (1)
Tags (1)
0 Karma
1 Solution

kamlesh_vaghela
SplunkTrust
SplunkTrust

@cinsley 

Can you please try this?

| makeresults
| eval UpTime="5:10:07:03.2419156"|append [|makeresults |eval UpTime="9:28:35.1006819"]
| convert auto(UpTime) AS autoDays
| rex field=UpTime "((?<days>\d+):)?(?<hours>\d+):(?<minutes>\d+):(?<seconds>\d+)\.(?<micro>\d+)"
| table UpTime, autoDays, days,hours,minutes, seconds, micro

 

Thanks
KV
▄︻̷̿┻̿═━一

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

View solution in original post

cinsley
Explorer

That was the solution.   Thanks

0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust
Glad to help you

Happy Splunking
0 Karma

kamlesh_vaghela
SplunkTrust
SplunkTrust

@cinsley 

Can you please try this?

| makeresults
| eval UpTime="5:10:07:03.2419156"|append [|makeresults |eval UpTime="9:28:35.1006819"]
| convert auto(UpTime) AS autoDays
| rex field=UpTime "((?<days>\d+):)?(?<hours>\d+):(?<minutes>\d+):(?<seconds>\d+)\.(?<micro>\d+)"
| table UpTime, autoDays, days,hours,minutes, seconds, micro

 

Thanks
KV
▄︻̷̿┻̿═━一

If any of my reply helps you to solve the problem Or gain knowledge, an upvote would be appreciated.

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 ...