Splunk Search

does not appear in the field

nanachu
Path Finder

Hi all

I have event like that.
2019-10-26 15:00:09.158, servicename="ROOT2", area="SCP", place="tokyo", path="AAA12345", Default="B", Sn="B", SC="B", update="person"

"path" "place" "area" "servicename" and "Sn" are automatically appear in the field.
When a field is specified, a value such as B appears.

But  "SC" did not appear automatically. I think it is few.

I need value like B.
I want to make table.

index=main |table path, area, Sn, SC

path,area,Sn,SC
AAA12345,tokyo,B,B
AAA23456,osaka,A,A
AAA34567,nagoya,C,A

What should I do?

Thank you for helping.

0 Karma
1 Solution

ansusabu
Communicator

You can use regex in the query for extracting 'SC' value.
ex:

SC=\"(?<sc>\w*)\"

View solution in original post

woodcock
Esteemed Legend

Add this as the first pipe in your SPL:

... | rex "SC=\"(?<SC>[^\"]+)\" ...
0 Karma

ansusabu
Communicator

You can use regex in the query for extracting 'SC' value.
ex:

SC=\"(?<sc>\w*)\"

nanachu
Path Finder

Thank you for helping.
but, it does not work well.

0 Karma

nanachu
Path Finder

when I used |rex field=_raw
It work well.
Thank you.

Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...