Splunk Search

How make a table with key and value columns and change a field's name?

momori
Explorer

The table we want to make looks something like this:

---------- key | value --------

someName | someValue

someName1 | someValue1

where someName is a field name and someValue is a value of the field we got from our log file.
We're not sure if there is a way to insert a someName text into the table to display. Is this possible?

Tags (3)
0 Karma
1 Solution

mataharry
Communicator

If you want to add a line with a fake events do
` | table key value | append [ |stats count | eval key="someName" | eval value="someValue" | table key value ] | sort -key

if this is just a presentation request.
try

<mysearch> | stats values(myfield) by myotherfield

or it you already have your data , try to rotate it.
<mysearch> | table key value | transpose

http://docs.splunk.com/Documentation/Splunk/6.1.3/SearchReference/Transpose

View solution in original post

somesoni2
Revered Legend

If my understanding is correct, are you trying to get all the field names and corresponding value(s) from your log? If yes, you can use command called "fieldsummary" which will give you list of fields in your log. Check this out

http://docs.splunk.com/Documentation/Splunk/6.0/SearchReference/Fieldsummary

0 Karma

ppablo
Retired

Hi @momori

If someName is already a field name in your events from your search, you might find the rename command useful. Have you tried this option yet?

http://docs.splunk.com/Documentation/Splunk/6.1.3/SearchReference/Rename

ppablo
Retired

No problem @momori 🙂 glad our combined responses helped solve your issue!

Patrick

0 Karma

momori
Explorer

using rename in conjunction with the tranpose from the above answer worked well. Thank you for your help

mataharry
Communicator

If you want to add a line with a fake events do
` | table key value | append [ |stats count | eval key="someName" | eval value="someValue" | table key value ] | sort -key

if this is just a presentation request.
try

<mysearch> | stats values(myfield) by myotherfield

or it you already have your data , try to rotate it.
<mysearch> | table key value | transpose

http://docs.splunk.com/Documentation/Splunk/6.1.3/SearchReference/Transpose

momori
Explorer

transpose worked. thanks!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...