├── .ebextensions ├── options.config └── xray.config ├── .gitignore ├── LICENSE ├── README.md ├── app.js ├── package.json ├── sampling-rules.json ├── static ├── bootstrap │ ├── LICENSE │ ├── css │ │ ├── jumbotron-narrow.css │ │ └── theme │ │ │ ├── amelia │ │ │ └── bootstrap.css │ │ │ ├── default │ │ │ └── bootstrap.css │ │ │ ├── flatly │ │ │ └── bootstrap.css │ │ │ ├── slate │ │ │ └── bootstrap.css │ │ │ └── united │ │ │ └── bootstrap.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── js │ │ └── bootstrap.min.js └── jquery │ ├── MIT-LICENSE.txt │ └── jquery-1.11.3.min.js └── views └── index.pug /.ebextensions/options.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/.ebextensions/options.config -------------------------------------------------------------------------------- /.ebextensions/xray.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/.ebextensions/xray.config -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/app.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/package.json -------------------------------------------------------------------------------- /sampling-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/sampling-rules.json -------------------------------------------------------------------------------- /static/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/LICENSE -------------------------------------------------------------------------------- /static/bootstrap/css/jumbotron-narrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/jumbotron-narrow.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/amelia/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/theme/amelia/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/default/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/theme/default/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/flatly/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/theme/flatly/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/slate/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/theme/slate/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/theme/united/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/css/theme/united/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/jquery/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/jquery/MIT-LICENSE.txt -------------------------------------------------------------------------------- /static/jquery/jquery-1.11.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/static/jquery/jquery-1.11.3.min.js -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/backspace-academy/aws-nodejs-eb-x-ray/HEAD/views/index.pug --------------------------------------------------------------------------------