Getting Data In

Help with SEDCMD-drop

cboillot
Contributor

Here is my issue, i have logs that look like this:

<--CT<-- --------------------------------------------------
10:10:23 AM  Application Directory: A:\bdir\Cdir\Aapp
The last GET occurred at 1/24/2020 10:10:23 AM
-------------------------------------------------- -->
--/>
<--CT<-- --------------------------------------------------
10:10:20 AM  Application Directory: A:\bdir\Cdir\Bapp
The last GET occurred at 1/24/2020 10:10:20 AM
-------------------------------------------------- -->
--/>

When use the following SEDCMD-drop = s/<--CT<-- |-+| -->|>|\/>//g I get

10:10:23 AM  Application Directory: A:\bdir\Cdir\Aapp
The last GET occurred at 1/24/2020 10:10:23 AM



10:10:20 AM  Application Directory: A:\bdir\Cdir\Bapp
The last GET occurred at 1/24/2020 10:10:20 AM

How do I go about getting rid those extra blank lines?

Tags (2)
0 Karma
1 Solution

richgalloway
SplunkTrust
SplunkTrust

Include line ends in your regex and it should eliminate the blank lines.

SEDCMD-drop = s/<--CT<-- |-+\n?| -->\n|>|\/>\n//g

---
If this reply helps you, Karma would be appreciated.

View solution in original post

0 Karma

richgalloway
SplunkTrust
SplunkTrust

Include line ends in your regex and it should eliminate the blank lines.

SEDCMD-drop = s/<--CT<-- |-+\n?| -->\n|>|\/>\n//g

---
If this reply helps you, Karma would be appreciated.
0 Karma

cboillot
Contributor

Although this didn't work 100% for me ( it added an / to a 3rd line), it got me going in the right direction, what I ended up using was SEDCMD-drop = s/<--CT<-- |-+\n?| -->\n|>|\/>//g

0 Karma
Get Updates on the Splunk Community!

Build Scalable Security While Moving to Cloud - Guide From Clayton Homes

 Clayton Homes faced the increased challenge of strengthening their security posture as they went through ...

Mission Control | Explore the latest release of Splunk Mission Control (2.3)

We’re happy to announce the release of Mission Control 2.3 which includes several new and exciting features ...

Cloud Platform | Migrating your Splunk Cloud deployment to Python 3.7

Python 2.7, the last release of Python 2, reached End of Life back on January 1, 2020. As part of our larger ...