Splunk Search

How do I pipe splunk query output to a file?

Alan_Bradley
Path Finder

How do I take output (say . . . "View Sources") and pipe it to a file?

Tags (2)
1 Solution

matt
Splunk Employee
Splunk Employee

You have couple of options. The basic is simply using redirect to file, you can also use the -format flag.

./splunk search '*' -format csv > file-name

Valid types are: custom, normal, xml, csv, table You can also use one of the output search commands:
http://www.splunk.com/base/Documentation/3.4.9/User/UnsupportedSearchCommands#outputcsv
http://www.splunk.com/base/Documentation/3.4.9/User/UnsupportedSearchCommands#outputraw
and the other outputtxt outputxml

Or the export option from the GUI or CLI: http://www.splunk.com/base/Documentation/3.4.9/Admin/ExportEventData

View solution in original post

mIliofotou_splu
Splunk Employee
Splunk Employee

For Splunk 6.4.x:
Here is a list of different option for exporting to a file from the CLI

$SPLUNK_HOME/bin/splunk search 'index=main' -output table > tofile.txt
$SPLUNK_HOME/bin/splunk search 'index=main | head' -output raw > tofile.txt
$SPLUNK_HOME/bin/splunk search 'index=main | head' -output rawdata > tofile.txt
$SPLUNK_HOME/bin/splunk search '*' -output csv > tofile.txt
$SPLUNK_HOME/bin/splunk search 'index=main id=abs*' -output json > tofile.txt

The default behavior of the CLI search is to export first 100. Use the -maxout 0 option to bypass that limit.


$SPLUNK_HOME/bin/splunk search 'index=main id=abs*' -output json -maxout 0 > tofile.txt

If you don't specify an output option, the default is to only export _raw.

0 Karma

matt
Splunk Employee
Splunk Employee

You have couple of options. The basic is simply using redirect to file, you can also use the -format flag.

./splunk search '*' -format csv > file-name

Valid types are: custom, normal, xml, csv, table You can also use one of the output search commands:
http://www.splunk.com/base/Documentation/3.4.9/User/UnsupportedSearchCommands#outputcsv
http://www.splunk.com/base/Documentation/3.4.9/User/UnsupportedSearchCommands#outputraw
and the other outputtxt outputxml

Or the export option from the GUI or CLI: http://www.splunk.com/base/Documentation/3.4.9/Admin/ExportEventData

barakreeves
Splunk Employee
Splunk Employee

Here is the updated syntax and related doco link:
/splunk search "index=_* audit" -output 'csv' > /var/share/splunk_output/20140724-audit.csv

doco link: http://docs.splunk.com/Documentation/Splunk/6.1.2/SearchReference/CLIsearchsyntax

jameshfisher
New Member

Doesn't work. WARN: The following arguments were unknown or had no effect: 'format'

0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...