├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── accessories └── aws-xray-sampling-spec.md ├── api ├── build.gradle.kts └── src │ └── main │ └── proto │ └── hello-service.proto ├── appdb ├── build.gradle.kts └── gen-src │ └── com │ └── softwareaws │ └── xray │ └── examples │ └── appdb │ ├── Appdb.java │ ├── DefaultCatalog.java │ ├── Indexes.java │ ├── Keys.java │ ├── Tables.java │ └── tables │ ├── Planet.java │ ├── daos │ └── PlanetDao.java │ ├── interfaces │ └── IPlanet.java │ ├── pojos │ └── Planet.java │ └── records │ └── PlanetRecord.java ├── backend-webflux ├── build.gradle.kts └── src │ └── main │ ├── java │ └── com │ │ └── softwareaws │ │ └── xray │ │ └── examples │ │ └── webflux │ │ ├── AnimalHandler.java │ │ └── WebfluxApplication.java │ └── resources │ └── application.yml ├── backend ├── build.gradle.kts └── src │ └── main │ ├── java │ └── com │ │ └── softwareaws │ │ └── xray │ │ └── examples │ │ └── hello │ │ ├── Application.java │ │ └── HelloService.java │ └── resources │ └── log4j2.xml ├── dependencyManagement └── build.gradle.kts ├── docker-compose.yml ├── frontend ├── build.gradle.kts └── src │ └── main │ ├── java │ └── com │ │ └── softwareaws │ │ └── xray │ │ └── examples │ │ ├── AppController.java │ │ └── Application.java │ └── resources │ └── application.yml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lambda-api ├── build.gradle.kts └── src │ └── main │ ├── java │ └── io │ │ └── awsobservability │ │ └── opentelemetry │ │ └── playground │ │ └── lambdaapi │ │ └── HelloLambdaHandler.java │ └── resources │ └── log4j2.xml ├── licenses ├── classmate-1.5.1.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── commons-codec-1.13.jar │ └── META-INF │ │ ├── LICENSE.txt │ │ └── NOTICE.txt ├── commons-logging-1.1.1.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── commons-logging-1.1.3.jar │ └── META-INF │ │ ├── LICENSE.txt │ │ └── NOTICE.txt ├── httpasyncclient-4.1.4.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── httpclient-4.5.12.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── httpcore-4.4.13.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── httpcore-nio-4.4.13.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── jackson-annotations-2.11.0.jar │ └── META-INF │ │ └── LICENSE ├── jackson-core-2.11.0.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── jackson-databind-2.11.0.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── jackson-datatype-jsr310-2.11.0.jar │ └── META-INF │ │ └── LICENSE ├── jakarta.activation-api-1.2.2.jar │ └── META-INF │ │ ├── LICENSE.md │ │ └── NOTICE.md ├── jakarta.annotation-api-1.3.5.jar │ └── META-INF │ │ ├── LICENSE.md │ │ └── NOTICE.md ├── jakarta.el-3.0.3.jar │ └── META-INF │ │ ├── LICENSE.md │ │ └── NOTICE.md ├── jakarta.xml.bind-api-2.3.3.jar │ └── META-INF │ │ ├── LICENSE.md │ │ └── NOTICE.md ├── javax.activation-api-1.2.0.jar │ └── META-INF │ │ └── LICENSE.txt ├── javax.servlet-api-4.0.1.jar │ └── META-INF │ │ └── LICENSE.txt ├── jaxb-api-2.3.1.jar │ └── META-INF │ │ └── LICENSE.txt ├── jboss-logging-3.4.1.Final.jar │ └── META-INF │ │ └── LICENSE.txt ├── jetty-client-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-http-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-io-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-security-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-server-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-servlet-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-util-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-webapp-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── jetty-xml-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── joda-time-2.10.6.jar │ └── META-INF │ │ ├── LICENSE.txt │ │ └── NOTICE.txt ├── jooq-3.12.3.jar │ └── META-INF │ │ ├── LICENSE.txt │ │ └── README.txt ├── lettuce-core-5.3.1.RELEASE.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── licenses.md ├── log4j-api-2.13.3.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── log4j-core-2.13.3.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── log4j-slf4j-impl-2.13.3.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── log4j-to-slf4j-2.13.3.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── mysql-connector-java-8.0.20.jar │ └── META-INF │ │ ├── LICENSE │ │ └── README ├── okhttp-4.7.2.jar │ └── okhttp3 │ │ └── internal │ │ └── publicsuffix │ │ └── NOTICE ├── spring-aop-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-beans-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-context-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-core-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-expression-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-jcl-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-jdbc-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-tx-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-web-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-webflux-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── spring-webmvc-5.2.6.RELEASE.jar │ └── META-INF │ │ ├── license.txt │ │ └── notice.txt ├── tomcat-annotations-api-9.0.34.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── tomcat-embed-core-9.0.34.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── tomcat-embed-el-9.0.34.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── tomcat-embed-websocket-9.0.34.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE ├── websocket-api-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── websocket-client-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── websocket-common-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt ├── websocket-server-9.4.30.v20200611.jar │ └── META-INF │ │ ├── LICENSE │ │ └── NOTICE.txt └── websocket-servlet-9.4.30.v20200611.jar │ └── META-INF │ ├── LICENSE │ └── NOTICE.txt ├── otel └── collector-config.yml ├── scripts ├── db │ └── 00_setup.sql └── terraform │ ├── api-gateway.tf │ ├── backend.tf.bak │ ├── bootstrap.tf │ ├── configs │ └── otel-backend-service.json │ ├── ecs.tf │ ├── eks.tf │ ├── lambda-layers.tf │ ├── logs.tf │ └── network.tf └── settings.gradle.kts /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/README.md -------------------------------------------------------------------------------- /accessories/aws-xray-sampling-spec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/accessories/aws-xray-sampling-spec.md -------------------------------------------------------------------------------- /api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/api/build.gradle.kts -------------------------------------------------------------------------------- /api/src/main/proto/hello-service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/api/src/main/proto/hello-service.proto -------------------------------------------------------------------------------- /appdb/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/build.gradle.kts -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/Appdb.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/Appdb.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/DefaultCatalog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/DefaultCatalog.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/Indexes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/Indexes.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/Keys.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/Keys.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/Tables.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/Tables.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/Planet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/Planet.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/daos/PlanetDao.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/daos/PlanetDao.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/interfaces/IPlanet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/interfaces/IPlanet.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/pojos/Planet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/pojos/Planet.java -------------------------------------------------------------------------------- /appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/records/PlanetRecord.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/appdb/gen-src/com/softwareaws/xray/examples/appdb/tables/records/PlanetRecord.java -------------------------------------------------------------------------------- /backend-webflux/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend-webflux/build.gradle.kts -------------------------------------------------------------------------------- /backend-webflux/src/main/java/com/softwareaws/xray/examples/webflux/AnimalHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend-webflux/src/main/java/com/softwareaws/xray/examples/webflux/AnimalHandler.java -------------------------------------------------------------------------------- /backend-webflux/src/main/java/com/softwareaws/xray/examples/webflux/WebfluxApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend-webflux/src/main/java/com/softwareaws/xray/examples/webflux/WebfluxApplication.java -------------------------------------------------------------------------------- /backend-webflux/src/main/resources/application.yml: -------------------------------------------------------------------------------- 1 | server: 2 | port: 8082 3 | -------------------------------------------------------------------------------- /backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend/build.gradle.kts -------------------------------------------------------------------------------- /backend/src/main/java/com/softwareaws/xray/examples/hello/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend/src/main/java/com/softwareaws/xray/examples/hello/Application.java -------------------------------------------------------------------------------- /backend/src/main/java/com/softwareaws/xray/examples/hello/HelloService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend/src/main/java/com/softwareaws/xray/examples/hello/HelloService.java -------------------------------------------------------------------------------- /backend/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/backend/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /dependencyManagement/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/dependencyManagement/build.gradle.kts -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /frontend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/frontend/build.gradle.kts -------------------------------------------------------------------------------- /frontend/src/main/java/com/softwareaws/xray/examples/AppController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/frontend/src/main/java/com/softwareaws/xray/examples/AppController.java -------------------------------------------------------------------------------- /frontend/src/main/java/com/softwareaws/xray/examples/Application.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/frontend/src/main/java/com/softwareaws/xray/examples/Application.java -------------------------------------------------------------------------------- /frontend/src/main/resources/application.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/frontend/src/main/resources/application.yml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lambda-api/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/lambda-api/build.gradle.kts -------------------------------------------------------------------------------- /lambda-api/src/main/java/io/awsobservability/opentelemetry/playground/lambdaapi/HelloLambdaHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/lambda-api/src/main/java/io/awsobservability/opentelemetry/playground/lambdaapi/HelloLambdaHandler.java -------------------------------------------------------------------------------- /lambda-api/src/main/resources/log4j2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/lambda-api/src/main/resources/log4j2.xml -------------------------------------------------------------------------------- /licenses/classmate-1.5.1.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/classmate-1.5.1.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/classmate-1.5.1.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/classmate-1.5.1.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/commons-codec-1.13.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-codec-1.13.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/commons-codec-1.13.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-codec-1.13.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/commons-logging-1.1.1.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-logging-1.1.1.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/commons-logging-1.1.1.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-logging-1.1.1.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/commons-logging-1.1.3.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-logging-1.1.3.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/commons-logging-1.1.3.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/commons-logging-1.1.3.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/httpasyncclient-4.1.4.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpasyncclient-4.1.4.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/httpasyncclient-4.1.4.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpasyncclient-4.1.4.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/httpclient-4.5.12.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpclient-4.5.12.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/httpclient-4.5.12.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpclient-4.5.12.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/httpcore-4.4.13.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpcore-4.4.13.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/httpcore-4.4.13.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpcore-4.4.13.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/httpcore-nio-4.4.13.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpcore-nio-4.4.13.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/httpcore-nio-4.4.13.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/httpcore-nio-4.4.13.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/jackson-annotations-2.11.0.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-annotations-2.11.0.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jackson-core-2.11.0.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-core-2.11.0.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jackson-core-2.11.0.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-core-2.11.0.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/jackson-databind-2.11.0.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-databind-2.11.0.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jackson-databind-2.11.0.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-databind-2.11.0.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/jackson-datatype-jsr310-2.11.0.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jackson-datatype-jsr310-2.11.0.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jakarta.activation-api-1.2.2.jar/META-INF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.activation-api-1.2.2.jar/META-INF/LICENSE.md -------------------------------------------------------------------------------- /licenses/jakarta.activation-api-1.2.2.jar/META-INF/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.activation-api-1.2.2.jar/META-INF/NOTICE.md -------------------------------------------------------------------------------- /licenses/jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.annotation-api-1.3.5.jar/META-INF/LICENSE.md -------------------------------------------------------------------------------- /licenses/jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.annotation-api-1.3.5.jar/META-INF/NOTICE.md -------------------------------------------------------------------------------- /licenses/jakarta.el-3.0.3.jar/META-INF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.el-3.0.3.jar/META-INF/LICENSE.md -------------------------------------------------------------------------------- /licenses/jakarta.el-3.0.3.jar/META-INF/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.el-3.0.3.jar/META-INF/NOTICE.md -------------------------------------------------------------------------------- /licenses/jakarta.xml.bind-api-2.3.3.jar/META-INF/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.xml.bind-api-2.3.3.jar/META-INF/LICENSE.md -------------------------------------------------------------------------------- /licenses/jakarta.xml.bind-api-2.3.3.jar/META-INF/NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jakarta.xml.bind-api-2.3.3.jar/META-INF/NOTICE.md -------------------------------------------------------------------------------- /licenses/javax.activation-api-1.2.0.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/javax.activation-api-1.2.0.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/javax.servlet-api-4.0.1.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/javax.servlet-api-4.0.1.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/jaxb-api-2.3.1.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jaxb-api-2.3.1.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/jboss-logging-3.4.1.Final.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jboss-logging-3.4.1.Final.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/jetty-client-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-client-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-client-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-client-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-http-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-http-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-http-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-http-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-io-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-io-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-io-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-io-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-security-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-security-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-security-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-security-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-server-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-server-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-server-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-server-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-servlet-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-servlet-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-servlet-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-servlet-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-util-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-util-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-util-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-util-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-webapp-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-webapp-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-webapp-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-webapp-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jetty-xml-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-xml-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/jetty-xml-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jetty-xml-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/joda-time-2.10.6.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/joda-time-2.10.6.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/joda-time-2.10.6.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/joda-time-2.10.6.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/jooq-3.12.3.jar/META-INF/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jooq-3.12.3.jar/META-INF/LICENSE.txt -------------------------------------------------------------------------------- /licenses/jooq-3.12.3.jar/META-INF/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/jooq-3.12.3.jar/META-INF/README.txt -------------------------------------------------------------------------------- /licenses/lettuce-core-5.3.1.RELEASE.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/lettuce-core-5.3.1.RELEASE.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/lettuce-core-5.3.1.RELEASE.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/lettuce-core-5.3.1.RELEASE.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/licenses.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/licenses.md -------------------------------------------------------------------------------- /licenses/log4j-api-2.13.3.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-api-2.13.3.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/log4j-api-2.13.3.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-api-2.13.3.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/log4j-core-2.13.3.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-core-2.13.3.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/log4j-core-2.13.3.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-core-2.13.3.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/log4j-slf4j-impl-2.13.3.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-slf4j-impl-2.13.3.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/log4j-slf4j-impl-2.13.3.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-slf4j-impl-2.13.3.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/log4j-to-slf4j-2.13.3.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-to-slf4j-2.13.3.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/log4j-to-slf4j-2.13.3.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/log4j-to-slf4j-2.13.3.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/mysql-connector-java-8.0.20.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/mysql-connector-java-8.0.20.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/mysql-connector-java-8.0.20.jar/META-INF/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/mysql-connector-java-8.0.20.jar/META-INF/README -------------------------------------------------------------------------------- /licenses/okhttp-4.7.2.jar/okhttp3/internal/publicsuffix/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/okhttp-4.7.2.jar/okhttp3/internal/publicsuffix/NOTICE -------------------------------------------------------------------------------- /licenses/spring-aop-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-aop-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-aop-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-aop-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-beans-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-beans-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-beans-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-beans-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-context-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-context-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-context-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-context-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-core-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-core-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-core-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-core-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-expression-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-expression-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-expression-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-expression-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-jcl-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-jcl-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-jcl-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-jcl-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-jdbc-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-jdbc-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-jdbc-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-jdbc-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-tx-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-tx-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-tx-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-tx-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-web-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-web-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-web-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-web-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-webflux-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-webflux-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-webflux-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-webflux-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/spring-webmvc-5.2.6.RELEASE.jar/META-INF/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-webmvc-5.2.6.RELEASE.jar/META-INF/license.txt -------------------------------------------------------------------------------- /licenses/spring-webmvc-5.2.6.RELEASE.jar/META-INF/notice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/spring-webmvc-5.2.6.RELEASE.jar/META-INF/notice.txt -------------------------------------------------------------------------------- /licenses/tomcat-annotations-api-9.0.34.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-annotations-api-9.0.34.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/tomcat-annotations-api-9.0.34.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-annotations-api-9.0.34.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/tomcat-embed-core-9.0.34.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-core-9.0.34.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/tomcat-embed-core-9.0.34.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-core-9.0.34.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/tomcat-embed-el-9.0.34.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-el-9.0.34.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/tomcat-embed-el-9.0.34.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-el-9.0.34.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/tomcat-embed-websocket-9.0.34.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-websocket-9.0.34.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/tomcat-embed-websocket-9.0.34.jar/META-INF/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/tomcat-embed-websocket-9.0.34.jar/META-INF/NOTICE -------------------------------------------------------------------------------- /licenses/websocket-api-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-api-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/websocket-api-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-api-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/websocket-client-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-client-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/websocket-client-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-client-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/websocket-common-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-common-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/websocket-common-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-common-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/websocket-server-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-server-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/websocket-server-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-server-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /licenses/websocket-servlet-9.4.30.v20200611.jar/META-INF/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-servlet-9.4.30.v20200611.jar/META-INF/LICENSE -------------------------------------------------------------------------------- /licenses/websocket-servlet-9.4.30.v20200611.jar/META-INF/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/licenses/websocket-servlet-9.4.30.v20200611.jar/META-INF/NOTICE.txt -------------------------------------------------------------------------------- /otel/collector-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/otel/collector-config.yml -------------------------------------------------------------------------------- /scripts/db/00_setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/db/00_setup.sql -------------------------------------------------------------------------------- /scripts/terraform/api-gateway.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/api-gateway.tf -------------------------------------------------------------------------------- /scripts/terraform/backend.tf.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/backend.tf.bak -------------------------------------------------------------------------------- /scripts/terraform/bootstrap.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/bootstrap.tf -------------------------------------------------------------------------------- /scripts/terraform/configs/otel-backend-service.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/configs/otel-backend-service.json -------------------------------------------------------------------------------- /scripts/terraform/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/ecs.tf -------------------------------------------------------------------------------- /scripts/terraform/eks.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/eks.tf -------------------------------------------------------------------------------- /scripts/terraform/lambda-layers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/lambda-layers.tf -------------------------------------------------------------------------------- /scripts/terraform/logs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/logs.tf -------------------------------------------------------------------------------- /scripts/terraform/network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/scripts/terraform/network.tf -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-observability/aws-otel-playground/HEAD/settings.gradle.kts --------------------------------------------------------------------------------