Getting Data In

creating / adding a blank line in between the data in the file

abhayneilam
Contributor

I have a file which contains :

Hi this is really great of you !!
My name is john, how are you
this is no one

I am appending few more lines after the last line but before that i want a single blank line to distinguish both the content as : my output should look like this :


Hi this is really great of you !!
My name is john, how are you
this is no one

Hi, this is my new line started
I am happy to know you
great people always smile


Tags (4)
0 Karma

yannK
Splunk Employee
Splunk Employee

Are your lines parts of the same events ?

If the pattern is easy to recognize, I would recommend to use a sed command to add new lines characters.

  • at search time with | rex field=_raw mode=sed "s/mylastword/mylastword\n/g"
  • or at index time (more radical) with the sedcmd

in both case, please read the documentation for the commands.

If the pattern is not common, then you'd better fix your source format before indexing it.

0 Karma

MHibbin
Influencer

What does this have to do with Splunk? Surely you need to either specify you scenario if it is related!

0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...