Skip to content

Commit 5d557d7

Browse files
Merge pull request #49737 from yossi-y/patch-3
Added a comment about saved search etag following customer ask
2 parents 13a0872 + 934b600 commit 5d557d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-monitor/platform/template-workspace-configuration.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ The deployment can take a few minutes to complete. When it finishes, you see a m
173173
The following template sample illustrates how to:
174174

175175
1. Add solutions to the workspace
176-
2. Create saved searches
176+
2. Create saved searches. To ensure that deployments don't override saved searches accidently, an eTag property should be added in the "savedSearches" resource to override and maintain the idempotency of saved searches.
177177
3. Create a computer group
178178
4. Enable collection of IIS logs from computers with the Windows agent installed
179179
5. Collect Logical Disk perf counters from Linux computers (% Used Inodes; Free Megabytes; % Used Space; Disk Transfers/sec; Disk Reads/sec; Disk Writes/sec)
@@ -315,11 +315,11 @@ The following template sample illustrates how to:
315315
"[concat('Microsoft.OperationalInsights/workspaces/', parameters('workspaceName'))]"
316316
],
317317
"properties": {
318-
"Category": "VMSS",
319-
"ETag": "*",
320-
"DisplayName": "VMSS Instance Count",
321-
"Query": "Event | where Source == \"ServiceFabricNodeBootstrapAgent\" | summarize AggregatedValue = count() by Computer",
322-
"Version": 1
318+
"category": "VMSS",
319+
"eTag": "*",
320+
"displayName": "VMSS Instance Count",
321+
"query": "Event | where Source == \"ServiceFabricNodeBootstrapAgent\" | summarize AggregatedValue = count() by Computer",
322+
"version": 1
323323
}
324324
},
325325
{

0 commit comments

Comments
 (0)