├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── otelconf.yaml ├── part1 ├── Dockerfile ├── grocery_store.py └── shopper.py ├── part2 ├── Dockerfile ├── go.mod ├── go.sum └── inventory.go ├── part3 ├── Checkout │ ├── .gitignore │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── checkout │ │ │ │ ├── CheckoutApplication.java │ │ │ │ ├── CheckoutController.java │ │ │ │ ├── LineItem.java │ │ │ │ └── Order.java │ │ └── resources │ │ │ └── application.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── Checkout │ │ └── CheckoutApplicationTests.java └── Dockerfile └── part4 ├── collector-compose-example.yaml └── collector.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /otelconf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/otelconf.yaml -------------------------------------------------------------------------------- /part1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part1/Dockerfile -------------------------------------------------------------------------------- /part1/grocery_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part1/grocery_store.py -------------------------------------------------------------------------------- /part1/shopper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part1/shopper.py -------------------------------------------------------------------------------- /part2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part2/Dockerfile -------------------------------------------------------------------------------- /part2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part2/go.mod -------------------------------------------------------------------------------- /part2/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part2/go.sum -------------------------------------------------------------------------------- /part2/inventory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part2/inventory.go -------------------------------------------------------------------------------- /part3/Checkout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/.gitignore -------------------------------------------------------------------------------- /part3/Checkout/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/mvnw -------------------------------------------------------------------------------- /part3/Checkout/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/mvnw.cmd -------------------------------------------------------------------------------- /part3/Checkout/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/pom.xml -------------------------------------------------------------------------------- /part3/Checkout/src/main/java/com/example/checkout/CheckoutApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/src/main/java/com/example/checkout/CheckoutApplication.java -------------------------------------------------------------------------------- /part3/Checkout/src/main/java/com/example/checkout/CheckoutController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/src/main/java/com/example/checkout/CheckoutController.java -------------------------------------------------------------------------------- /part3/Checkout/src/main/java/com/example/checkout/LineItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/src/main/java/com/example/checkout/LineItem.java -------------------------------------------------------------------------------- /part3/Checkout/src/main/java/com/example/checkout/Order.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/src/main/java/com/example/checkout/Order.java -------------------------------------------------------------------------------- /part3/Checkout/src/main/resources/application.properties: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /part3/Checkout/src/test/java/com/example/Checkout/CheckoutApplicationTests.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Checkout/src/test/java/com/example/Checkout/CheckoutApplicationTests.java -------------------------------------------------------------------------------- /part3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part3/Dockerfile -------------------------------------------------------------------------------- /part4/collector-compose-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part4/collector-compose-example.yaml -------------------------------------------------------------------------------- /part4/collector.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeboten/practical-otel/HEAD/part4/collector.yaml --------------------------------------------------------------------------------