fixed typo

This commit is contained in:
Mohamad Mansour 2021-10-01 15:39:35 +03:00
parent 5e8cf29f27
commit 1e75f104e9
3 changed files with 3 additions and 3 deletions

View File

@ -849,7 +849,7 @@ Bugs corrected:
* Fix RAID support in Python 3 (issue #793 by Alessio Sergi)
* Use dict view objects to avoid issue (issue #758 by Alessio Sergi)
* System exit if Cpu not supported by the Cpuinfo lib (issue #754 by nicolargo)
* KeyError: 'cpucore' when exporting data to InfluxDB (issue #729) by nicolargo)
* KeyError: 'cpucore' when exporting data to InfluxDB (issue #729 by nicolargo)
Others:
* A new Glances docker container to monitor your Docker infrastructure is available here (issue #728): https://hub.docker.com/r/nicolargo/glances/

View File

@ -105,7 +105,7 @@ function timedeltaFilter($filter) {
var d = new Date(sum);
return {
hours: d.getUTCHours(), // TODO : multiple days ( * (d.getDay() * 24)))
hours: d.getUTCHours(), // TODO : multiple days ( * (d.getDay() * 24))
minutes: d.getUTCMinutes(),
seconds: d.getUTCSeconds(),
milliseconds: parseInt("" + d.getUTCMilliseconds() / 10)

View File

@ -347,7 +347,7 @@ class GlancesProcesses(object):
try:
extended['memory_swap'] = sum([v.swap for v in top_process.memory_maps()])
except (psutil.NoSuchProcess, KeyError):
# KeyError catch for issue #1551)
# (KeyError catch for issue #1551)
pass
except (psutil.AccessDenied, NotImplementedError):
# NotImplementedError: /proc/${PID}/smaps file doesn't exist