Merge pull request #1932 from mohamadmansourX/develop

Fix typo
This commit is contained in:
Floran Brutel 2021-10-02 07:45:16 +02:00 committed by GitHub
commit 9a58502989
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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