Skip to content

Commit cebe569

Browse files
Apply suggestions from code review
1 parent e38a812 commit cebe569

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

articles/spring-apps/basic-standard/quickstart-deploy-infrastructure-vnet-bicep.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,12 @@ First, create an **azuredeploy.bicep** file with the following contents:
5656

5757
---
5858

59-
Next, open a Bash window and run the following Azure CLI command, replacing the <value> placeholders with the following values:
59+
Next, open a Bash window and run the following Azure CLI command, replacing the `<value>` placeholders with the following values:
6060

6161
* **resource-group:** The resource group name for deploying the Azure Spring Apps instance.
6262
* **springCloudInstanceName:** The name of the Azure Spring Apps resource.
6363
* **appInsightsName:** The name of the Application Insights instance for Azure Spring Apps.
64-
* **laWorkspaceResourceId:** The resource ID of the existing Log Analytics workspace (for example, */subscriptions/\<your subscription>/resourcegroups/\<your Log Analytics resource group>/providers/Microsoft.OperationalInsights/workspaces/\<your Log Analytics workspace name>*.)
64+
* `laWorkspaceResourceId`: The resource ID of the existing Log Analytics workspace (for example, **/subscriptions/\<your subscription>/resourcegroups/\<your Log Analytics resource group>/providers/Microsoft.OperationalInsights/workspaces/\<your Log Analytics workspace name>**).
6565
* **springCloudAppSubnetID:** The resource ID of the Azure Spring Apps Application Subnet.
6666
* **springCloudRuntimeSubnetID:** The resource ID of the Azure Spring Apps Runtime Subnet.
6767
* **springCloudServiceCidrs:** A comma-separated list of IP address ranges (three in total) in CIDR format. The IP ranges are reserved to host underlying Azure Spring Apps infrastructure. These three ranges should be at least `/16` unused IP ranges, and must not overlap with any routable subnet IP ranges used within the network.

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Service bindings might also cause application start failures. To query the logs,
3636

3737
> "java.sql.SQLException: The server time zone value 'Coordinated Universal Time' is unrecognized or represents more than one time zone."
3838
39-
To fix this error, go to the `server parameters` of your MySQL instance, and change the `time_zone` value from `SYSTEM` to `+0:00`.
39+
To fix this error, go to the **server parameters** of your MySQL instance, and change the **time_zone** value from **SYSTEM** to **+0:00**.
4040

4141
### My application crashes or throws an unexpected error
4242

@@ -56,7 +56,7 @@ When you're debugging application crashes, start by checking the running status
5656

5757
* `jvm.memory.used`:
5858

59-
The amount of memory in bytes that's currently used by the application. For a normal load Java application, this metric series forms a **sawtooth** pattern, where the memory usage steadily increases and decreases in small increments and suddenly drops a lot, and then the pattern recurs. This metric series occurs because of garbage collection inside Java virtual machine, where collection actions represent drops on the sawtooth pattern.
59+
The amount of memory in bytes that's currently used by the application. For a normal load Java application, this metric series forms a *sawtooth* pattern, where the memory usage steadily increases and decreases in small increments and suddenly drops a lot, and then the pattern recurs. This metric series occurs because of garbage collection inside Java virtual machine, where collection actions represent drops on the sawtooth pattern.
6060

6161
This metric is important to help identify memory issues, such as:
6262

0 commit comments

Comments
 (0)