Splunk Enterprise

split multi line field

aasabatini
Motivator

Hi Folks,

I need to split  a multiline field

 

 

-2.9416067
53.0374031
0.0

 

 

 

the first line is latitude e the second line is longitude,   is possible extract these two fields from this multi-line field?

“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
Labels (1)
Tags (1)
0 Karma
1 Solution

ashvinpandey
Contributor

@aasabatini Try adding the below query:

 

| eval latitude=mvindex(Company_Name,0), longitude=mvindex(Company_Name,1)
| table Company_Name latitude longitude

 

Also, If this reply helps you, an upvote would be appreciated.

View solution in original post

ashvinpandey
Contributor

@aasabatini Try adding the below query:

 

| eval latitude=mvindex(Company_Name,0), longitude=mvindex(Company_Name,1)
| table Company_Name latitude longitude

 

Also, If this reply helps you, an upvote would be appreciated.

aasabatini
Motivator

Thanks @ashvinpandey 

“The answer is out there, Neo, and it’s looking for you, and it will find you if you want it to.”
0 Karma
Get Updates on the Splunk Community!

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...

New in Observability Cloud - Explicit Bucket Histograms

Splunk introduces native support for histograms as a metric data type within Observability Cloud with Explicit ...