Splunk Search

how do i use the variable name1 in the table command later?

pratyushd
New Member

... |rename General.SetupViews as Modes|eval mode=split(Modes," ")|eval name1=mvindex(mode,0) | eval name2=mvindex(mode,1) | eval name3=mvindex(mode,2) | eval name4=mvindex(mode,3) | spath | table SetupDetail.name1.IN2OUT as IN2OUT

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Use a field in table by specifying the exact field name or a name pattern.

table name1 name2 name3 name4
Or

table name*

The table command does not have an as option. Use a separate rename.

rename SetupDetail.name1.IN2OUT as IN2OUT | table IN2OUT
---
If this reply helps you, Karma would be appreciated.
0 Karma

renjith_nair
Legend

@pratyushd,

table SetupDetail.name1.IN2OUT as IN2OUT doesn't seem to be correct.

|rename General.SetupViews as Modes|eval mode=split(Modes," ")|eval name1=mvindex(mode,0) 
| eval name2=mvindex(mode,1) | eval name3=mvindex(mode,2) | eval name4=mvindex(mode,3) 
| spath | rename SetupDetail.name1.IN2OUT as IN2OUT|table name1,name2,name3,name4,IN2OUT
Happy Splunking!
0 Karma

pratyushd
New Member

Hi,
the command SetupDetail.name1.IN2OUT itself does not seem to work. It is not able to extract the value of name1 but puts name1 instead the value i.e mvindex(mode,1) in the option SetupDetail.name1.IN2OUT
Thanks for the help 🙂

0 Karma

renjith_nair
Legend

Do you have some sample events and search ?

Happy Splunking!
0 Karma
Get Updates on the Splunk Community!

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...

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