Splunk Search

Calculate number of decimals for each record in field?

DPOIRE
Path Finder

Field = 1.123456789

Field = 14.123456

Field = 3.1234567

I need to run a query that will return the number of decimals for each record in Field.

Expected Result:

9

6

7

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

ITWhisperer
SplunkTrust
SplunkTrust
| eval decimal=len(mvindex(split(Field,"."),1))

View solution in original post

ITWhisperer
SplunkTrust
SplunkTrust
| eval decimal=len(mvindex(split(Field,"."),1))

DPOIRE
Path Finder

Exactly was I was looking for.
Thanks!

0 Karma
Get Updates on the Splunk Community!

Troubleshooting the OpenTelemetry Collector

  In this tech talk, you’ll learn how to troubleshoot the OpenTelemetry collector - from checking the ...

Adoption of Infrastructure Monitoring at Splunk

  Splunk's Growth Engineering team showcases one of their first Splunk product adoption-Splunk Infrastructure ...

Modern way of developing distributed application using OTel

Recently, I had the opportunity to work on a complex microservice using Spring boot and Quarkus to develop a ...