Out of curiosity, are you able to pull “up_time_secs” by any chance? I ask because it looks like “up_time” is formatted as a string whereas “up_time_secs” is formatted as an integer. I’m not sure if that would make a difference.
As suspected the issue was me not understanding the sections with the json string.
Info section:
○ Up_time_secs = value_json.info.up_time_secs
○ Temperature_c = value_json.info.temperature_c
Networking section:
○ IP = value_json.info.networking.wlan0.IP
Drives section:
○ Size_gb = value_json.info.drives.root.size_gb
Memory section:
○ Free_mb = value_json.info.memory.free_mb | int where “| int” defines the value as an integer.