Hi all,
Using 5.0.8 source and compiling on Armbian I'm getting
Code:
which is
Code:
To fix this to work on 32 bit platforms you can change this to
Code:
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.
Using 5.0.8 source and compiling on Armbian I'm getting
Code:
HTML Code:
plugins/proc/procfs_linux.go:248:6: constant 1099511627776 overflows int
Code:
HTML Code:
v, err := strconv.Atoi(strings.TrimSpace(line[:len(line)-2]))
Code:
HTML 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.
Comment