We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ARM v7 (added print statements to: disk-usage_unix.go
disk-usage_unix.go
} else { all := int(fs.Blocks * uint64(fs.Bsize)) free := int(fs.Bfree * uint64(fs.Bsize)) used := int(all - free) percentage := int((float64(used) / float64(all)) * 100) fmt.Println(strconv.Itoa(all)) fmt.Println(strconv.Itoa(free)) fmt.Println(strconv.Itoa(used)) fmt.Println(strconv.Itoa(percentage))
./disk-usage-arm.bin -t 0 -1221693440 -1963544576 741851136 -60 Disk usage healthy: /
The text was updated successfully, but these errors were encountered:
Not sure if this is still a problem. I have access to some ARM hardware but it may be outdated (old raspberry pie and Netgate hardware).
Sorry, something went wrong.
jsirianni
No branches or pull requests
ARM v7 (added print statements to:
disk-usage_unix.go
The text was updated successfully, but these errors were encountered: