You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-cluster-config-upgrade-windows-server.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,15 +21,15 @@ You can add, update, or remove settings in the `fabricSettings` section under th
21
21
For example, the following JSON adds a new setting *MaxDiskQuotaInMB* to the *Diagnostics* section under `fabricSettings`:
22
22
23
23
```json
24
-
{
25
-
"name": "Diagnostics",
26
-
"parameters": [
27
-
{
28
-
"name": "MaxDiskQuotaInMB",
29
-
"value": "65536"
30
-
}
31
-
]
32
-
}
24
+
{
25
+
"name": "Diagnostics",
26
+
"parameters": [
27
+
{
28
+
"name": "MaxDiskQuotaInMB",
29
+
"value": "65536"
30
+
}
31
+
]
32
+
}
33
33
```
34
34
35
35
After you've modified the settings in your ClusterConfig.json file, [test the cluster configuration](#test-the-cluster-configuration) and then [upgrade the cluster configuration](#upgrade-the-cluster-configuration) to apply the settings to your cluster.
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-diagnostics-event-aggregation-wad.md
+16-15Lines changed: 16 additions & 15 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -202,25 +202,26 @@ Logs from additional channels are also available for collection, here are some o
202
202
203
203
* Operational Channel - Base: Enabled by default, high-level operations performed by Service Fabric and the cluster, including events for a node coming up, a new application being deployed, or an upgrade rollback, etc. For a list of events, refer to [Operational Channel Events](./service-fabric-diagnostics-event-generation-operational.md).
* Operational Channel - Detailed: This includes health reports and load balancing decisions, plus everything in the base operational channel. These events are generated by either the system or your code by using the health or load reporting APIs such as [ReportPartitionHealth](/previous-versions/azure/reference/mt645153(v=azure.100)) or [ReportLoad](/previous-versions/azure/reference/mt161491(v=azure.100)). To view these events in Visual Studio's Diagnostic Event Viewer add "Microsoft-ServiceFabric:4:0x4000000000000008" to the list of ETW providers.
* Data and Messaging Channel - Base: Critical logs and events generated in the messaging (currently only the ReverseProxy) and data path, in addition to detailed operational channel logs. These events are request processing failures and other critical issues in the ReverseProxy, as well as requests processed. **This is our recommendation for comprehensive logging**. To view these events in Visual Studio's Diagnostic Event Viewer, add "Microsoft-ServiceFabric:4:0x4000000000000010" to the list of ETW providers.
* Data & Messaging Channel - Detailed: Verbose channel that contains all the non-critical logs from data and messaging in the cluster and the detailed operational channel. For detailed troubleshooting of all reverse proxy events, refer to the [reverse proxy diagnostics guide](service-fabric-reverse-proxy-diagnostics.md). To view these events in Visual Studio's Diagnostic Event viewer, add "Microsoft-ServiceFabric:4:0x4000000000000020" to the list of ETW providers.
@@ -285,13 +286,13 @@ Update the `EtwEventSourceProviderConfiguration` section in the template.json fi
285
286
For example, if your event source is named My-Eventsource, add the following code to place the events from My-Eventsource into a table named MyDestinationTableName.
286
287
287
288
```json
288
-
{
289
-
"provider": "My-Eventsource",
290
-
"scheduledTransferPeriod": "PT5M",
291
-
"DefaultEvents": {
292
-
"eventDestination": "MyDestinationTableName"
293
-
}
294
-
}
289
+
{
290
+
"provider": "My-Eventsource",
291
+
"scheduledTransferPeriod": "PT5M",
292
+
"DefaultEvents": {
293
+
"eventDestination": "MyDestinationTableName"
294
+
}
295
+
}
295
296
```
296
297
297
298
To collect performance counters or event logs, modify the Resource Manager template by using the examples provided in [Create a Windows virtual machine with monitoring and diagnostics by using an Azure Resource Manager template](../virtual-machines/extensions/diagnostics-template.md?toc=/azure/virtual-machines/windows/toc.json). Then, republish the Resource Manager template.
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-tutorial-standalone-create-service-fabric-cluster.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,13 +39,13 @@ Next, update the three ipAddress lines that occur in the file on lines 8, 15, an
39
39
After updating the nodes, they appear as follows:
40
40
41
41
```json
42
-
{
43
-
"nodeName": "vm0",
44
-
"ipAddress": "172.31.27.1",
45
-
"nodeTypeRef": "NodeType0",
46
-
"faultDomain": "fd:/dc1/r0",
47
-
"upgradeDomain": "UD0"
48
-
}
42
+
{
43
+
"nodeName": "vm0",
44
+
"ipAddress": "172.31.27.1",
45
+
"nodeTypeRef": "NodeType0",
46
+
"faultDomain": "fd:/dc1/r0",
47
+
"upgradeDomain": "UD0"
48
+
}
49
49
```
50
50
51
51
Then you need to update a couple of the properties. On line 34, you need to modify the connection string for the diagnostic store it should look like this `"connectionstring": "C:\\ProgramData\\SF\\DiagnosticsStore"`
Copy file name to clipboardExpand all lines: articles/virtual-machine-scale-sets/virtual-machine-scale-sets-mvss-custom-image.md
+10-7Lines changed: 10 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -90,13 +90,16 @@ In the scale set resource, add a `dependsOn` clause referring to the custom imag
90
90
In the `imageReference` of the scale set `storageProfile`, instead of specifying the publisher, offer, sku, and version of a platform image, specify the `id` of the `Microsoft.Compute/images` resource:
In this example, use the `resourceId` function to get the resource ID of the image created in the same template. If you have created the managed disk image beforehand, you should provide the ID of that image instead. This ID must be of the form: `/subscriptions/<subscription-id>resourceGroups/<resource-group-name>/providers/Microsoft.Compute/images/<image-name>`.
0 commit comments