Skip to content

Commit

Permalink
rename reactnativeapp -> react-native-app
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmunz committed Dec 17, 2024
1 parent 60d5a21 commit 61d5208
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .cspell/en-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ quantile
quantiles
quarkus
quoteservice
reactnativeapp
react-native-app
recommendationservice
redis
relref
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/demo/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ here.
| Go | | [Checkout Service](services/checkout/), [Product Catalog Service](services/product-catalog/) | [Checkout Service](services/checkout/), [Product Catalog Service](services/product-catalog/) |
| Java | [Ad Service](services/ad/) | | [Ad Service](services/ad/) |
| JavaScript | | | [Payment Service](services/payment/) |
| TypeScript | | [Frontend](services/frontend/), [React Native App](services/reactnativeapp/) | [Frontend](services/frontend/) |
| TypeScript | | [Frontend](services/frontend/), [React Native App](services/react-native-app/) | [Frontend](services/frontend/) |
| Kotlin | | [Fraud Detection Service](services/fraud-detection/) | |
| PHP | | [Quote Service](services/quote/) | [Quote Service](services/quote/) |
| Python | [Recommendation Service](services/recommendation/) | | [Recommendation Service](services/recommendation/) |
Expand All @@ -55,7 +55,7 @@ found here:
- [Recommendation Service](services/recommendation/)
- [Shipping Service](services/shipping/)
- [Image Provider Service](services/imageprovider/)
- [React Native App](services/reactnativeapp/)
- [React Native App](services/react-native-app/)

## Scenarios

Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/demo/architecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ quoteservice(Quote Service):::php
recommendationservice(Recommendation Service):::python
shippingservice(Shipping Service):::rust
queue[(queue<br/>&#40Kafka&#41)]:::java
reactnativeapp(React Native App):::typescript
react-native-app(React Native App):::typescript
adservice ---->|gRPC| flagd
Expand Down Expand Up @@ -75,7 +75,7 @@ recommendationservice -->|gRPC| flagd
shippingservice -->|HTTP| quoteservice
reactnativeapp -->|HTTP| frontendproxy
react-native-app -->|HTTP| frontendproxy
end
classDef dotnet fill:#178600,color:white;
Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/demo/services/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@ To visualize request flows, see the [Service Diagram](../architecture/).
| [quoteservice](quote/) | PHP | Calculates the shipping costs, based on the number of items to be shipped. |
| [recommendationservice](recommendation/) | Python | Recommends other products based on what's given in the cart. |
| [shippingservice](shipping/) | Rust | Gives shipping cost estimates based on the shopping cart. Ships items to the given address (mock/). |
| [reactnativeapp](reactnativeapp/) | TypeScript | React Native mobile application that provides a UI on top of the shopping services. |
| [react-native-app](react-native-app/) | TypeScript | React Native mobile application that provides a UI on top of the shopping services. |
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ to interact with the demo's services. It is built with
[Expo](https://docs.expo.dev/get-started/introduction/) and uses Expo's
file-based routing to layout the screens for the app.

[React Native app source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/reactnativeapp/)
[React Native app source](https://github.com/open-telemetry/opentelemetry-demo/blob/main/src/react-native-app/)

## Instrumentation

Expand Down Expand Up @@ -74,7 +74,7 @@ const Tracer = async () => {
const localhost = await getLocalhost();

const resource = new Resource({
[ATTR_SERVICE_NAME]: 'reactnativeapp',
[ATTR_SERVICE_NAME]: 'react-native-app',
[ATTR_OS_NAME]: Platform.OS,
[ATTR_OS_VERSION]: getSystemVersion(),
[ATTR_SERVICE_VERSION]: getVersion(),
Expand Down

0 comments on commit 61d5208

Please sign in to comment.