Skip to content

Commit 8c077f9

Browse files
committed
updates samples
1 parent a9aa5e9 commit 8c077f9

File tree

554 files changed

+49
-21475
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

554 files changed

+49
-21475
lines changed

README.md

+49-155
Original file line numberDiff line numberDiff line change
@@ -1,181 +1,75 @@
1-
# Best Microservice sample apps
1+
The best part in getting started with Hypertrace is that it's really quick! If you are already using a tracing system, you can start today. Hypertrace accepts all major data formats: Jaeger, OpenTracing, Zipkin, you name it. Even if you aren’t tracing yet, we have a bunch of sample apps you can start with, and a [chat room](https://hypertrace.slack.com) of excited people who want to meet you. Here we will tell you how you can get started with Online Boutique sample app which is one of our trace enabled sample applications.
22

3-
It's been a while since we started moving from monolithic applications to microservices based architecture. When you look at systems today you will find that this modern distributed services are large, complex, and increasingly built upon other similarly complex distributed services.
3+
### Sample app: Online Boutique (created by Google Cloud)
44

5-
Let's first start with understanding one basic microservice app which will give us fair idea about what we are looking at and what microservice architecture means.
5+
Online Boutique is one of our trace enabled sample applications. It includes typical ecommerce functionality, including a product catalog and a way for customers to check out in different currencies This application uses different languages to highlight the diversity in micro service architecture: Golang, C++, C#, Python, Java and other programming languages. Whatever your application is written in, you can see its requests in Hypertrace.
66

7-
### Learning objectives
8-
- Learn to create some python flask api based microservices and make them call each other.
9-
- Learn to instrument basic microservice app
10-
- Learn to deploy microservice application with kubernetes.
7+
If you want to start your own online boutique, sorry! This doesn’t include authentication, credit card processing and features in the real world! However, we can use this to understand hypertrace and get you started with distributed tracing.
118

12-
### Tools we will be using
13-
1. Python
14-
2. Flask: Flask is a popular, extensible web microframework for building web applications with Python.
15-
3. Kubernetes
9+
#### Deployment instructions
1610

17-
### Let's understand application flow and code
11+
Use pre-built public container images that are easy to deploy by deploying the [release manifest](./release) directly to an existing K8s cluster.
1812

