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
windows: Use instance label for hostname in hostname panel (#1353)
* windows: Use instance label for hostname in hostname panel
* Fix NTP delay units (thanks to linter)
* Add units to panels
* Add none units to cpu count to pass linter
* Update win mixin
Copy file name to clipboardExpand all lines: windows-observ-lib/panels.libsonnet
+20-15Lines changed: 20 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -187,22 +187,25 @@ local utils = commonlib.utils;
187
187
188
188
A high number of context switches or interrupts can indicate that the system is overloaded or that there are problems with specific devices or processes.
The CPU average queue size in Windows, often referred to as the "Processor Queue Length" or "CPU Queue Length," is a metric that measures the number of threads or tasks waiting to be processed by the central processing unit (CPU) at a given moment.
250
-
It is an essential performance indicator that reflects the workload and responsiveness of the CPU.
251
-
When the CPU queue length is high, it indicates that there are more tasks in line for processing than the CPU can handle immediately.
248
+
cpuQueue:
249
+
commonlib.panels.generic.timeSeries.base.new(
250
+
'CPU average queue size',
251
+
targets=[t.cpuQueue],
252
+
description=|||
253
+
The CPU average queue size in Windows, often referred to as the "Processor Queue Length" or "CPU Queue Length," is a metric that measures the number of threads or tasks waiting to be processed by the central processing unit (CPU) at a given moment.
254
+
It is an essential performance indicator that reflects the workload and responsiveness of the CPU.
255
+
When the CPU queue length is high, it indicates that there are more tasks in line for processing than the CPU can handle immediately.
252
256
253
-
This can lead to system slowdowns, decreased responsiveness, and potential performance issues. High CPU queue lengths are often associated with CPU saturation, where the CPU is struggling to keep up with the demands placed on it.
254
-
|||
255
-
),
257
+
This can lead to system slowdowns, decreased responsiveness, and potential performance issues. High CPU queue lengths are often associated with CPU saturation, where the CPU is struggling to keep up with the demands placed on it.
0 commit comments