Lomanic

Results 96 comments of Lomanic

https://cirrus-ci.org/features/ > To support Open Source community Cirrus CI provides Linux, Windows, macOS and FreeBSD services free of charge. To be tested. I'm also curious about builds.sr.ht, which has [1st...

Duplicate of #1070 (#842 is also linked) See https://github.com/shirou/gopsutil/issues/1070#issuecomment-842512782 for why we can't cache `BootTimeWithContext`. Yes it can change.

[host.Users() is defined here](https://github.com/shirou/gopsutil/blob/f8cc3bd072ed69173b8fc128c8cd41c66fbf36f2/v3/host/host_linux.go#L84-L125) and retrieves its information from `/var/run/utmp`, could you upload this file here?

Could you please paste the content of `/proc/cpuinfo` from a s390x machine maybe? We can only try supporting that architecture if we have sufficient info. Please also share the result...

See https://github.com/shirou/gopsutil/pull/1004#discussion_r533778055, I added some mocks for #881 in https://github.com/Lomanic/gopsutil/tree/issue881, which will also enable this issue #990 to be handled without regressions for untouched platforms (386 and amd64 namely). I...

That looks doable, there is even quite a few netlink libraries available for Go. Would you be interested working on it @wcc526?

I prefer the solution in https://github.com/shirou/gopsutil/issues/286#issuecomment-267633176, with immutable information, to keep the API simple. It could be a drop-in replacement for the majority of use-cases. Something like ```go type ProcessWithFields...

Thanks for the repro case, I see indeed the behavior you describe on my VM. Interesting problem, I don't see an easy solution for the moment, would need more digging....

I don't know, I remember (and I agree with that) that @shirou wanted to remove the `docker` package in v3, so it's not to split its API to a new...

I'm not sure what you're trying to achieve here, p.memInfo is being populated in fillFromStatusWithContext currently, so couldn't your change simply be limited to only redefining MemoryInfoWithContext like this? ```...