Skip to content

Commit 0b0ccc2

Browse files
Edits to numerous files, using VS Code.
1 parent 9541d3a commit 0b0ccc2

7 files changed

+14
-14
lines changed

articles/spring-apps/basic-standard/access-app-virtual-network.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Use the following steps to create a private DNS zone for an application in the p
4242

4343
1. On the **Private DNS zones** page, select **Add**.
4444

45-
1. Fill out the form on the **Create Private DNS zone** page. For **Name**, enter *private.azuremicroservices.io*.
45+
1. Fill out the form on the **Create Private DNS zone** page. For **Name**, enter **private.azuremicroservices.io**.
4646

4747
1. Select **Review + Create**.
4848

@@ -212,9 +212,9 @@ Use the following steps to use the private DNS zone to translate/resolve DNS:
212212
|----------------|-----------------------------------------------------------------------------------------------------------------------------|
213213
| **Name** | Enter *\**. |
214214
| **Type** | Select **A**. |
215-
| **TTL** | Enter *1*. |
215+
| **TTL** | Enter **1**. |
216216
| **TTL unit** | Select **Hours**. |
217-
| **IP address** | Enter the [IP address](#find-the-ip-address-for-your-application). The following screenshot uses the IP address *10.1.0.7*. |
217+
| **IP address** | Enter the [IP address](#find-the-ip-address-for-your-application). The following screenshot uses the IP address **10.1.0.7**. |
218218

219219
:::image type="content" source="media/access-app-virtual-network/private-dns-zone-add-record.png" alt-text="Screenshot of the Azure portal that shows the Add record set page." lightbox="media/access-app-virtual-network/private-dns-zone-add-record.png":::
220220

@@ -246,7 +246,7 @@ Use the following steps to link the private DNS zone you created to the virtual
246246

247247
1. Select **Virtual network links**, and then select **Add**.
248248

249-
1. For **Link name**, enter *azure-spring-apps-dns-link*.
249+
1. For **Link name**, enter **azure-spring-apps-dns-link**.
250250

251251
1. For **Virtual network**, select the virtual network you created previously.
252252

articles/spring-apps/basic-standard/concept-app-status.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ The provisioning state is accessible only from the CLI. The status is reported a
5151
| Creating | The resource is creating and isn't ready. |
5252
| Updating | The resource is updating and the functionality might be different from the deployment definition until the update is complete. |
5353
| Succeeded | Successfully supplied resources and deploys the binary. The deployment's functionality is the same as the definition and all app instances are working. |
54-
| Failed | Failed to achieve the *Succeeded* goal. |
54+
| Failed | Failed to achieve the **Succeeded** goal. |
5555
| Deleting | The resource is being deleted which prevents operation, and the resource isn't available in this status. |
5656

5757
### Registration status
@@ -73,9 +73,9 @@ The instance status is reported as one of the following values:
7373

7474
| Value | Definition |
7575
|-------------|------------|
76-
| Starting | The binary is successfully deployed to the given instance. The instance booting the jar file might fail because the jar can't run properly. Azure Spring Apps restarts the app instance in 60 seconds if it detects that the app instance is still in the *Starting* state. |
76+
| Starting | The binary is successfully deployed to the given instance. The instance booting the .**jar** file might fail because the **.jar** file can't run properly. Azure Spring Apps restarts the app instance in 60 seconds if it detects that the app instance is still in the **Starting** state. |
7777
| Running | The instance works. The instance can serve requests from inside Azure Spring Apps. |
78-
| Failed | The app instance failed to start the user's binary after several retries. The app instance might be in one of the following states:<br/>- The app might stay in the *Starting* status and never be ready for serving requests.<br/>- The app might boot up but crash in a few seconds. |
78+
| Failed | The app instance failed to start the user's binary after several retries. The app instance might be in one of the following states:<br/>- The app might stay in the **Starting** status and never be ready for serving requests.<br/>- The app might boot up but crash in a few seconds. |
7979
| Terminating | The app instance is shutting down. The app might not serve requests and the app instance is removed. |
8080

8181
### App discovery status

articles/spring-apps/basic-standard/concept-understand-app-and-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ ms.custom: devx-track-java, devx-track-extended-java
1717

1818
**This article applies to:** ✅ Basic/Standard ✅ Enterprise
1919

20-
*App* and *Deployment* are the two key concepts in the resource model of Azure Spring Apps. In Azure Spring Apps, an *App* is an abstraction of one business app. One version of code or binary deployed as the *App* runs in a *Deployment*. Apps run in an *Azure Spring Apps service instance*, or simply *service instance*, as shown next.
20+
*App* and *Deployment* are the two key concepts in the resource model of Azure Spring Apps. In Azure Spring Apps, an App is an abstraction of one business app. One version of code or binary deployed as the App runs in a Deployment. Apps run in an *Azure Spring Apps service instance*, or simply *service instance*, as shown next.
2121

2222
:::image type="content" source="media/concept-understand-app-and-deployment/app-deployment-rev.png" alt-text="Diagram showing the relationship between the apps and deployments." border="false":::
2323

articles/spring-apps/basic-standard/connect-managed-identity-to-azure-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ az ad sp show --id <identity-object-ID> --query displayName
5454

5555
### Configure your Java app to use a managed identity
5656

57-
Open the *src/main/resources/application.properties* file, then add `Authentication=ActiveDirectoryMSI;` at the end of the `spring.datasource.url` line, as shown in the following example. Be sure to use the correct value for the $AZ_DATABASE_NAME variable.
57+
Open the **src/main/resources/application.properties** file, then add `Authentication=ActiveDirectoryMSI;` at the end of the `spring.datasource.url` line, as shown in the following example. Be sure to use the correct value for the $AZ_DATABASE_NAME variable.
5858

5959
```properties
6060
spring.datasource.url=jdbc:sqlserver://$AZ_DATABASE_NAME.database.windows.net:1433;database=demo;encrypt=true;trustServerCertificate=false;hostNameInCertificate=*.database.windows.net;loginTimeout=30;Authentication=ActiveDirectoryMSI;

articles/spring-apps/basic-standard/diagnostic-services.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ Use this query to find response `Status`, `RequestTime`, and other properties of
209209

210210
### Show ingress log entries for a specific requestId
211211

212-
To review log entries for a specific `requestId` value *\<request_ID>*, run the following query:
212+
To review log entries for a specific `requestId` value `<request_ID>`, run the following query:
213213

214214
```kusto
215215
AppPlatformIngressLogs
@@ -230,7 +230,7 @@ AppPlatformBuildLogs
230230

231231
### Show build log entries for a specific app in a specific build stage
232232

233-
To review log entries for a specific app in a specific build stage, run the following query. Replace the *`<app-name>`* placeholder with your application name. Replace the *`<build-stage>`* placeholder with one of the following values, which represent the stages of the build process: `prepare`, `detect`, `restore`, `analyze`, `build`, `export`, or `completion`.
233+
To review log entries for a specific app in a specific build stage, run the following query. Replace the `<app-name>` placeholder with your application name. Replace the `<build-stage>` placeholder with one of the following values, which represent the stages of the build process: `prepare`, `detect`, `restore`, `analyze`, `build`, `export`, or `completion`.
234234

235235
```kusto
236236
AppPlatformBuildLogs

articles/spring-apps/basic-standard/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ For the quickest way to get started with Azure Spring Apps, follow the instructi
8989

9090
Find metrics in the App Overview tab and the [Azure Monitor](/azure/azure-monitor/essentials/data-platform-metrics#metrics-explorer) tab.
9191

92-
Azure Spring Apps supports exporting Spring application logs and metrics to Azure Storage, Event Hubs, and [Log Analytics](/azure/azure-monitor/logs/data-platform-logs). The table name in Log Analytics is *AppPlatformLogsforSpring*. To learn how to enable it, see [Diagnostic services](diagnostic-services.md).
92+
Azure Spring Apps supports exporting Spring application logs and metrics to Azure Storage, Event Hubs, and [Log Analytics](/azure/azure-monitor/logs/data-platform-logs). The table name in Log Analytics is `AppPlatformLogsforSpring`. To learn how to enable it, see [Diagnostic services](diagnostic-services.md).
9393

9494
### Does Azure Spring Apps support distributed tracing?
9595

articles/spring-apps/basic-standard/how-to-access-data-plane-azure-ad-rbac.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ After the role is assigned, the assignee can access the Spring Cloud Config Serv
4949
5050
1. Compose the endpoint. We support the default endpoints of the Spring Cloud Config Server and Spring Cloud Service Registry managed by Azure Spring Apps.
5151
52-
* *'https://SERVICE_NAME.svc.azuremicroservices.io/eureka/{path}'*
53-
* *'https://SERVICE_NAME.svc.azuremicroservices.io/config/{path}'*
52+
* `https://SERVICE_NAME.svc.azuremicroservices.io/eureka/<path>`
53+
* `https://SERVICE_NAME.svc.azuremicroservices.io/config/<path>`
5454
5555
>[!NOTE]
5656
> If you're using Microsoft Azure operated by 21Vianet, replace `*.azuremicroservices.io` with `*.microservices.azure.cn`. For more information, see the section [Check endpoints in Azure](/azure/china/resources-developer-guide#check-endpoints-in-azure) in the [Microsoft Azure operated by 21Vianet developer guide](/azure/china/resources-developer-guide).

0 commit comments

Comments
 (0)