mirror of
https://github.com/empayre/fleet.git
synced 2024-11-06 17:05:18 +00:00
11 lines
204 B
YAML
11 lines
204 B
YAML
|
name: cpu_time
|
||
|
examples: >-
|
||
|
Identify overworked CPUs using a ratio of system to user CPU usage. Here, a
|
||
|
ratio of 2 was arbitrarily chosen.
|
||
|
|
||
|
```
|
||
|
|
||
|
SELECT * FROM cpu_time WHERE user/system>2;
|
||
|
|
||
|
```
|