Skip to content

jsvd/logstash-codec-cef

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

logstash-CEF

Logstash Codec to handle CEF encoded data

Build

Run 'make tarball' to build the project. A tarball will end up in ./build. Extract the file over top of your logstash directory. (Hint: or, just copy the ./lib and ./vendor directories to your logstash folder)

Config

This is an example input config.

input {
    generator {
	message => "TODO"
	count => 1
	codec => cef
    }
}

output {
    stdout { 
	codec => "rubydebug"
    }
}

This is an example output config.

input {
    generator {
	message => "TODO"
	count => 1
    }
}

output {
    stdout { 
	codec => cef
    }
}

About

CEF codec for Logstash

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 40.8%
  • Makefile 31.8%
  • Ruby 27.4%