Using 5.0.8 source and compiling on Armbian I'm getting
which is
To fix this to work on 32 bit platforms you can change this to
This should not break 64 bit compiles.
It's handy to have Zabbix Server and Zabbix agents running on 32 bit ARM. It works great.
I patched this with my install script https://github.com/sgjava/install-za...nstall.sh#L184
Code:
plugins/proc/procfs_linux.go:248:6: constant 1099511627776 overflows int
Code:
v, err := strconv.Atoi(strings.TrimSpace(line[:len(line)-2]))
Code:
v, err := strconv.ParseInt(strings.TrimSpace(line[:len(line)-2]),10,64)
It's handy to have Zabbix Server and Zabbix agents running on 32 bit ARM. It works great.
I patched this with my install script https://github.com/sgjava/install-za...nstall.sh#L184