Skip to content

Instantly share code, notes, and snippets.

@prestonmcgowan
Last active January 19, 2021 14:55
Show Gist options
  • Save prestonmcgowan/c144afd516ba2d5704839723db7fd32c to your computer and use it in GitHub Desktop.
Save prestonmcgowan/c144afd516ba2d5704839723db7fd32c to your computer and use it in GitHub Desktop.
Send data from a file of line delimited syslog to the Confluent Connect Syslog Connector
#!/bin/bash
echo "Sending $1"
while read line; do printf "."; echo $line | nc SYSLOG-CONNECT-FQDN_GOES-HERE 1514; done < $1
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment