We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 702b799 commit c39e157Copy full SHA for c39e157
lib/check/node.py
@@ -50,7 +50,7 @@ async def check_node(
50
'pveversion': node.get('pveversion'), # str
51
'loadavg': [float(v) for v in node['loadavg']] \
52
if isinstance(node.get('loadavg'), list) else None,
53
- 'cpu': to_float(node.get('cpu')), # int
+ 'cpu': to_float(node.get('cpu')), # float
54
'idle': to_float(node.get('idle')), # float
55
'wait': to_float(node.get('wait')), # float
56
'uptime': node.get('uptime'), # int
0 commit comments