Add support for sensor temperature in host state (#359)

* feat: Add support for sensor temperature in host state

* chore: Update file permissions for saving config data
This commit is contained in:
Leon
2024-06-01 19:11:48 +08:00
committed by GitHub
parent 3782c0dcaf
commit e0e2b8c3c2
9 changed files with 214 additions and 80 deletions

View File

@@ -41,6 +41,12 @@ message State {
uint64 tcp_conn_count = 14;
uint64 udp_conn_count = 15;
uint64 process_count = 16;
repeated State_SensorTemperature temperatures = 17;
}
message State_SensorTemperature {
string name = 1;
double temperature = 2;
}
message Task {