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!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...