aws-xray Questions
3
Solved
Is there any way how to use XRay instrumentation for AWS NodeJS SDK v3? In SDK v2, AWSXray was able to capture any client and instrument it for tracing into XRay.
I have been trying the same thing ...
Sharleensharlene asked 3/6, 2022 at 7:6
3
Solved
In AWS console, we can easily enable cloudwatch logging and X-ray for a step function statemachine, but I want my resource fully managed by Terraform, from this page:https://registry.terraform.io/p...
Guanine asked 25/1, 2021 at 20:13
2
Solved
I am trying to use x-ray to trace requests which use an SNS-SQS fanout pattern.
The request comes from API GW, lambda proxy integration, published to SNS and delivered to a subscribed SQS which ha...
Out asked 30/5, 2019 at 11:9
3
Solved
Is there a way to enable X-Ray from the serverless.yml for Lambda functions?
I've added the X-Ray permissions in the file:
iamRoleStatements:
- Effect: "Allow"
Resource: "*"
Action:
- "xray:*...
Inquisition asked 24/10, 2017 at 14:2
3
I have an application that is distributed over two AWS accounts.
One part of the application ingest data from one account into the other account.
The producer part is realised as python lambda mi...
Disquisition asked 10/8, 2019 at 15:41
2
I am creating a function which is supposed to write to a dynamodb and I want to generate the trace using aws-xray-sdk.
My function is
private readonly docClient: DocumentClient = AWS.DynamoDB.Do...
Urania asked 13/2, 2020 at 12:17
3
I am trying to use implement the AWS X-ray into my current project (using Node.js and Serverless framework). I am trying to wire the X-ray to one of my lambda function, I got the problem of
Error...
Beater asked 29/11, 2018 at 19:24
0
I'm using open telemetry to export trace information of the following application:
A nodejs kafka producer sends messages to input-topic. It uses kafkajs instrumented with opentelemetry-instrument...
Bigamy asked 21/6, 2021 at 17:8
1
Solved
I want to be able to easily find the trace ID (and segment ID) for my lambda's execution in logs.
I realise this is available on the REPORT logs that the lambda does automatically, but that logs do...
Rotherham asked 19/5, 2021 at 7:55
2
I have a lambda function which does a transaction in DynamoDB similar to this.
try {
const reservationId = genId();
await transactionFn();
return {
statusCode: 200,
body: JSON.stringify({id:...
Prowel asked 27/1, 2020 at 11:1
1
I'm following the answer in this question, I tried to enable x-ray and it works, code I used:
resource "null_resource" "enable_step_function_logging" {
triggers = {
state_machi...
Junco asked 28/1, 2021 at 13:48
2
Solved
I would like to chain two lambda function calls in the xray service map to visualize the connections between the function calls and get the overall execution time.
My lambda functions are being ca...
Uncut asked 11/3, 2019 at 11:5
0
I was trying to set up lambda with provisioned concurrency. I enabled this feature for the latest version of my lambda function.
After that, i ran this function and watched logs in AWS X-RAY. I sa...
Waadt asked 7/12, 2020 at 12:34
1
I am using AWS lambda and eventbridge. One lambdaA sends event to eventbridge and another lambdaB receives this event and save it to database. What I'd like to do is to add xray trace data on this ...
F asked 29/7, 2020 at 0:27
0
My team implemented a pipeline with Computer Vision (OpenCV) and a DNN in Tensorflow and Keras using C++. This pipeline is an AWS Layer used by an AWS Lambda Function implemented in Python and this...
Benisch asked 26/2, 2020 at 17:54
2
I'm looking for a method to trace axios http requests in my node.js based aws lambda function. I've found a method to trace HTTP request on aws official docs
https://docs.aws.amazon.com/xray/latest...
Empedocles asked 9/10, 2018 at 8:50
2
Solved
We are adding XRAY to our Spring Boot application and I'm unable to resolve the following error:
Failed to begin subsegment named 'Amazon S3': segment cannot be found.
Here's the relevant parts...
Mazy asked 18/12, 2018 at 21:55
2
I have a web application (spring) which I want to instrument using AWS-XRay. I have added "AWSXRayServletFilter" in my web.xml, and the below snippet in my spring configuration class, as per docume...
Notepaper asked 10/10, 2017 at 5:32
2
Solved
I'm currently working on a lambda@edge function.
I cannot find any logs on CloudWatch or other debugging options.
When running the lambda using the "Test" button, the logs are written to CloudWatc...
Caudad asked 4/10, 2017 at 9:16
2
Solved
I've added X-ray instrumentation to my lambda(Node.js) and can see all services around it in the trace, but still cannot add the API Gateway calling it to the trace and the service map. Is there an...
Destefano asked 30/10, 2017 at 6:39
1
I have some Lambda functions written in C# running in the .NET Core 2.1 runtime in AWS. The cold start time on them is very large (>8s with 256MB, >4s with 512).
However, I'm not sure if it is jus...
Affluence asked 12/7, 2018 at 19:31
1
Solved
Is there a way to invoke lambda with X-Ray by using sam invoke local?
According to the idea which PaulMaddox mentioned,
I have tried the step below, and I don't know whether I misunderstood :
R...
Servility asked 15/6, 2018 at 2:53
2
Solved
I have the API Gateway that calls Lamdba function 1 and that invokes lambda function 2 in Go. I want to see these 2 functions joined in the service map.
The only way i have been able to do this so...
Dismast asked 21/3, 2018 at 0:38
1
Solved
I've gone over the documentation and cannot find a clear statement regarding how much latency is X-ray tracing supposed to add to Lambda function executions (and to other services as well). It shou...
Pooi asked 25/11, 2017 at 18:14
1
Solved
We've recently begun adding in AWS Xray into our Spring project and had success utilizing the AWSXRayServletFilter for creating Segments to cover our client requests.
Now we've also begun adding ...
History asked 22/8, 2017 at 20:32
1 Next >
© 2022 - 2024 — McMap. All rights reserved.