diff --git a/.cspell/en-words.txt b/.cspell/en-words.txt index b448ccbf92a4..78a77f7d49b9 100644 --- a/.cspell/en-words.txt +++ b/.cspell/en-words.txt @@ -108,7 +108,7 @@ quantile quantiles quarkus quoteservice -reactnativeapp +react-native-app recommendationservice redis relref diff --git a/content/en/docs/demo/_index.md b/content/en/docs/demo/_index.md index 1ebb5c443e3c..07dfb694a166 100644 --- a/content/en/docs/demo/_index.md +++ b/content/en/docs/demo/_index.md @@ -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/) | @@ -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 diff --git a/content/en/docs/demo/architecture.md b/content/en/docs/demo/architecture.md index d3ae0b177a56..b3fd68c5cabe 100644 --- a/content/en/docs/demo/architecture.md +++ b/content/en/docs/demo/architecture.md @@ -32,7 +32,7 @@ quoteservice(Quote Service):::php recommendationservice(Recommendation Service):::python shippingservice(Shipping Service):::rust queue[(queue
(Kafka))]:::java -reactnativeapp(React Native App):::typescript +react-native-app(React Native App):::typescript adservice ---->|gRPC| flagd @@ -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; diff --git a/content/en/docs/demo/services/_index.md b/content/en/docs/demo/services/_index.md index 5cf29c8638b8..45045846deca 100644 --- a/content/en/docs/demo/services/_index.md +++ b/content/en/docs/demo/services/_index.md @@ -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. | diff --git a/content/en/docs/demo/services/reactnativeapp.md b/content/en/docs/demo/services/react-native-app.md similarity index 98% rename from content/en/docs/demo/services/reactnativeapp.md rename to content/en/docs/demo/services/react-native-app.md index 3caf78a334e6..a22dbdf6b588 100644 --- a/content/en/docs/demo/services/reactnativeapp.md +++ b/content/en/docs/demo/services/react-native-app.md @@ -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 @@ -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(),