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/monitor-service-fabric-reference.md
+67-3Lines changed: 67 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@ See [Monitor Service Fabric](monitor-service-fabric.md) for details on the data
18
18
Azure Monitor doesn't collect any platform metrics or resource logs for Service Fabric. You can monitor and collect:
19
19
20
20
- Service Fabric system, node, and application events. For the full event listing, see [List of Service Fabric events](service-fabric-diagnostics-event-generation-operational.md).
21
-
- Windows performance counters on nodes and applications. For the list of performance counters, see [Performance metrics](service-fabric-diagnostics-event-generation-perf.md).
21
+
- Windows performance counters on nodes and applications. For the list of performance counters, see [Performance metrics](#performance-metrics).
22
22
- Cluster, node, and system service health data. You can use the [FabricClient.HealthManager property](/dotnet/api/system.fabric.fabricclient.healthmanager) to get the health client to use for health related operations, like report health or get entity health.
23
23
- Metrics for the guest operating system (OS) that runs on a cluster node, through one or more agents that run on the guest OS.
24
24
@@ -27,9 +27,74 @@ Azure Monitor doesn't collect any platform metrics or resource logs for Service
27
27
> [!NOTE]
28
28
> The Azure Monitor agent replaces the previously-used Azure Diagnostics extension and Log Analytics agent. For more information, see [Overview of Azure Monitor agents](/azure/azure-monitor/agents/agents-overview).
29
29
30
+
## Performance metrics
31
+
32
+
Metrics should be collected to understand the performance of your cluster as well as the applications running in it. For Service Fabric clusters, we recommend collecting the following performance counters.
33
+
34
+
### Nodes
35
+
36
+
For the machines in your cluster, consider collecting the following performance counters to better understand the load on each machine and make appropriate cluster scaling decisions.
37
+
38
+
| Counter Category | Counter Name |
39
+
| --- | --- |
40
+
| Logical Disk | Logical Disk Free Space |
41
+
| PhysicalDisk(per Disk) | Avg. Disk Read Queue Length |
42
+
| PhysicalDisk(per Disk) | Avg. Disk Write Queue Length |
43
+
| PhysicalDisk(per Disk) | Avg. Disk sec/Read |
44
+
| PhysicalDisk(per Disk) | Avg. Disk sec/Write |
45
+
| PhysicalDisk(per Disk) | Disk Reads/sec |
46
+
| PhysicalDisk(per Disk) | Disk Read Bytes/sec |
47
+
| PhysicalDisk(per Disk) | Disk Writes/sec |
48
+
| PhysicalDisk(per Disk) | Disk Write Bytes/sec |
49
+
| Memory | Available MBytes |
50
+
| PagingFile | % Usage |
51
+
| Processor(Total) | % Processor Time |
52
+
| Process (per service) | % Processor Time |
53
+
| Process (per service) | ID Process |
54
+
| Process (per service) | Private Bytes |
55
+
| Process (per service) | Thread Count |
56
+
| Process (per service) | Virtual Bytes |
57
+
| Process (per service) | Working Set |
58
+
| Process (per service) | Working Set - Private |
59
+
| Network Interface(all-instances) | Bytes recd |
60
+
| Network Interface(all-instances) | Bytes sent |
61
+
| Network Interface(all-instances) | Bytes total |
Service Fabric generates a substantial amount of custom performance counters. If you have the SDK installed, you can see the comprehensive list on your Windows machine in your Performance Monitor application (Start > Performance Monitor).
88
+
89
+
In the applications you are deploying to your cluster, if you are using Reliable Actors, add counters from `Service Fabric Actor` and `Service Fabric Actor Method` categories (see [Service Fabric Reliable Actors Diagnostics](service-fabric-reliable-actors-diagnostics.md)).
90
+
91
+
If you use Reliable Services or Service Remoting, we similarly have `Service Fabric Service` and `Service Fabric Service Method` counter categories that you should collect counters from, see [monitoring with service remoting](service-fabric-reliable-serviceremoting-diagnostics.md) and [reliable services performance counters](service-fabric-reliable-services-diagnostics.md#performance-counters).
92
+
93
+
If you use Reliable Collections, we recommend adding the `Avg. Transaction ms/Commit` from the `Service Fabric Transactional Replicator` to collect the average commit latency per transaction metric.
- See [Monitor Service Fabric](monitor-service-fabric.md) for a description of monitoring Service Fabric.
45
110
- See [Monitor Azure resources with Azure Monitor](/azure/azure-monitor/essentials/monitor-azure-resource) for details on monitoring Azure resources.
46
111
- See [List of Service Fabric events](service-fabric-diagnostics-event-generation-operational.md) for the list of Service Fabric system, node, and application events.
47
-
- See [Performance metrics](service-fabric-diagnostics-event-generation-perf.md) for the list of Windows performance counters on nodes and applications.
0 commit comments