Splunk Search

Convert Number of days into years

khojas02
Engager

Hello Everyone!!

I have a sample data as below
Analyst Span
A 1049d 00h 00m
B 430d 01h 00m
C 225d 05h 00m

I would like to add one more column which basically convert the span column into number of years. Here d suggests number of days, h suggests an hour and m suggests minute in the Span column. Thanks in advance!!

Tags (2)
0 Karma

anmolpatel
Builder

@khojas02
does this give you whats needed? check from the rex command onwards

| makeresults
| eval _raw = "Analyst, Span
A, 1049d 00h 00m
B, 430d 01h 00m
C, 225d 05h 00m"
| multikv forceheader=1
| rex field=Span "(?<days>\d+)d\s(?<hours>\d+)h\s(?<min>\d+)m"
| eval years = floor(days / 365), months = floor((days - (years * 365)) * 0.0329), days = days - ((years * 365) + (months * 30.4167))
0 Karma
Get Updates on the Splunk Community!

Observe and Secure All Apps with Splunk

  Join Us for Our Next Tech Talk: Observe and Secure All Apps with SplunkAs organizations continue to innovate ...

Splunk Decoded: Business Transactions vs Business IQ

It’s the morning of Black Friday, and your e-commerce site is handling 10x normal traffic. Orders are flowing, ...

Fastest way to demo Observability

I’ve been having a lot of fun learning about Kubernetes and Observability. I set myself an interesting ...