mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-30 04:32:00 +03:00
commit
9a58502989
2
NEWS.rst
2
NEWS.rst
@ -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/
|
||||
|
@ -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)
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user