Skip to content

Commit 61d5208

Browse files
committed
rename reactnativeapp -> react-native-app
1 parent 60d5a21 commit 61d5208

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

.cspell/en-words.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ quantile
108108
quantiles
109109
quarkus
110110
quoteservice
111-
reactnativeapp
111+
react-native-app
112112
recommendationservice
113113
redis
114114
relref

content/en/docs/demo/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ here.
3030
| Go | | [Checkout Service](services/checkout/), [Product Catalog Service](services/product-catalog/) | [Checkout Service](services/checkout/), [Product Catalog Service](services/product-catalog/) |
3131
| Java | [Ad Service](services/ad/) | | [Ad Service](services/ad/) |
3232
| JavaScript | | | [Payment Service](services/payment/) |
33-
| TypeScript | | [Frontend](services/frontend/), [React Native App](services/reactnativeapp/) | [Frontend](services/frontend/) |
33+
| TypeScript | | [Frontend](services/frontend/), [React Native App](services/react-native-app/) | [Frontend](services/frontend/) |
3434
| Kotlin | | [Fraud Detection Service](services/fraud-detection/) | |
3535
| PHP | | [Quote Service](services/quote/) | [Quote Service](services/quote/) |
3636
| Python | [Recommendation Service](services/recommendation/) | | [Recommendation Service](services/recommendation/) |
@@ -55,7 +55,7 @@ found here:
5555
- [Recommendation Service](services/recommendation/)
5656
- [Shipping Service](services/shipping/)
5757
- [Image Provider Service](services/imageprovider/)
58-
- [React Native App](services/reactnativeapp/)
58+
- [React Native App](services/react-native-app/)
5959

6060
## Scenarios
6161

content/en/docs/demo/architecture.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ quoteservice(Quote Service):::php
3232
recommendationservice(Recommendation Service):::python
3333
shippingservice(Shipping Service):::rust
3434
queue[(queue<br/>&#40Kafka&#41)]:::java
35-
reactnativeapp(React Native App):::typescript
35+
react-native-app(React Native App):::typescript
3636
3737
adservice ---->|gRPC| flagd
3838
@@ -75,7 +75,7 @@ recommendationservice -->|gRPC| flagd
7575
7676
shippingservice -->|HTTP| quoteservice
7777
78-
reactnativeapp -->|HTTP| frontendproxy
78+
react-native-app -->|HTTP| frontendproxy
7979
end
8080
8181
classDef dotnet fill:#178600,color:white;

content/en/docs/demo/services/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ To visualize request flows, see the [Service Diagram](../architecture/).
2222
| [quoteservice](quote/) | PHP | Calculates the shipping costs, based on the number of items to be shipped. |
2323
| [recommendationservice](recommendation/) | Python | Recommends other products based on what's given in the cart. |
2424
| [shippingservice](shipping/) | Rust | Gives shipping cost estimates based on the shopping cart. Ships items to the given address (mock/). |
25-
| [reactnativeapp](reactnativeapp/) | TypeScript | React Native mobile application that provides a UI on top of the shopping services. |
25+
| [react-native-app](react-native-app/) | TypeScript | React Native mobile application that provides a UI on top of the shopping services. |

content/en/docs/demo/services/reactnativeapp.md content/en/docs/demo/services/react-native-app.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ to interact with the demo's services. It is built with
88
[Expo](https://docs.expo.dev/get-started/introduction/) and uses Expo's
99
file-based routing to layout the screens for the app.
1010

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

1313
## Instrumentation
1414

@@ -74,7 +74,7 @@ const Tracer = async () => {
7474
const localhost = await getLocalhost();
7575

7676
const resource = new Resource({
77-
[ATTR_SERVICE_NAME]: 'reactnativeapp',
77+
[ATTR_SERVICE_NAME]: 'react-native-app',
7878
[ATTR_OS_NAME]: Platform.OS,
7979
[ATTR_OS_VERSION]: getSystemVersion(),
8080
[ATTR_SERVICE_VERSION]: getVersion(),

0 commit comments

Comments
 (0)