Skip to content

Sample Application for the AWS X-Ray SDK with support for OpenTelemetry

License

Notifications You must be signed in to change notification settings

wangzlei/aws-xray-sdk-with-opentelemetry-sample

 
 

Repository files navigation

AWS X-Ray With OpenTelemetry Sample Application

This is a fork of the AWS X-Ray Sample Application running on ECS that has been modified to demonstrate tracing using OpenTelemetry APIs.

For more information see:

Prerequisites

Install the following tools to create Docker images, upload them to ECR, and register task definitions with ECS.

  • Docker
  • AWS CLI v1.14.0+
  • EB CLI
  • AWS user with permission for IAM, DynamoDB, SNS, ECS, CloudWatch Logs, and ECR
  • See the AWS X-Ray SDK with OpenTelemetry's README for instrctions on building the SDK locally

To deploy this demo

  1. Update aws.env in the root of the repo with your account ID and region.

  2. Create the CloudFormation stack by running make stack in the cloudformation directory. (If you already have a stack from the ecs or fargate branches, run make update instead.)

     ~/eb-java-scorekeep/cloudformation$ make stack
    
  3. Build and publish the Docker containers for the API, frontend, and X-Ray daemon by running make publish in each folder.

     ~/eb-java-scorekeep$ make publish
     ~/eb-java-scorekeep/scorekeep-frontend$ make publish
     ~/eb-java-scorekeep/xray-daemon$ make publish
    
  4. Generate the task definition by running the generate-dockerrun script.

     ~/eb-java-scorekeep/task-definition$ ./generate-dockerrun
    
  5. Initialize an Elastic Beanstalk repo in the task-definition folder. If you have an SSH key, you can specify it with the -k option.

     ~/eb-java-scorekeep/task-definition$ eb init -p multi-container-docker -r us-east-1 scorekeep-ecs
    
  6. Create a Multicontainer Docker environment.

     ~/eb-java-scorekeep/task-definition$ eb create -d -i m5.large --sample --instance_profile scorekeep-beanstalk-ecs-role scorekeep
    
  7. Deploy the task definition.

     ~/eb-java-scorekeep/task-definition$ eb deploy
    

Scorekeep

Scorekeep is a RESTful web API implemented in Java that uses Spring to provide an HTTP interface for creating and managing game sessions and users. This project includes the Scorekeep API and a front-end web app that consumes it. The front end and API can run on the same server and domain or separately, with the API running in Elastic Beanstalk and the front end served statically by a CDN.

The master branch shows the use of Spring, Angular, nginx, the AWS SDK for Java, Amazon DynamoDB, Gradle, CORS, and AWS Elastic Beanstalk features that enable you to:

  • Run both components on the same Amazon EC2 instance.
  • Create required DynamoDB and Amazon SNS resources as part of the Elastic Beanstalk environment.
  • Build the API from source on instance during deployment.

Other branches extend the application's functionality and show the use of other AWS services. See the readme in each branch for details about the integration and instructions for use.

Sections

