Skip to content

Commit d2d0eb1

Browse files
Merge pull request #294282 from JoshTheTechWriter/italics-to-bold-6
Sixth batch of files.
2 parents f00bb6f + 594f6bc commit d2d0eb1

18 files changed

+48
-48
lines changed

articles/spring-apps/basic-standard/concept-manage-monitor-app-spring-boot-actuator.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ This configuration works with any Spring Boot version because versions are cover
4949
By default, a Spring Boot application exposes the `health` endpoint only. To observe the configuration and configurable environment, use the following steps to enable the `env` and `configprops` endpoints as well:
5050

5151
1. Go to app **Overview** pane, select **Configuration** in the setting menu, and then go to the **Environment variables** configuration page.
52-
1. Add the following properties as in the "key:value" form. This environment opens the following Spring Actuator endpoints: `health`, `env`, and `configprops`.
52+
1. Add the following properties as in the `<key>:<value>` form. This environment opens the following Spring Actuator endpoints: `health`, `env`, and `configprops`.
5353

5454
```properties
5555
management.endpoints.web.exposure.include: health,env,configprops

articles/spring-apps/basic-standard/github-actions-key-vault.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ Then save the results to GitHub **secrets** as described in [Set up your GitHub
5353

5454
The credential you created above can get only general information about the Key Vault, not the contents it stores. To get secrets stored in the Key Vault, you need set access policies for the credential.
5555

56-
Go to the **Key Vault** dashboard in Azure portal, select the **Access control** menu, then open the **Role assignments** tab. Select **Apps** for **Type** and `This resource` for **scope**. You should see the credential you created in previous step:
56+
Go to the **Key Vault** dashboard in Azure portal, select the **Access control** menu, then open the **Role assignments** tab. Select **Apps** for **Type** and **This resource** for **scope**. You should see the credential you created in previous step:
5757

5858
:::image type="content" source="media/github-actions-key-vault/key-vault1.png" alt-text="Screenshot of the Azure portal that shows the Access control page with the Role assignments tab highlighted." lightbox="media/github-actions-key-vault/key-vault1.png":::
5959

60-
Copy the credential name, for example, `azure-cli-2020-01-19-04-39-02`. Open the **Access policies** menu, then select the **Add Access Policy** link. Select `Secret Management` for **Template**, then select **Principal**. Paste the credential name in **Principal**/**Select** input box:
60+
Copy the credential name, for example, **azure-cli-2020-01-19-04-39-02**. Open the **Access policies** menu, then select the **Add Access Policy** link. Select **Secret Management** for **Template**, then select **Principal**. Paste the credential name in **Principal**/**Select** input box:
6161

6262
:::image type="content" source="media/github-actions-key-vault/key-vault2.png" alt-text="Screenshot of the Azure portal that shows the Add access policy page with the Principal pane open." lightbox="media/github-actions-key-vault/key-vault2.png":::
6363

@@ -87,7 +87,7 @@ Again, results:
8787
}
8888
```
8989

90-
Copy the entire JSON string. Go back to **Key Vault** dashboard. Open the **Secrets** menu, then select the **Generate/Import** button. Input the secret name, such as `AZURE-CREDENTIALS-FOR-SPRING`. Paste the JSON credential string to the **Value** input box. You may notice the value input box is a one-line text field, rather than a multi-line text area. You can paste the complete JSON string there.
90+
Copy the entire JSON string. Go back to **Key Vault** dashboard. Open the **Secrets** menu, then select the **Generate/Import** button. Input the secret name, such as **AZURE-CREDENTIALS-FOR-SPRING**. Paste the JSON credential string to the **Value** input box. You may notice the value input box is a one-line text field, rather than a multi-line text area. You can paste the complete JSON string there.
9191

9292
:::image type="content" source="media/github-actions-key-vault/key-vault3.png" alt-text="Screenshot of the Azure portal that shows the Create a secret page." lightbox="media/github-actions-key-vault/key-vault3.png":::
9393

articles/spring-apps/basic-standard/how-to-appdynamics-java-agent-monitor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ You can define more metrics for the JVM, as shown in this screenshot of the **Me
220220

221221
## View AppDynamics Agent logs
222222

223-
By default, Azure Spring Apps prints the *info* level logs of the AppDynamics Agent to `STDOUT`. The logs are mixed with the application logs. You can find the explicit agent version from the application logs.
223+
By default, Azure Spring Apps prints the `info` level logs of the AppDynamics Agent to `STDOUT`. The logs are mixed with the application logs. You can find the explicit agent version from the application logs.
224224

225225
You can also get the logs of the AppDynamics Agent from the following locations:
226226

articles/spring-apps/basic-standard/how-to-application-insights.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ When the **Application Insights** feature is enabled, you can:
5050

5151
:::image type="content" source="media/how-to-application-insights/insights-process-agent-map.png" alt-text="Screenshot of the Azure portal that shows the Application Insights Application map page." lightbox="media/how-to-application-insights/insights-process-agent-map.png":::
5252

53-
* Select the link between customers-service and `petclinic` to see more details such as a query from SQL.
53+
* Select the link between **customers-service** and **petclinic** to see more details such as a query from SQL.
5454
* Select an endpoint to see all the applications making requests to the endpoint.
5555

5656
* In the navigation pane, select **Performance** to see the performance data of all applications' operations, dependencies, and roles.
@@ -74,7 +74,7 @@ When the **Application Insights** feature is enabled, you can:
7474

