Skip to content

Commit

Permalink
Merge pull request #54 from logzio/feature/aws-batch-support
Browse files Browse the repository at this point in the history
0.2.1
  • Loading branch information
yotamloe authored Aug 19, 2024
2 parents ce2770e + dad0497 commit 36e6855
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This project deploys instrumentation that allows shipping Cloudwatch logs to Log

## Overview

This project will uses a Cloudformation template to create a Stack that deploys:
This project will use a Cloudformation template to create a Stack that deploys:
* Firehose Delivery Stream with Logz.io as the stream's destination.
* Lambda function that adds Subscription Filters to Cloudwatch Log Groups, as defined by user's input.
* Roles, log groups, and other resources that are necessary for this instrumentation.
Expand Down Expand Up @@ -98,6 +98,7 @@ Once new logs are added to your chosen log group, they will be sent to your Logz
> If you've used the `services` field, you'll have to **wait 6 minutes** before creating new log groups for your chosen services. This is due to cold start and custom resource invocation, that can cause the Lambda to behave unexpectedly.
### Changelog:
- **0.2.1**: Add support for `aws-batch` service.
- **0.2.0**: Option to provide `customLogGroups` exceeding 4KB.
- **0.1.0**:
Introduced the ability to directly update service and custom log parameters within the stack.
Expand Down
1 change: 1 addition & 0 deletions common/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ func GetServicesMap() map[string]string {
"lambda": "/aws/lambda/",
"macie": "/aws/macie/",
"amazon-mq": "/aws/amazonmq/broker/",
"batch": "/aws/batch/",
}
}

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ go 1.19
require (
github.com/aws/aws-lambda-go v1.47.0
github.com/aws/aws-sdk-go v1.54.16
github.com/aws/aws-sdk-go-v2 v1.30.1
github.com/aws/aws-sdk-go-v2/config v1.27.24
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.32.1
github.com/aws/aws-secretsmanager-caching-go v1.2.0
Expand All @@ -14,6 +13,7 @@ require (
)

require (
github.com/aws/aws-sdk-go-v2 v1.30.1 // indirect
github.com/aws/aws-sdk-go-v2/credentials v1.17.24 // indirect
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.9 // indirect
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.13 // indirect
Expand Down

0 comments on commit 36e6855

Please sign in to comment.