Prerequisites

  • User permissions - Elastic Beanstalk, IAM (If you don't have permission to manage permissions in IAM, get someone who does to add DynamoDB and SNS permissions to the default Elastic Beanstalk instance profile.)
  • Instance profile with permission to use DynamoDB and SNS
  • Elastic Beanstalk environment running Java 8

Get permission to use Elastic Beanstalk

If you're using an IAM user with limited permissions, good work! Add Elastic Beanstalk permissions to your user account to get started.

To add Elastic Beanstalk permissions to an IAM user

  1. Sign in to a user or role with administrator permissions.
  2. Open the users page of the IAM console.
  3. Choose a user.
  4. Choose Add permissions.
  5. Add the AWSElasticBeanstalkFullAccess managed policy.

Create an Elastic Beanstalk environment

Create a Java 8 SE environment in Elastic Beanstalk to host the application.

To create an Elastic Beanstalk environment running the Java 8 SE platform

  1. Open the AWS Elastic Beanstalk console with this preconfigured link: console.aws.amazon.com/elasticbeanstalk/#/newApplication?applicationName=scorekeep...
  2. Choose Create application to create an application with an environment running the Java 8 SE platform.
  3. When your environment is ready, the console redirects you to the environment Dashboard.
  4. Click the URL at the top of the page to open the site.

Give the application permission to use DynamoDB and SNS

When the Scorekeep API runs in Elastic Beanstalk, it uses the permissions of its EC2 instance to call AWS. Elastic Beanstalk provides a default instance profile that you can extend to grant the application the permissions it needs to read from and write to resource tables in DynamoDB, and send notifications with SNS.

To add DynamoDB and SNS permissions to the instances in your Elastic Beanstalk environment

  1. Open the Elastic Beanstalk instance profile in the IAM console: aws-elasticbeanstalk-ec2-role
  2. Choose Attach Policy.
  3. Select AmazonDynamoDBFullAccess, and then choose Attach Policy.
  4. Select AmazonSNSFullAccess, and then choose Attach Policy.

Deploying the application

Deploy the source code for the project to your Elastic Beanstalk environment.

To deploy the source code

  1. Download the source bundle: eb-java-scorekeep-v1.zip
  2. Open the Elastic Beanstalk console.
  3. Choose your environment's name to open the Dashboard.
  4. Choose Upload and Deploy.
  5. Upload eb-java-scorekeep-v1.zip and choose Deploy.
  6. Open the environment URL.

Scorekeep flow

Click through the app to explore its functionality. Use the network console in your browser to see the HTTP requests that it sends to the API to read and write users, sessions, games, moves, and game state to DynamoDB via the API.

Configuring notifications

The API uses SNS to send a notification email when a game ends. To enable notifications, configure your email address in an environment variable.

To enable notifications

  1. Open your environment's page in the environment management console.
  2. Choose Configuration.
  3. Choose Software Configuration
  4. Under Environment Properties, set NOTIFICATION_TOPIC to your email address.
  5. Check your email for a subscription confirmation.
  6. Complete a game to trigger a notification.

How it works

The project includes two independent components

  • An HTML and JavaScript front end in Angular 1.5
  • A Java backend that uses Spring to provide a public API

Backend

The API runs at paths under /api that provide access to user, session, game, state, and move resources stored as JSON documents in DynamoDB. The API is RESTful, so you can create resources by sending HTTP POST requests to the resource path, for example /api/session. See the test script for example requests with cURL.

The application includes a configuration file that creates a DynamoDB table for each resource type.

The Buildfile tells Elastic Beanstalk to run gradle build during deployment to create an executable JAR file. The Procfile tells Elastic Beanstalk to run that JAR on port 5000.

Front end

The front end is an Angular 1.5 web app that uses $resource objects to perform CRUD operations on resources defined by the API. Users first encounter the main view and controller and progress through session and game views at routes that include the IDs of resources that the user creates.

The front end is served statically by the nginx proxy at the root path. The nginx.conf file in the source code overwrites the default configuration provided by the Elastic Beanstalk Java platform to serve the front end statically, and forward requests to paths starting with /api to the API running on port 5000.

Running the project locally

You can run both the API and front end locally with Gradle and the Spring Boot CLI. To get started, clone this repository or extract the contents of the source bundle that you downloaded earlier.

Run the Scorekeep API with Gradle

The API requires DynamoDB tables to exist in AWS to run locally. These tables are created by this configuration file when you launch the application in Elastic Beanstalk. If you terminate the environment, the tables are deleted. To create the tables without a running environment, use the configuration file as a template to create an AWS CloudFormation stack.

The application reads an environment variable named AWS_REGION to determine which region to connect to for calls to DynamoDB. In Elastic Beanstalk, this variable is set in a configuration file that reads the current region from CloudFormation and creates an Elastic Beanstalk environment property.

Set the environment variable and then use Gradle to build the API and run it locally on port 5000.

~/eb-java-scorekeep$ export AWS_REGION=us-west-2
~/eb-java-scorekeep$ gradle bootrun

The application needs AWS credentials to communicate with DynamoDB. In Elastic Beanstalk, Scorekeep gets credentials from the instance profile, which is the IAM role that is attached to the EC2 instance that runs the code. When you run the application locally, the AWS SDK for Java can retrieve credentials from files in ~/.aws/ or environment variables.

Follow the instructions in the AWS SDK for Java Developer Guide to provide access keys to the application: Set up AWS Credentials for Development.

Use the test script to verify that the API works.

~/eb-java-scorekeep$ ./bin/test-api.sh

The script targets localhost:5000. However, you can point it at the API running on any host by modifying the API variable at the top of the file.

Run the front end and configure it for local testing

Use the Spring Boot CLI to run the front end on port 8080.

~/eb-java-scorekeep$ spring run app.groovy

Open the app in a browser: localhost:8080

The app loads but can't hit the API, because it's trying to call paths relative to its own root, localhost:8080, but the API is running on localhost:5000 (or in Elastic Beanstalk). To fix this, configure the app with the full URL of the API.

To configure the web app with an absolute path to the API

  1. Open eb-java-scorekeep/public/app/scorekeep.js.

  2. Set the value of the api module to the full URL of the API.

    • Use the domain name of your environment to test changes to the front end without running the backend locally.

         module.value('api', 'http://scorekeep.XXXXXXXX.elasticbeanstalk.com/api/');
      
    • Use localhost:5000 to test both front end and backend changes when running both locally.

         module.value('api', 'http://localhost:5000/api/');
      
  3. Refresh the app in your browser to load the updated script.

Configure the API for CORS

The API includes a CORS (cross-origin resource sharing) filter that allows traffic from localhost:8080.

  private static UrlBasedCorsConfigurationSource configurationSource() {
    CorsConfiguration config = new CorsConfiguration();
    config.setAllowCredentials(true);
    // Modify allowed origins if you run the client at a different endpoint
    config.addAllowedOrigin("http://localhost:8080");
    config.addAllowedHeader("*");
    config.addAllowedMethod("*");
    UrlBasedCorsConfigurationSource source = new UrlBasedCorsConfigurationSource();
    source.registerCorsConfiguration("/**", config);
    return source;
  }

This lets requests originating from a front end hosted locally on port 8080 to send requests to the API hosted on a different local port (i.e., localhost:5000) or on Elastic Beanstalk. This enables you to work on the front end locally and see changes immediately, without needing to deploy the source to your environment. When you make changes to the HTML or CSS in the app, simply refresh the browser.

When you run both the API and front end in the same Elastic Beanstalk environment, CORS is not required because the scripts that contact the API and the API itself are hosted on the same domain. To run the front end on a different port locally, or even host it on a completely different domain, add an allowed origin to the filter to whitelist it in the API.

To extend the CORS configuration to allow cross-origin requests from specific domains

  1. Open src/main/java/scorekeepSimpleCORSFilter.java.

  2. Add an allowed origin with the URL serving the front end.

     config.addAllowedOrigin("http://localhost:8080");
     config.addAllowedOrigin("http://scorekeep.XXXXXXXX.elasticbeanstalk.com");
    
  3. Save the files and commit your changes.

     ~/eb-java-scorekeep$ git commit -am "Update API domain"
    
  4. Create an archive of the updated source code.

     ~/eb-java-scorekeep$ git archive -o scorekeep-v1.zip HEAD
    
  5. Open your environment's Dashboard in the Elastic Beanstalk console and deploy the updated code.

Contributing

This sample application could be better with your help!

License

This project is licensed under the MIT No Attribution License.

About

Sample Application for the AWS X-Ray SDK with support for OpenTelemetry

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 61.0%
  • JavaScript 15.9%
  • HTML 9.0%
  • Makefile 4.8%
  • Shell 4.8%
  • CSS 3.9%
  • Dockerfile 0.6%