Skip to content

Commit 7ba0ee0

Browse files
authored
docs: update README.md on current status and setup instructions for the project (#282)
Fix bug report URL and update setup instructions.
1 parent c221c91 commit 7ba0ee0

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Backport any changes made in the `docs` directory to the branches that you'd lik
1212

1313
## Getting Help
1414

15-
If you find a bug, please [report an issue](https://github.com/elastic/apm-agent-go/issues).
15+
If you find a bug, please [report an issue](https://github.com/elastic/apm-aws-lambda/issues).
1616
For any other assistance, please open or add to a topic on the [APM discuss forum](https://discuss.elastic.co/c/apm).
1717

1818
## Contributing

TESTING.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,7 @@ To run an unreleased version of this extension, you will need to ensure that you
1010
To build the extension in the `bin/extensions` folder, run the following commands.
1111

1212
```bash
13-
$ cd apm-lambda-extension
14-
$ GOOS=linux GOARCH=amd64 go build -o bin/extensions/apm-lambda-extension main.go
15-
$ chmod +x bin/extensions/apm-lambda-extension
13+
$ make build
1614
```
1715

1816
### Layer Setup Process
@@ -24,8 +22,7 @@ The extensions .zip file should contain a root directory called `extensions/`, w
2422
To create the zip file, run the following commands from the root of your project folder.
2523

2624
```bash
27-
$ cd apm-lambda-extension/bin
28-
$ zip -r extension.zip extensions/
25+
$ make zip
2926
```
3027

3128
To publish the zip file as a layer, run the following command using the AWS cli (presumes you have v2 of the aws-cli installed).
@@ -37,7 +34,9 @@ Publish a new layer using the `extension.zip`. The output of the following comma
3734
aws lambda publish-layer-version \
3835
--layer-name "apm-lambda-extension" \
3936
--region <use your region> \
40-
--zip-file "fileb://extension.zip"
37+
--description "AWS Lambda Extension Layer for Elastic APM" \
38+
--license "Apache-2.0" \
39+
--zip-file "fileb://./bin/extension.zip"
4140
```
4241

4342
The output from the above command will include a `LayerVersionArn` field, which contains the unique string identifier for your layer. The will look something like the following.

0 commit comments

Comments
 (0)