Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Demo imageprovider docs #4273

Merged
merged 10 commits into from
Apr 15, 2024
1 change: 1 addition & 0 deletions content/en/docs/demo/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ found here:
- [Quote Service](services/quote/)
- [Recommendation Service](services/recommendation/)
- [Shipping Service](services/shipping/)
- [Image Provider Service](services/imageprovider/)

## Scenarios

Expand Down
2 changes: 2 additions & 0 deletions content/en/docs/demo/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ emailservice(Email Service):::ruby
frauddetectionservice(Fraud Detection Service):::kotlin
frontend(Frontend):::typescript
frontendproxy(Frontend Proxy <br/>&#40Envoy&#41):::cpp
imageprovider(Image Provider <br/>&#40nginx&#41):::cpp
loadgenerator([Load Generator]):::python
paymentservice(Payment Service):::javascript
productcatalogservice(Product Catalog Service):::golang
Expand All @@ -33,6 +34,7 @@ queue[(queue<br/>&#40Kafka&#41)]
Internet -->|HTTP| frontendproxy
frontendproxy -->|HTTP| frontend
loadgenerator -->|HTTP| frontendproxy
frontendproxy -->|HTTP| imageprovider

queue -->|TCP| accountingservice
queue -->|TCP| frauddetectionservice
Expand Down
8 changes: 8 additions & 0 deletions content/en/docs/demo/services/imageprovider.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Image Provider Service
linkTitle: Image Provider
---

This service provides the images which are used in the frontend. The images are statically hosted on a NGINX instance. The NGINX server is instrumented with the [nginx-otel module](https://github.com/nginxinc/nginx-otel/tree/main).

[Image Provider service source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/imageprovider/)
Loading