Tutorials References Exercises Videos Menu
Paid Courses Website NEW Pro NEW

AWS X-Ray


AWS X-Ray

X-Ray provides a visual illustration of your services.

It's a service map that shows success or failure.

You can enable X-Ray for Lambda, API Gateway, and Amazon SNS with a single click.

You may also enable it for SQS queues that are not Lambda event sources.


AWS X-Ray Instrumentations

Using the X-Ray SDK, you may add custom instrumentation to your function.

Instrumentation is the capacity to track performance, identify faults, and write trace data.

Traces are written to X-Ray by services that enable active instrumentation.

Passive instrumentation is used to handle requests sampled by another service.

Services that allow passive instrumentation cannot produce traces, but they can contribute data to them.

All runtimes support active and passive instrumentation of incoming requests through Lambda.

AWS Lambda adds two new nodes to your service map: service and function.


AWS X-Ray Video

W3schools.com collaborates with Amazon Web Services to deliver digital training content to our students.


Active Instrumentation

It samples and instruments incoming requests.

It writes traces to X-Ray.

It can be integrated with:

  • AWS Lambda
  • Amazon API Gateway

Passive Instrumentation

Requests for instruments that another service has used.

It can add information to traces.

It can be integrated with:

  • AWS Lambda
  • Amazon API Gateway
  • Amazon SNS
  • Amazon SQS

Related reads:

Getting Started with AWS X-Ray
Tracing Lambda-Based Applications with AWS X-Ray
AWS Services that publish CloudWatch Metrics
Using CloudWatch Metric Math

AWS Serverless Exercises

Test Yourself With Exercises

Exercise:

What does Active Instrumentation do?

Samples and instruments incoming 

Start the Exercise