Getting Data In

Parsing logs from UDP input

test_qweqwe
Builder

I installed addon for my product but the problem is that the addon is intended to collect data from the file, and not from receiving at udp 514 port. How should I reconfigure conf files to make it work?

Tags (1)
0 Karma
1 Solution

hardikJsheth
Motivator

There are multiple options.
1. You can update stanza to listen for UDP traffic on port 514.

[udp://2514]
sourcetype = Your Sourcetype
index= Define it if it's other than main
  1. Use syslogd/rsyslogd to listen for UDP traffic on port 514 and then put those contents into file which will be read by Splunk. You can keep your inputs.conf configuration as is and configure syslogd to put logs into the same file for which you have input configuration. Sample configuration is as follows:

    $ModLoad imudp
    $UDPServerRun 514
    ### Put logs to file ###
    $template rtflow,"$YOURFILELOCATION"
    if $msg contains 'RT_FLOW' then -?rtflow
    & ~
    

I would prefer second option as the chance of data loss is reduced in case of Splunk server is restarted.

View solution in original post

hardikJsheth
Motivator

There are multiple options.
1. You can update stanza to listen for UDP traffic on port 514.

[udp://2514]
sourcetype = Your Sourcetype
index= Define it if it's other than main
  1. Use syslogd/rsyslogd to listen for UDP traffic on port 514 and then put those contents into file which will be read by Splunk. You can keep your inputs.conf configuration as is and configure syslogd to put logs into the same file for which you have input configuration. Sample configuration is as follows:

    $ModLoad imudp
    $UDPServerRun 514
    ### Put logs to file ###
    $template rtflow,"$YOURFILELOCATION"
    if $msg contains 'RT_FLOW' then -?rtflow
    & ~
    

I would prefer second option as the chance of data loss is reduced in case of Splunk server is restarted.

Get Updates on the Splunk Community!

Threat Hunting Unlocked: How to Uplevel Your Threat Hunting With the PEAK Framework ...

WATCH NOWAs AI starts tackling low level alerts, it's more critical than ever to uplevel your threat hunting ...

Splunk APM: New Product Features + Community Office Hours Recap!

Howdy Splunk Community! Over the past few months, we’ve had a lot going on in the world of Splunk Application ...

Index This | Forward, I’m heavy; backward, I’m not. What am I?

April 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...