Getting Data In

Help with merging CSV files needed

damucka
Builder

Hello,

I have the situation, where I evaluate the "All Time" logs initially and save the results to the csv file:

...
| outputtext usexml=false | fields - _raw  
| outputcsv StartupMinMaxAvg.txt
...

The base search takes quite a while, so I would like to do it only once and do not mess with the StartupMinMaxAvg.txt file later. So my idea was to create the report, which executes the base search on an hourly base and writes the results to the separate delta file:

    ...
    | outputtext usexml=false | fields - _raw  
    | outputcsv StartupMinMaxAvg_Delta_Last_1h.txt
    ...

What I would need then is to append the StartupMinMaxAvg_Delta_Last_1h.txt to the StartupMinMaxAvg.txt.
How would I do it the easiest way?

Kind Regards,
Kamil

Labels (1)
Tags (1)
0 Karma
1 Solution

manjunathmeti
Champion

Command ouputcsv has option to append results to existing csv file:

Syntax: append=<<bool>>
Description: If append is true, the command attempts to append to an existing CSV file, if the file exists. If the CSV file does not exist, a file is created. If there is an existing file that has a CSV header already, the command only emits the fields that are referenced by that header. The command cannot append to .gz files.
Default: false

Set append=true and use same filename:

 ...
 | outputtext usexml=false | fields - _raw  
 | outputcsv append=true StartupMinMaxAvg.csv
 ...

View solution in original post

0 Karma

manjunathmeti
Champion

Command ouputcsv has option to append results to existing csv file:

Syntax: append=<<bool>>
Description: If append is true, the command attempts to append to an existing CSV file, if the file exists. If the CSV file does not exist, a file is created. If there is an existing file that has a CSV header already, the command only emits the fields that are referenced by that header. The command cannot append to .gz files.
Default: false

Set append=true and use same filename:

 ...
 | outputtext usexml=false | fields - _raw  
 | outputcsv append=true StartupMinMaxAvg.csv
 ...
0 Karma
Get Updates on the Splunk Community!

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...

Share Your Ideas & Meet the Lantern team at .Conf! Plus All of This Month’s New ...

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