19-
This application is based on sample application available [here](https://github.com/MohamedMSaeed/tracing_flask_zipkin).
13+
**Prerequisite**: A running Kubernetes cluster (local or cloud).
2014

21-
Architecture for our final application will look something like below:
15+
1. `git clone https://github.com/hypertrace/hypertrace-samples.git`
16+
2. `cd online-boutique-demo`
17+
2. Run `kubectl apply -f ./release/kubernetes-manifests.yaml` to deploy the sample app.
18+
3. Run `kubectl get pods` to confirm pods are in a Ready state.
19+
4. Find the `NodePort` of your application, then visit the application at `localhost:nodeport` in your
20+
browser to confirm installation.
2221

23-
![](https://miro.medium.com/max/1400/1*fJBmBYPBrCVwbbfDucCmtw.png)
22+
```sh
23+
kubectl get service/frontend-external
24+
```
2425

25-
#### How it works?
26+
#### This is how your application will look like!
2627

27-
We have 3 flask API's here. API-1 communicates with API-2 and API-3 and API-2 talks to API-3. We are trying to implement classic microservices scenario here. Let's look a bit into those API's:
28+
| Home Page | Checkout Screen |
29+
| ----------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------ |
30+
| [![Screenshot of store homepage](https://s3.amazonaws.com/fininity.tech/online-boutique-frontend-1-min.png)]() | [![Screenshot of checkout screen](https://s3.amazonaws.com/fininity.tech/DT/online-boutique-frontend-2.png)]() |
2831

29-
1. API-1
3032

31-
```python
32-
@app.before_request
33-
def log_request_info():
34-
app.logger.debug('Headers: %s', request.headers)
35-
app.logger.debug('Body: %s', request.get_data())
33+
#### This is how your tracing data will look like on Hypertrace!
3634

35+
You can check out [UI & Platform overview](https://hypertrace-docs.netlify.app/docs/platform-ui/) section to get more details on features and see insights of online boutique app using Hypertrace.
3736

38-
@zipkin_client_span(service_name='api_01', span_name='call_api_02')
39-
def call_api_02():
40-
headers = create_http_headers()
41-
# k8s does not allow underscores in the service name
42-
requests.get('http://api-02:5000/', headers=headers)
43-
return 'OK'
37+
## More information about Online Boutique application!
38+
#### Architecture
4439

40+
**Online Boutique** is composed of many microservices written in different languages that talk to each other over gRPC.
4541

46-
@zipkin_client_span(service_name='api_01', span_name='call_api_03_FROM_01')
47-
def call_api_03():
48-
headers = create_http_headers()
49-
requests.get('http://api-03:5000/', headers=headers)
50-
return 'OK'
42+
| ![space-1.jpg](https://s3.amazonaws.com/fininity.tech/DT/architecture-diagram.png) |
43+
|:--:|
44+
| *Microservices Architecture* |
5145

52-
```
46+
### Service Description Table
5347

54-
API-1 here as expected accepts the requests and calls API-2 and API-3 as expected.
48+
| Service | Language | Description |
49+
| ---------------------------------------------------- | ------------- | --------------------------------------------------------------------------------------------------------------------------------- |
50+
| [frontend](./online-boutique-demo/src/frontend) | Go | Exposes an HTTP server to serve the website. Does not require signup/login and generates session IDs for all users automatically. |
51+
| [cartservice](./online-boutique-demo/src/cartservice) | C# | Stores the items in the user's shopping cart in Redis and retrieves it. |
52+
| [productcatalogservice](./online-boutique-demo/src/productcatalogservice) | Go | Provides the list of products from a JSON file and ability to search products and get individual products. |
53+
| [currencyservice](./online-boutique-demo/src/currencyservice) | Node.js | Converts one currency to another. Uses real values fetched from European Central Bank. It's the highest QPS service. |
54+
| [paymentservice](./online-boutique-demo/src/paymentservice) | Node.js | Charges the given credit card (mock) with the given amount and returns a transaction ID. |
55+
| [shippingservice](./online-boutique-demo/src/shippingservice) | Go | Gives shipping cost estimates based on the shopping cart items. Ships items to the given address (mock) |
56+
| [emailservice](./online-boutique-demo/src/emailservice) | Python | Sends users an order confirmation email (mock). |
57+
| [checkoutservice](./online-boutique-demo/src/checkoutservice) | Go | Retrieves user cart, prepares order and orchestrates the payment, shipping and the email notification. |
58+
| [recommendationservice](./online-boutique-demo/src/recommendationservice) | Python | Recommends other products based on shopping cart items. |
59+
| [adservice](./online-boutique-demo/src/adservice) | Java | Provides text ads based on given context words. |
60+
| [loadgenerator](./online-boutique-demo/src/loadgenerator) | Python/Locust | Continuously sends requests imitating realistic user shopping flows to the frontend. |
5561

56-
2. API-2
5762

58-
```python
5963

60-
@zipkin_client_span(service_name='api_02', span_name='call_api_03')
61-
def call_api_03():
62-
headers = create_http_headers()
63-
requests.get('http://api-03:5000/', headers=headers)
64-
return 'OK'
6564

66-
```
65+
### Note:
66+
- Are you facing any issue with this? Let's discuss it on [slack](https://hypertrace.slack.com)
67+
- If you want to try more apps you can try apps from this sample apps repo!
6768

68-
API-2 here calls API-3.
69+
### Other samples:
70+
1. [Horod application](/hotrod/README.md)
71+
2. [todo-list-application](/todo-list-application/README.md)
6972

70-
3. API-3
7173

72-
```python
73-
@zipkin_client_span(service_name='api_03', span_name='sleep_api_03')
74-
def sleep():
75-
time.sleep(2)
76-
return 'OK'
7774

78-
```
79-
80-
API-3 is very lazy and it just sleeps!
81-
82-
83-
So, Now we have flask apps and we know the flow, how should we deply our apps?
84-
85-
Let's create a dockerfile which will help us to build docker container to run the app!
86-
87-
```python
88-
From python:3.7
89-
90-
COPY ./requirements.txt /app/requirements.txt
91-
92-
WORKDIR /app
93-
94-
RUN pip install -r requirements.txt
95-
96-
COPY . /app
97-
98-
ENTRYPOINT [ "python" ]
99-
100-
CMD [ "app.py" ]
101-
```
102-
103-
once we run docker build for each app we will get docker images for each microservice or API. We can create a kubernetes deployment with this apps and get this app runnning with kubernetes but first thing we need for this is yaml file.
104-
105-
Let's start creating yaml file:
106-
107-
```python
108-
apiVersion: v1
109-
kind: Namespace
110-
metadata:
111-
name: simple-python
112-
113-
# app_01
114-
---
115-
apiVersion: apps/v1
116-
kind: Deployment
117-
metadata:
118-
name: simplepython
119-
namespace: simple-python
120-
spec:
121-
replicas: 1
122-
selector:
123-
matchLabels:
124-
app: simplepython
125-
template:
126-
metadata:
127-
labels:
128-
app: simplepython
129-
spec:
130-
containers:
131-
- name: simplepython
132-
image: python_app_01:0.1.0
133-
---
134-
apiVersion: v1
135-
kind: Service
136-
metadata:
137-
name: api-01
138-
namespace: simple-python
139-
spec:
140-
type: ClusterIP
141-
selector:
142-
app: simplepython
143-
ports:
144-
- name: http
145-
port: 5000
146-
targetPort: 5000
147-
---
148-
apiVersion: v1
149-
kind: Service
150-
metadata:
151-
name: simplepython-external
152-
namespace: simple-python
153-
spec:
154-
type: LoadBalancer
155-
selector:
156-
app: simplepython
157-
ports:
158-
- name: simplepython-external-port
159-
port: 5001
160-
targetPort: 5000
161-
```
162-
163-
Similary you can add API-2 and API-3 and you have your yaml file ready.
164-
165-
Now just go to your console and run `kubectl apply -f deploy.yaml` once all pods are up and running access API-1 at `localhost:5001` and you have successfully deployed your first microservice app!
166-
167-
Was it fun?
168-
169-
Learn more about microservices at microservices.io and if you want to checkout more cool and complex samples you can visit our colletion of best microservices below:
170-
171-
1. [Online Boutique Demo](https://github.com/JBAhire/HyperTrace-samples/blob/master/blog/onlineboutique.md)
172-
2. [Sock shop demo](https://github.com/JBAhire/HyperTrace-samples/blob/master/blog/sockshop.md)
173-
3. [TODO list demo](https://github.com/JBAhire/HyperTrace-samples/blob/master/blog/todolist.md)
174-
4. [HotROD app](https://github.com/JBAhire/HyperTrace-samples/blob/master/blog/hotrod.md)
175-
176-
177-
## What's next?
178-
179-
We hope you enjoyed playing with these *Best Microservices Sample Apps* and learnt about microservice architecture from this apps. One of the biggest benefits of microservices is that each microservice can be developed, scaled, and deployed separately.You can replace or upgrade any part of system independently. While this makes things more modular one thing you might have observed is it also makes system much more complex at the same time. You can't simply go ahead and use traditional machine-centric monitoring and tracing mechanisms for management and development tasks in such a complex environments specifically because they are not effective and they cannot provide a coherent view of the work done by a distributed service’s nodes and dependencies. Because of this, tools that aid in understanding system behavior and reasoning about performance issues are invaluable in such a complex environment.
180-
181-
There are multiple tools developed by multiple communities and developers to solve this problem and we will discuss about one such important tool in future but meanwhile, if you want to know more or have doubts about any of this application or you need any help with your own microservice architecture you can join this slack channel and we will be glad to help you out!
75+
Are you still confused with **Instrumentation** jargon? Ahh! We have you covered! Jump to [Instrumentation](https://hypertrace-docs.netlify.app/docs/getting-started/instrumentation/) section which will tell you about what is instrumentation and how you can get started with instrumenting your application!

Sock Shop Weaveworks/.github/CONTRIBUTING.md

-27
This file was deleted.

Sock Shop Weaveworks/.github/ISSUE_TEMPLATE.md

-3
This file was deleted.

Sock Shop Weaveworks/.github/PULL_REQUEST_TEMPLATE.md

-3
This file was deleted.

0 commit comments

Comments
 (0)