@lansweeper/discovery-sensor-proto 2.35.2 → 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.2",
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": "74e3562c91d8985dfa5c0a635ea2ff03df12fe5c"
19
+ "gitHead": "cc457c6d7c90a5933ccad9c6c3935fd876530f44"
20
20
  }
@@ -1287,6 +1287,42 @@ message Environment {
1287
1287
  google.protobuf.StringValue variable_value = 5;
1288
1288
  }
1289
1289
 
1290
+ /* Section element for Windows performance info */
1291
+ message WindowsPerformance {
1292
+ repeated ProcessorPerformance processor_performance = 1;
1293
+ repeated DiskPerformance disk_performance = 2;
1294
+ repeated DiskSize disk_size = 3;
1295
+ repeated NetworkPerformance network_performance = 4;
1296
+
1297
+ google.protobuf.UInt64Value total_visible_memory_size = 5; // Size in Kbytes
1298
+ google.protobuf.UInt64Value free_physical_memory = 6; // Size in Kbytes
1299
+ }
1300
+
1301
+ message ProcessorPerformance {
1302
+ google.protobuf.UInt64Value percent_processor_time = 1;
1303
+ google.protobuf.StringValue name = 2;
1304
+ }
1305
+
1306
+ message DiskPerformance {
1307
+ google.protobuf.UInt32Value disk_reads_per_sec = 1;
1308
+ google.protobuf.UInt32Value disk_transfers_per_sec = 2;
1309
+ google.protobuf.UInt32Value disk_writes_per_sec = 3;
1310
+ google.protobuf.StringValue name = 4;
1311
+ }
1312
+
1313
+ message DiskSize {
1314
+ google.protobuf.StringValue name = 1;
1315
+ google.protobuf.UInt64Value free_space = 2; // in bytes
1316
+ google.protobuf.UInt64Value size = 3; // in bytes
1317
+ }
1318
+
1319
+ message NetworkPerformance {
1320
+ google.protobuf.StringValue name = 1;
1321
+ google.protobuf.UInt64Value network_bytes_total_per_sec = 2;
1322
+ google.protobuf.UInt64Value network_bytes_sent_per_sec = 3;
1323
+ google.protobuf.UInt64Value network_bytes_received_per_sec = 4;
1324
+ }
1325
+
1290
1326
  /* Section element for BUS devices on Windows */
1291
1327
  message WindowsBus {
1292
1328
  repeated Bus entries = 1;