You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,13 @@ Find the latest version here (the format of the version will be n.n.n):
88
88
}
89
89
}
90
90
```
91
+
92
+
## LambdaAuto tracing with lambda layer
93
+
94
+
*Add to your lambda a new layer with the arn from here
95
+
* Add environment variable `JAVA_TOOL_OPTIONS` and set it to `-javaagent:/opt/lumigo-java/lumigo-agent.jar` (This is instead of the flag for more than java11 support)
96
+
*Add the `LUMIGO_TRACER_TOKEN` env var.
97
+
91
98
92
99
### Configuration
93
100
@@ -120,7 +127,7 @@ class MyFunction implements RequestHandler<String, String> {
120
127
### Support Java 11 and Above
121
128
122
129
Add the environment variable `JAVA_TOOL_OPTIONS` to your Lambda functions and set it to
123
-
`-Djdk.attach.allowAttachSelf=true` in addition to the manual code mentioned above.
130
+
`-Djdk.attach.allowAttachSelf=true` in addition to the manual code mentioned above (This is not needed for the auto trace with lambda layer).
0 commit comments