Cameron Sparr

Results 25 comments of Cameron Sparr

I'm not sure I understand what you're doing, why is GOPATH inside your project?

sure, but it's certainly an edge-case and it'd be hard for me to reproduce your setup exactly without more context. PRs would be welcome :)

I see that the homebrew recipe appears to be updated, could the darwin.arm64 version also be added to the released binaries at https://github.com/koalaman/shellcheck/releases? thanks!

nope, sorry, it will be assigned a milestone when there is

Hello, thanks for opening this issue, I can confirm that specifying a custom profile for the SSM agent (via https://github.com/aws/amazon-ssm-agent#config-property-definitions) will cause problems since we hardcoded this cred provider to...

I have instrumented the ecs-agent with logging to confirm that counting "inactive_file" instead of "cache" does in fact report a more accurate memory usage to cloudwatch, or at least it...

FWIW we also seem to have the same issue on AL2 (with respect to docker-cli memory usage accuracy). @ltm can you confirm if you only see this issue on AL2022?...

I don't agree with changing the current implementation. _Used_ memory is a documented linux kernel term: https://www.centos.org/docs/5/html/5.2/Deployment_Guide/s2-proc-meminfo.html in that it is the opposite of MemFree, which is exactly how gopsutil...

Used is not explicitly documented but MemFree is the "unused" space, which to me means that the used space should just be the opposite of that.

which at least for Linux, is how it is currently calculated: https://github.com/shirou/gopsutil/blob/master/mem/mem_linux.go#L54