Hi RyanLee ,
You can either use SystemInformation (example here), or query system information using depthai.Device object;
with dai.Device() as device:
device.getChipTemperature()
device.getLeonCssCpuUsage()
device.getDdrMemoryUsage()
# and other getters for specific core
Regarding temperature; RVC's temperature can go up to 105deg celsius, and will shutdown if it gets too hot to cause issue to the chip itself ( see docs here).
Thanks, Erik