Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 323

A developer is building a microservices-based application by using Python on AWS and several AWS services. The developer must use AWS X-Ray. The developer views the service map by using the console to view the service dependencies. During testing, the developer notices that some services are missing from the service map.

What can the developer do to ensure that all services appear in the X-Ray service map?

    Correct Answer: B

    To ensure that all services appear in the AWS X-Ray service map, the developer must instrument the application using the X-Ray SDK for Python and install the X-Ray SDK for all the services that the application uses. This ensures that each service can capture and send the necessary telemetry data to X-Ray, allowing for accurate service dependency mapping.

Discussion
tgvOption: B

Instrument the application by using the X-Ray SDK for Python

Americo32

Opção B

tomchandler077

B ---->>> To ensure that all services appear in the AWS X-Ray service map, it's essential that each component of the application is properly instrumented to send data to X-Ray. The X-Ray SDK must be used within the application to capture and send the necessary telemetry data to X-Ray.

65703c1Option: B

B is the correct answer.