This project based on awslabs/amazon-elasticsearch-lambda-samples Sample code for AWS Lambda to get AWS ELB log files from S3, parse and add them to an Amazon Elasticsearch Service domain.
-
On your development machine, download and install Node.js.
-
Go to root folder of the repository and install node dependencies by running:
npm install
Verify that these are installed within the
node_modules
subdirectory. -
Create a zip file to package the index.js and the
node_modules
directory
The zip file thus created is the Lambda Deployment Package.
Set up the Lambda function and the S3 bucket. You can reffer to for more details > Lambda-S3 Walkthrough.
Please keep in mind the following notes and configuration overrides:
-
The S3 bucket must be created in the same region as Lambda is, so that it can push events to Lambda.
-
When registering the S3 bucket as the data-source in Lambda, add a filter for files having
.log
suffix, so that Lambda picks up only apache log files. -
The following authorizations are required:
- Lambda permits S3 to push event notification to it
- S3 permits Lambda to fetch the created objects from a given bucket
- ES permits Lambda to add documents to the given domain
- Lambda handler is set to
index.handler
- Don't forget the ES domain parameters in index.js
The Lambda console provides a simple way to create an IAM role with policies for (1).
For (2), when creating the IAM role, choose the "S3 execution role" option; this will load the role with permissions to read from the S3 bucket.
For (3), add the following access policy to permit ES operations to the role.
{
"Sid": "AllowLambdaAccess",
"Effect": "Allow",
"Principal": {
"AWS": "arn:aws:iam::123456789012:role/lambda_s3_exec_role"
},
"Action": "es:*",
"Resource": "arn:aws:es:eu-west-1:123456789012:domain/elastic-search-domain/*"
}
For (5)
var esDomain = {
endpoint: 'elastic-search-domain-fs12fdwrdq2ahilw4zbrcocmmy.eu-west-1.es.amazonaws.com',
region: 'eu-west-1',
index: 'logstash-' + indexTimestamp,
doctype: 'elb-access-logs'
};
Event source Add Event source for your lambda function
Event source type: S3
Bucket: s3-elb-access-logs
Event type: Object Created (All)
Prefix: public-elb/AWSLogs/123456789012/elasticloadbalancing/eu-west-1/
Suffix: .log
#License ASL