Skip to content

Commit e50eb69

Browse files
committed
Refreshed a few monitoring docs and renamed a file
1 parent ffc812a commit e50eb69

22 files changed

+51
-68
lines changed

articles/search/.openpublishing.redirection.search.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@
55
"redirect_url": "/azure/search/search-how-to-managed-identities",
66
"redirect_document_id": true
77
},
8+
{
9+
"source_path_from_root": "/articles/search/search-howto-monitor-indexers.md",
10+
"redirect_url": "/azure/search/search-monitor-indexers",
11+
"redirect_document_id": true
12+
},
813
{
914
"source_path_from_root": "/articles/search/cognitive-search-incremental-indexing-conceptual.md",
1015
"redirect_url": "/azure/search/enrichment-cache-how-to-manage",

articles/search/knowledge-store-projections-examples.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ You can process projections by following these steps:
269269

270270
1. [Run the indexer](/rest/api/searchservice/indexers/run) to put the skillset into execution.
271271

272-
1. [Monitor indexer execution](search-howto-monitor-indexers.md) to check progress and catch any errors.
272+
1. [Monitor indexer execution](search-monitor-indexers.md) to check progress and catch any errors.
273273

274274
1. Use Azure portal to verify object creation in Azure Storage.
275275

90.1 KB
Loading
58.8 KB
Loading

articles/search/monitor-azure-cognitive-search.md

Lines changed: 1 addition & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ ms.service: azure-ai-search
1313

1414
[!INCLUDE [horz-monitor-intro](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-intro.md)]
1515

16-
> [!NOTE]
17-
> Azure AI Search doesn't log the identity of the person or app accessing content or operations on the search service. If you require this level of monitoring, you need to implement it in your client application.
18-
1916
[!INCLUDE [horz-monitor-resource-types](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-resource-types.md)]
2017

2118
For more information about the resource types for Azure AI Search, see [Azure AI Search monitoring data reference](monitor-azure-cognitive-search-data-reference.md).
@@ -69,27 +66,6 @@ AzureDiagnostics
6966
| summarize count() by OperationName
7067
```
7168

72-
#### Long-running queries
73-
74-
This Kusto query against AzureDiagnostics returns `Query.Search` operations, sorted by duration (in milliseconds). For more examples of `Query.Search` queries, see [Analyze performance in Azure AI Search](search-performance-analysis.md).
75-
76-
```Kusto
77-
AzureDiagnostics
78-
| project OperationName, resultSignature_d, DurationMs, Query_s, Documents_d, IndexName_s
79-
| where OperationName == "Query.Search"
80-
| sort by DurationMs
81-
```
82-
83-
#### Indexer status
84-
85-
This Kusto query returns the status of indexer operations. Results include the operation name, description of the request (which includes the name of the indexer), result status (Success or Failure), and the [HTTP status code](/rest/api/searchservice/http-status-codes). For more information about indexer execution, see [Monitor indexer status](search-howto-monitor-indexers.md).
86-
87-
```Kusto
88-
AzureDiagnostics
89-
| project OperationName, Description_s, Documents_d, ResultType, resultSignature_d
90-
| where OperationName == "Indexers.Status"
91-
```
92-
9369
[!INCLUDE [horz-monitor-alerts](~/reusable-content/ce-skilling/azure/includes/azure-monitor/horizontals/horz-monitor-alerts.md)]
9470

9571
### Azure AI Search alert rules
@@ -109,7 +85,7 @@ The following table lists common and recommended alert rules for Azure AI Search
10985
- [Azure AI Search monitoring data reference](monitor-azure-cognitive-search-data-reference.md)
11086
- [Monitor Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource)
11187
- [Monitor queries](search-monitor-queries.md)
112-
- [Monitor indexer-based indexing](search-howto-monitor-indexers.md)
88+
- [Monitor indexer-based indexing](search-monitor-indexers.md)
11389
- [Visualize resource logs](search-monitor-logs-powerbi.md)
11490
- [Analyze performance in Azure AI Search](search-performance-analysis.md)
11591
- [Tips for better performance](search-performance-tips.md)

articles/search/search-file-storage-integration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ Execution history contains up to 50 of the most recently completed executions, w
228228

229229
## Next steps
230230

231-
You can now [run the indexer](search-howto-run-reset-indexers.md), [monitor status](search-howto-monitor-indexers.md), or [schedule indexer execution](search-howto-schedule-indexers.md). The following articles apply to indexers that pull content from Azure Storage:
231+
You can now [run the indexer](search-howto-run-reset-indexers.md), [monitor status](search-monitor-indexers.md), or [schedule indexer execution](search-howto-schedule-indexers.md). The following articles apply to indexers that pull content from Azure Storage:
232232

233233
+ [Change detection and deletion detection](search-howto-index-changed-deleted-blobs.md)
234234
+ [Index large data sets](search-howto-large-index.md)

articles/search/search-how-to-create-indexers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ Indexers are one of the few subsystems that make overt outbound calls to other A
231231

232232
## Check results
233233

234-
[Monitor indexer status](search-howto-monitor-indexers.md) to check for status. Successful execution can still include warning and notifications. Be sure to check both successful and failed status notifications for details about the job.
234+
[Monitor indexer status](search-monitor-indexers.md) to check for status. Successful execution can still include warning and notifications. Be sure to check both successful and failed status notifications for details about the job.
235235

236236
For content verification, [run queries](search-query-create.md) on the populated index that return entire documents or selected fields.
237237

articles/search/search-how-to-index-onelake-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ By default, an indexer runs automatically when you create it. You can change thi
420420

421421
## Check indexer status
422422

423-
Learn multiple approaches to [monitor the indexer status and execution history here](search-howto-monitor-indexers.md).
423+
Learn multiple approaches to [monitor the indexer status and execution history here](search-monitor-indexers.md).
424424

425425
## Handle errors
426426

articles/search/search-how-to-large-index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,4 +139,4 @@ If you have a big data architecture and your data is on a Spark cluster, we reco
139139
+ [Tips for better performance in Azure AI Search](search-performance-tips.md)
140140
+ [Analyze performance in Azure AI Search](search-performance-analysis.md)
141141
+ [Indexers in Azure AI Search](search-indexer-overview.md)
142-
+ [Monitor indexer status and results in Azure AI Search](search-howto-monitor-indexers.md)
142+
+ [Monitor indexer status and results in Azure AI Search](search-monitor-indexers.md)

articles/search/search-howto-index-azure-data-lake-storage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ PUT /indexers/[indexer name]?api-version=2024-07-01
313313

314314
## Next steps
315315

316-
You can now [run the indexer](search-howto-run-reset-indexers.md), [monitor status](search-howto-monitor-indexers.md), or [schedule indexer execution](search-howto-schedule-indexers.md). The following articles apply to indexers that pull content from Azure Storage:
316+
You can now [run the indexer](search-howto-run-reset-indexers.md), [monitor status](search-monitor-indexers.md), or [schedule indexer execution](search-howto-schedule-indexers.md). The following articles apply to indexers that pull content from Azure Storage:
317317

318318
+ [Change detection and deletion detection](search-howto-index-changed-deleted-blobs.md)
319319
+ [Index large data sets](search-howto-large-index.md)

0 commit comments

Comments
 (0)