Skip to content

fix: Readme and troubleshooting section #530

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/aws-lambda-java-profiler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on:
pull_request:
branches: [ '*' ]
paths:
- 'aws-lambda-java-profiler/**'
- 'experimental/aws-lambda-java-profiler/**'
- '.github/workflows/aws-lambda-java-profiler.yml'
push:
branches: ['*']
paths:
- 'aws-lambda-java-profiler/**'
- 'experimental/aws-lambda-java-profiler/**'
- '.github/workflows/aws-lambda-java-profiler.yml'

jobs:
Expand Down
1 change: 1 addition & 0 deletions experimental/aws-lambda-java-profiler/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ the result to is configurable using an environment variable.
- Ensure the Lambda function execution role has the necessary permissions to write to the S3 bucket.
- Verify that the environment variables are set correctly in your Lambda function configuration.
- Check CloudWatch logs for any error messages from the extension.
- The profiler extension uses dependencies such as `com.amazonaws:aws-lambda-java-core`, `com.amazonaws:aws-lambda-java-events` and `software.amazon.awssdk:s3`. If you're using the same dependencies in your Lambda function, make sure that the versions match those used by the extension as mismatched versions can lead to compatibility issues.

## Contributing

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ dependencies {
implementation 'com.amazonaws:aws-lambda-java-core:1.2.3'
implementation 'com.amazonaws:aws-lambda-java-events:3.11.5'
implementation("tools.profiler:async-profiler:3.0")
implementation("software.amazon.awssdk:s3:2.28.9") {
implementation("software.amazon.awssdk:s3:2.31.2") {
exclude group: 'software.amazon.awssdk', module: 'netty-nio-client'
}
}
Expand Down