No release in over 3 years
Low commit activity in last 3 years
This gem is a logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/plugin install gemname. This gem is not a stand-alone program
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 Project Readme

Logstash Plugin

This is a plugin for Logstash.

It is fully free and fully open source. The license is Apache 2.0.

Documentation

Gets aidmaster and data files from CrowdStrike Falcon Data Replicator. Returns each JSON document as log to be used in normal Logstash filter operations.

This plugin is based on the logstash-input-s3-sns-sqs plugin ( https://github.com/cherweg/logstash-input-s3-sns-sqs ). Minor modifications have been made to match the FDR schema.

Installation

logstash-plugin install logstash-input-crowdstrike_fdr

Example

input {

# logstash-plugin install logstash-input-crowdstrike_fdr
crowdstrike_fdr {
	# Must use new URL format:     https://github.com/aws/aws-sdk-ruby/issues/1620
	queue 						=> "https://sqs.us-west-1.amazonaws.com/<YOUR FDR DETAILS HERE>"
	region                     => "us-west-1"    # though this seems redundant,  we still need it for the S3 operations
	access_key_id            	=> "<YOUR KEY ID>"
	secret_access_key      		=> "<YOUR SECRET>"
	temporary_directory 		=> "logstash-s3-scratch"  # for storage of downloaded gzip files while processing
	sqs_delete_on_failure      => false
	sqs_skip_delete            => true     # don't delete files while testing
	visibility_timeout         => 120  # seconds     # adjust as needed
}

}

Need Help?

Need help? Try #logstash on freenode IRC or the https://discuss.elastic.co/c/logstash discussion forum.