@lansweeper/discovery-sensor-proto 2.35.3 → 2.35.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@lansweeper/discovery-sensor-proto",
3
3
  "description": "Discovery Sensor proto",
4
- "version": "2.35.3",
4
+ "version": "2.35.4",
5
5
  "main": "gen-proto/index.js",
6
6
  "types": "gen-proto/index.d.ts",
7
7
  "license": "MIT",
@@ -16,5 +16,5 @@
16
16
  "devDependencies": {
17
17
  "@types/google-protobuf": "^3.15.5"
18
18
  },
19
- "gitHead": "c4d144251a7ea578ff7cd1bef67019711d024f2c"
19
+ "gitHead": "cc457c6d7c90a5933ccad9c6c3935fd876530f44"
20
20
  }
@@ -1298,15 +1298,16 @@ message WindowsPerformance {
1298
1298
  google.protobuf.UInt64Value free_physical_memory = 6; // Size in Kbytes
1299
1299
  }
1300
1300
 
1301
- // Separate message with just one property, just in case we want to scan extra properties in the future
1302
1301
  message ProcessorPerformance {
1303
1302
  google.protobuf.UInt64Value percent_processor_time = 1;
1303
+ google.protobuf.StringValue name = 2;
1304
1304
  }
1305
1305
 
1306
1306
  message DiskPerformance {
1307
1307
  google.protobuf.UInt32Value disk_reads_per_sec = 1;
1308
1308
  google.protobuf.UInt32Value disk_transfers_per_sec = 2;
1309
1309
  google.protobuf.UInt32Value disk_writes_per_sec = 3;
1310
+ google.protobuf.StringValue name = 4;
1310
1311
  }
1311
1312
 
1312
1313
  message DiskSize {