Each service will have their own readme with further instructions on what the service does, and how it was instrumented using OpenTelemetry.
Online Boutique is composed of 10 microservices (plus a load generator) written in 5 different languages that talk to each other over gRPC.
Find Protocol Buffers Descriptions at the ../pb
directory.
Service | Language | Description |
---|---|---|
adservice | Java | Provides text ads based on given context words. |
cartservice | C# | Stores the items in the user's shopping cart in Redis and retrieves it. |
checkoutservice | Go | Retrieves user cart, prepares order and orchestrates the payment, shipping and the email notification. |
currencyservice | Node.js | Converts one money amount to another currency. Uses real values fetched from European Central Bank. It's the highest QPS service. |
emailservice | Python | Sends users an order confirmation email (mock). |
frontend | Go | Exposes an HTTP server to serve the website. Does not require signup/login and generates session IDs for all users automatically. |
loadgenerator | Python/Locust | Continuously sends requests imitating realistic user shopping flows to the frontend. |
paymentservice | Node.js | Charges the given credit card info (mock) with the given amount and returns a transaction ID. |
productcatalogservice | Go | Provides the list of products from a JSON file and ability to search products and get individual products. |
recommendationservice | Python | Recommends other products based on what's given in the cart. |
shippingservice | Go | Gives shipping cost estimates based on the shopping cart. Ships items to the given address (mock) |