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!

Announcing Scheduled Export GA for Dashboard Studio

We're excited to announce the general availability of Scheduled Export for Dashboard Studio. Starting in ...

Extending Observability Content to Splunk Cloud

Watch Now!   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to leverage ...

More Control Over Your Monitoring Costs with Archived Metrics GA in US-AWS!

What if there was a way you could keep all the metrics data you need while saving on storage costs?This is now ...