It seems space are not allowed in key used in a calculated item:
works:
100*last("vfs.fs.size[/,free]")/last("vfs.fs.size[/,total]")
does not work (space before "free"):
100*last("vfs.fs.size[/, free]")/last("vfs.fs.size[/,total]")
log:
Can not evaluate function [last()]: item [hostname:vfs.fs.size[/, free]] not found
works:
100*last("vfs.fs.size[/,free]")/last("vfs.fs.size[/,total]")
does not work (space before "free"):
100*last("vfs.fs.size[/, free]")/last("vfs.fs.size[/,total]")
log:
Can not evaluate function [last()]: item [hostname:vfs.fs.size[/, free]] not found
Comment