7575
:::image type="content" source="media/how-to-application-insights/petclinic-microservices-availability.png" alt-text="Screenshot of the Azure portal that shows the Application Insights Availability page." lightbox="media/how-to-application-insights/petclinic-microservices-availability.png":::
7676

77-
* In the navigation pane, select **Logs** to view all applications' logs, or one application's logs when filtering by `cloud_RoleName`.
77+
* In the navigation pane, select **Logs** to view all applications' logs, or one application's logs when filtering by **cloud_RoleName**.
7878

7979
:::image type="content" source="media/how-to-application-insights/application-insights-application-logs.png" alt-text="Screenshot of the Azure portal that shows the Application Insights Logs page." lightbox="media/how-to-application-insights/application-insights-application-logs.png":::
8080

articles/spring-apps/basic-standard/how-to-config-server.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ After you save your configuration files in a repository, use the following steps
244244

245245
1. Select **Spring Cloud Config Server** in the navigation pane.
246246

247-
1. In the **Default repository** section, set **URI** to `https://github.com/Azure-Samples/piggymetrics-config`.
247+
1. In the **Default repository** section, set **URI** to **https://github.com/Azure-Samples/piggymetrics-config**.
248248

249249
1. Select **Validate**.
250250

articles/spring-apps/basic-standard/how-to-configure-health-probes-graceful-termination.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ The following table describes the `terminationGracePeriodSeconds` property, whic
5454

5555
| Property name | Description |
5656
|----------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
57-
| `terminationGracePeriodSeconds` | The duration in seconds after processes running in the app instance are sent a termination signal before they're forcibly halted. Set this value longer than the expected cleanup time for your process. The value must be a non-negative integer. Setting the grace period to **0** stops the app instance immediately via the kill signal, with no opportunity to shut down. If the value is **nil**, Azure Spring Apps uses the default grace period. The default value is **90**. |
57+
| `terminationGracePeriodSeconds` | The duration in seconds after processes running in the app instance are sent a termination signal before they're forcibly halted. Set this value longer than the expected cleanup time for your process. The value must be a non-negative integer. Setting the grace period to `0` stops the app instance immediately via the kill signal, with no opportunity to shut down. If the value is `nil`, Azure Spring Apps uses the default grace period. The default value is `90`. |
5858

5959
### Health probe properties
6060

6161
The following table describes the properties you can use to configure health probes.
6262

6363
| Property name | Description |
6464
|------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
65-
| `initialDelaySeconds` | The number of seconds after the app instance has started before probes are initiated. The default value is **0**, the minimum value. |
66-
| `periodSeconds` | The frequency in seconds to perform the probe. The default value is **10**. The minimum value is **1**. |
67-
| `timeoutSeconds` | The number of seconds until the probe times out. The default value is **1**, the minimum value. |
68-
| `failureThreshold` | The minimum number of consecutive failures for the probe to be considered failed after having succeeded. The default value is **3**. The minimum value is **1**. |
69-
| `successThreshold` | The minimum number of consecutive successes for the probe to be considered successful after having failed. The default value is **1**. The value must be **1** for liveness and startup. The minimum value is **1**. |
65+
| `initialDelaySeconds` | The number of seconds after the app instance has started before probes are initiated. The default value is `0`, the minimum value. |
66+
| `periodSeconds` | The frequency in seconds to perform the probe. The default value is `10`. The minimum value is `1`. |
67+
| `timeoutSeconds` | The number of seconds until the probe times out. The default value is `1`, the minimum value. |
68+
| `failureThreshold` | The minimum number of consecutive failures for the probe to be considered failed after having succeeded. The default value is `3`. The minimum value is `1`. |
69+
| `successThreshold` | The minimum number of consecutive successes for the probe to be considered successful after having failed. The default value is `1`. The value must be `1` for liveness and startup. The minimum value is `1`. |
7070

7171
### Probe action properties
7272

@@ -78,16 +78,16 @@ There are three ways you can check an app instance using a probe. Each probe mus
7878

7979
| Property name | Description |
8080
|----------------|---------------------------------------------------------------------------------|
81-
| `scheme` | The scheme to use for connecting to the host. The default is **HTTP**. |
82-
| `path` | The path to access on the HTTP server of the app instance, such as **/healthz**. |
81+
| `scheme` | The scheme to use for connecting to the host. The default is `HTTP`. |
82+
| `path` | The path to access on the HTTP server of the app instance, such as `/healthz`. |
8383

8484
- `ExecAction`
8585

8686
Executes a specified command inside the app instance. The diagnostic is considered successful if the command exits with a status code of 0.
8787

8888
| Property name | Description |
8989
|----------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
90-
| `command` | The command to execute inside the app instance. The working directory for the command is the root directory (**/**) in the app instance's file system. Because the command is run using `exec` rather than inside a shell, shell instructions won't work. To use a shell, explicitly call out to the shell. An exit status of **0** is treated as live/healthy, and non-zero is unhealthy. |
90+
| `command` | The command to execute inside the app instance. The working directory for the command is the root directory (**/**) in the app instance's file system. Because the command is run using `exec` rather than inside a shell, shell instructions won't work. To use a shell, explicitly call out to the shell. An exit status of `0` is treated as live/healthy, and non-zero is unhealthy. |
9191

9292
- `TCPSocketAction`
9393

0 commit comments

Comments
 (0)