Skip to content

Commit 929098b

Browse files
committed
alt text updates
1 parent 9149f98 commit 929098b

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

articles/spring-apps/enterprise/how-to-elastic-diagnostic-settings.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ Use the following steps to analyze the logs:
5353

5454
1. In Kibana, in the **Search** bar at top, type *Spring Cloud type:dashboard*.
5555

56-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-spring-cloud-dashboard.png" alt-text="Elastic / Kibana screenshot showing 'Spring Cloud type:dashboard' search results." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-spring-cloud-dashboard.png":::
56+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-spring-cloud-dashboard.png" alt-text="Screenshot of Elastic / Kibana that shows the search results for Spring Cloud type:dashboard." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-spring-cloud-dashboard.png":::
5757

5858
1. Select **[Logs Azure] Azure Spring Apps logs Overview** from the results.
5959

60-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-dashboard-full.png" alt-text="Elastic / Kibana screenshot showing Azure Spring Apps Application Console Logs." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-dashboard-full.png":::
60+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-dashboard-full.png" alt-text="Screenshot of Elastic / Kibana that shows the Azure Spring Apps Application Console Logs." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-dashboard-full.png":::
6161

6262
1. Search on out-of-the-box Azure Spring Apps dashboards by using the queries such as the following:
6363

@@ -71,11 +71,11 @@ Application logs provide critical information and verbose logs about your applic
7171

7272
1. In Kibana, in the **Search** bar at top, type *Discover*, then select the result.
7373

74-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-go-discover.png" alt-text="Elastic / Kibana screenshot showing 'Discover' search results." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-go-discover.png":::
74+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-go-discover.png" alt-text="Screenshot of Elastic / Kibana that shows the search results for Discover." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-go-discover.png":::
7575

7676
1. In the **Discover** app, select the **logs-** index pattern if it's not already selected.
7777

78-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-index-pattern.png" alt-text="Elastic / Kibana screenshot showing logs in the Discover app." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-index-pattern.png":::
78+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-index-pattern.png" alt-text="Screenshot of Elastic / Kibana screenshot that shows the logs page in the Discover app." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-index-pattern.png":::
7979

8080
1. Use queries such as the ones in the following sections to help you understand your application's current and past states.
8181

@@ -89,7 +89,7 @@ To review a list of application logs from Azure Spring Apps, sorted by time with
8989
azure_log_forwarder.resource_type : "Microsoft.AppPlatform/Spring"
9090
```
9191

92-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-logs.png" alt-text="Elastic / Kibana screenshot showing Discover app with all logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-logs.png":::
92+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-logs.png" alt-text="Screenshot of Elastic / Kibana screenshot that shows the Discover app with all logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-logs.png":::
9393

9494
### Show specific log types from Azure Spring Apps
9595

@@ -99,7 +99,7 @@ To review a list of application logs from Azure Spring Apps, sorted by time with
9999
azure.springcloudlogs.category : "ApplicationConsole"
100100
```
101101

102-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-app-console.png" alt-text="Elastic / Kibana screenshot showing Discover app with specific logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-app-console.png":::
102+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-app-console.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with specific logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-app-console.png":::
103103

104104
### Show log entries containing errors or exceptions
105105

@@ -109,7 +109,7 @@ To review unsorted log entries that mention an error or exception, run the follo
109109
azure_log_forwarder.resource_type : "Microsoft.AppPlatform/Spring" and (log.level : "ERROR" or log.level : "EXCEPTION")
110110
```
111111

112-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-error-exception.png" alt-text="Elastic / Kibana screenshot showing Discover app with error and exception logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-error-exception.png":::
112+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-error-exception.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with error and exception logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-asc-error-exception.png":::
113113

114114
The Kibana Query Language helps you form queries by providing autocomplete and suggestions to help you gain insights from the logs. Use your query to find errors, or modify the query terms to find specific error codes or exceptions.
115115

@@ -121,7 +121,7 @@ To review log entries that are generated by a specific service, run the followin
121121
azure.springcloudlogs.properties.service_name : "sa-petclinic-service"
122122
```
123123

124-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-specific-service.png" alt-text="Elastic / Kibana screenshot showing Discover app with specific-service logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-specific-service.png":::
124+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-specific-service.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with specific-service logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-specific-service.png":::
125125

126126
### Show Config Server logs containing warnings or errors
127127

@@ -131,7 +131,7 @@ To review logs from Config Server, run the following query:
131131
azure.springcloudlogs.properties.type : "ConfigServer" and (log.level : "ERROR" or log.level : "WARN")
132132
```
133133

134-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-config-error-exception.png" alt-text="Elastic / Kibana screenshot showing Discover app with Config Server logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-config-error-exception.png":::
134+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-config-error-exception.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with Config Server logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-config-error-exception.png":::
135135

136136
### Show Service Registry logs
137137

@@ -141,7 +141,7 @@ To review logs from Service Registry, run the following query:
141141
azure.springcloudlogs.properties.type : "ServiceRegistry"
142142
```
143143

144-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-service-registry.png" alt-text="Elastic / Kibana screenshot showing Discover app with Service Registry logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-service-registry.png":::
144+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-service-registry.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with Service Registry logs displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-kql-service-registry.png":::
145145

146146
## Visualizing logs from Azure Spring Apps with Elastic
147147

@@ -153,11 +153,11 @@ Use the following steps to show the various log levels in your logs so you can a
153153

154154
1. Select the **log.level** field. From the floating informational panel about **log.level**, select **Visualize**.
155155

156-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-visualize.png" alt-text="Elastic / Kibana screenshot showing Discover app showing log levels." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-visualize.png":::
156+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-visualize.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with log levels displayed." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-asc-visualize.png":::
157157

158158
1. From here, you can choose to add more data from the left pane, or choose from multiple suggestions how you would like to visualize your data.
159159

160-
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-visualize-lens.png" alt-text="Elastic / Kibana screenshot showing Discover app showing visualization options." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-visualize-lens.png":::
160+
:::image type="content" source="media/how-to-elastic-diagnostic-settings/elastic-kibana-visualize-lens.png" alt-text="Screenshot of Elastic / Kibana that shows the Discover app with visualization options." lightbox="media/how-to-elastic-diagnostic-settings/elastic-kibana-visualize-lens.png":::
161161

162162
## Next steps
163163

0 commit comments

Comments
 (0)