This repository has been archived by the owner on May 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 133
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UserStory30177-Monitoring-LogAnalytics - Formatting change (#116)
Co-authored-by: Luis Alfonso Chaves <[email protected]>
- Loading branch information
1 parent
d0ef576
commit 82a1d57
Showing
3 changed files
with
53 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
+++ | ||
title = "Migration" | ||
description = "Migration Services" | ||
date = 2023-10-11T10:12:16Z | ||
draft = false | ||
+++ | ||
|
||
This page lists all of the Azure Services under the Migration category for which the APRL has guidance, recommendations and queries for. | ||
|
||
## Services List | ||
|
||
{{< alert style="info" >}} | ||
|
||
The below list of services is automatically populated based on the child folders and files in this directory within the source code in the repo. | ||
|
||
{{< /alert >}} | ||
|
||
{{< childpages >}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
docs/content/services/monitoring/log-analytics/code/log-5/log-5.kql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
//Configure minimal logging and retention of logs. | ||
//Query to get the list of Log analytics workspaces and their current configured retention period | ||
resources | ||
| where type == "microsoft.operationalinsights/workspaces" | ||
| extend RetentionPeriod = tostring(properties.retentionInDays), SkuName=tostring(properties.sku.name) | ||
| project recommendationId="log-5", name,location,resourceGroup,RetentionPeriod,SkuName,subscriptionId |