Commit Graph

1077 Commits (837fc76f6885d42127f79a0e974eb17ae3cb0a6e)
 

Author SHA1 Message Date
shirou 837fc76f68 [disk] darwin i386: add definition for darwin/386
and change to use Statfs. it is same as freebsd/openbsd.
7 years ago
shirou c3f470a77a
Merge pull request #504 from dimrozakis/linux-used-mem
Always calculate linux used mem as total-(free+buffered+cache)
7 years ago
shirou 1ba5059aca [memory] Linux: add document url about OverCommiting. 7 years ago
shirou a1564d2e89
Merge pull request #478 from DataDog/olivielpeau/commit-vm-stats
[mem] Add commit-related stats to VirtualMemoryStat on Linux
7 years ago
shirou 1fc354628c
Merge pull request #503 from cshunger/patch-1
Fix float64 casting
7 years ago
Dimitris Rozakis 4510db20db Always calculate linux used mem as total-(free+buffered+cache)
Used memory was calculated as Total - Available.
For newer kernels (3.14+), available memory is taken from /proc/meminfo,
whereas for older kernels it is computed as free+buffered+cached.

This commit changes that behavior. Available memory is still taken from
/proc/meminfo, if available, but used memory is always computed as
total-free-buffered-cached.

This way, it matches the output of `free` for used memory (in the -/+
buffers/cache line) and other tools.

Prior to this change, I'd see a reported used memory of 600MiB whereas
free, htop and other tools would report a used memory of 1.8GiB. And
adding used, cached, buffered and free memory would leave ~1.2GiB
unaccounted for.
7 years ago
Chevy 699deed6c6
Fix float64 casting 7 years ago
shirou b99342a9ce [host] fallback: implement PlatformInformation() 7 years ago
shirou 26a4a2f995 [process]: move ErrorNoChildren to platform independent. 7 years ago
shirou ebe614f6e1 [solaris] host: add PlatformInformation() which is missing. 7 years ago
shirou 12394ccbca
Merge pull request #502 from lclarkmichalek/master
Use static initialisation for invoke instances, instead of init funcs
7 years ago
Laurie Clark-Michalek 413cb32b6c Use static initialisation for invoke instances, instead of init funcs
The order of init function execution is dependant on the order that the
source files are passed to the compiler. This causes issues when
building under other build systems, such as bazel or buck, as they are
not guarenteed to maintain the same file order as the default go tool.
7 years ago
shirou 6b5767f15e
Merge pull request #501 from HeChuanXUPT/fix_docker_uptime
fix docker uptime
7 years ago
linuxhe ee5d6a3d8f fix docker uptime 7 years ago
shirou d76e8c18d8
Merge pull request #496 from shirou/add_docker_to_use_btime
[host] linux: use uptime even if docker guest.
7 years ago
shirou dd850b1aa1
Merge pull request #498 from stevenh/host-freebsd
Eliminate call to uname on FreeBSD
7 years ago
shirou 6ce2ace794
Merge pull request #497 from stevenh/freebsd-mem
Eliminate call to swapinfo on FreeBSD
7 years ago
Steven Hartland f846eda923 Eliminate call to uname on FreeBSD
Improve performance by eliminating the fork out to uname on FreeBSD which also helps prevent crashes / hangs due to the outstanding fork crash bug:
golang/go#15658

Also added a test for PlatformInformation.
7 years ago
Steven Hartland d968f63e51 Eliminate call to swapinfo on FreeBSD
Improve performance by eliminating the fork out to swapinfo on FreeBSD which also helps prevent crashes / hangs due to the outstanding fork crash bug:
golang/go#15658

This also fixes the value reported by SwapMemory and SwapMemoryWithContext on FreeBSD which previously only included the first swap device and also reported the values in terms of 1K blocks instead of bytes.
7 years ago
shirou 28f7cb0d63 [host] linux: use uptime even if docker guest. 7 years ago
shirou 5776ff9c7c
Merge pull request #494 from schmichael/patch-1
typo: wich -> which
7 years ago
Michael Schurter b11d0a7942
typo: wich -> which 7 years ago
shirou 12ab94e804
Merge pull request #493 from maihde/issue-492
Resolve issue #492 to reduce CPU overhead associated with fillFromStat
7 years ago
Ihde 44ef466a5a Resolve issue #492 to reduce CPU overhead associated with fillFromStat 7 years ago
shirou 543a05cce0 fix psutil URL. 7 years ago
shirou 32a44bdc39
Merge pull request #488 from sadag/master
windows: fix WithContext functions
7 years ago
shirou 9a74b6fe2e [cpu]windows: fix retrun value. 7 years ago
shirou 234a591899
Merge pull request #487 from truthbk/fix-win-race
[host] fix race condition to ret
7 years ago
sada 8dd42707e2 windows: fix WithContext functions
set timeout only if parent context doesn't set.
7 years ago
Jaime Fullaondo 178e5ce997 [host] fix race condition to ret 7 years ago
shirou c432be29cc
Merge pull request #485 from cshunger/linux-temperature
Linux temperature
7 years ago
CHEVY S. HUNGERFORD 29f8dfa1ad fixing SensorKey output 7 years ago
CHEVY S. HUNGERFORD 1c4fa5628c giving temperature more verbose output 7 years ago
shirou 4ac6b5b4d3 Revert "Merge pull request #470 from improbable-io/bug-darwin-build-2"
This reverts commit bb09b4e7d9, reversing
changes made to 6a368fb7cd.
7 years ago
shirou bb09b4e7d9
Merge pull request #470 from improbable-io/bug-darwin-build-2
Fix build with bazel on OSX attempt 2 (add stub for host_cgo.go)
7 years ago
Tatiana Borisova 945c2f41de Fix host_cgo file 7 years ago
Tatiana Borisova a271cb7c1c Fix package name in host_cgo.go 7 years ago
shirou 6a368fb7cd [process]: add ProcessesWithContext. 7 years ago
shirou 079e1cb22f [internal]Windows: skip Host test. 7 years ago
shirou 2ae56c34ce
Merge pull request #480 from shirou/feature/add_context_support
Add WithContext functions.
7 years ago
shirou e776f6384a [docker]: fix typo. 7 years ago
shirou a97abd3450
Merge branch 'master' into feature/add_context_support 7 years ago
shirou d1fb05a30b Skip some test if CircleCI. 7 years ago
shirou 1958326a49 [docker]: fix re-declartion 7 years ago
shirou cd61c36c4f
Merge branch 'master' into feature/add_context_support 7 years ago
shirou 12199ad2d7
Merge pull request #481 from shirou/feature/use_basename_for_iocounters
[disk]linux: use basename such as sda1 for IOCounters
7 years ago
shirou e6205aaa77
Merge pull request #441 from shirou/feature/lxd_boot_time
[host] linux: change file if in a lxc container.
7 years ago
shirou 8b2468f1e7 Merge branch 'master' of github.com:shirou/gopsutil into feature/lxd_boot_time 7 years ago
shirou 231815dfea [docker]: move String() to docker.go for all platforms. 7 years ago
shirou 49e4d328f8
Merge pull request #471 from nkirsch/tgid_support
Add support for parsing the tgid (thread group id) field.
7 years ago