Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ sidebar:

Cloudflare customers can inspect metrics for a specific Magic WAN Connector in the Cloudflare dashboard. The Magic WAN Connector device metrics measured by Cloudflare include:

- Average CPU load
- Average temperature (this is always zero for Virtual Connector)
- Average disk utilization
- Average memory utilization
- CPU load
- System temperature (this is always zero for Virtual Connector)
- Disk utilization
- Memory utilization

To check for Connector metrics:

Expand All @@ -33,22 +33,21 @@ query MagicWanDeviceMetrics(
) {
viewer {
accounts(filter: { accountTag: $accountTag }) {
MagicWANConnectorMetricsAdaptiveGroups(
mconnTelemetrySnapshotsAdaptiveGroups(
limit: 100
filter: {
mconnInterfaceType: "system"
datetime_geq: $datetimeStart
datetime_lt: $datetimeEnd
}
) {
avg {
cpuTemperature
cpuLoadPercentage
diskUsagePercentage
memoryUsagePercentage
max {
loadAverage1m
cpuCount
memoryFreeBytes
memoryTotalBytes
}
dimensions {
mconnInterfaceName
connectorId
}
}
}
Expand All @@ -62,4 +61,4 @@ The metric `average CPU load` is unique and distinctly different from `CPU utili

CPU load is a measure of the number of processes that are currently running and that are waiting to be run on the CPU. Cloudflare collects the one minute load average from the device and converts that into a percentage based on the total number of cores in the CPU. If the Magic WAN Connector CPU has eight cores, and a one minute load average of two, then the average CPU load is 25%. If the average CPU load is above 100%, then there are processes in the queue that are waiting to be executed on the CPU.

Cloudflare is still evaluating the typical CPU load operating range on the MWAN Connector. In general, a healthy range for average CPU load on any device is between 30% and 70%. Customers may experience decreased MWAN Connector performance if the average CPU load is consistently above 100%.
Cloudflare is still evaluating the typical CPU load operating range on the MWAN Connector. In general, a healthy range for average CPU load on any device is between 30% and 70%. Customers may experience decreased MWAN Connector performance if the average CPU load is consistently above 100%.
Loading