@lansweeper/discovery-sensor-proto 2.35.2 → 2.35.3
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.
|
|
4
|
+
"version": "2.35.3",
|
|
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": "
|
|
19
|
+
"gitHead": "c4d144251a7ea578ff7cd1bef67019711d024f2c"
|
|
20
20
|
}
|
|
@@ -1287,6 +1287,41 @@ 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
|
+
// Separate message with just one property, just in case we want to scan extra properties in the future
|
|
1302
|
+
message ProcessorPerformance {
|
|
1303
|
+
google.protobuf.UInt64Value percent_processor_time = 1;
|
|
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
|
+
}
|
|
1311
|
+
|
|
1312
|
+
message DiskSize {
|
|
1313
|
+
google.protobuf.StringValue name = 1;
|
|
1314
|
+
google.protobuf.UInt64Value free_space = 2; // in bytes
|
|
1315
|
+
google.protobuf.UInt64Value size = 3; // in bytes
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
message NetworkPerformance {
|
|
1319
|
+
google.protobuf.StringValue name = 1;
|
|
1320
|
+
google.protobuf.UInt64Value network_bytes_total_per_sec = 2;
|
|
1321
|
+
google.protobuf.UInt64Value network_bytes_sent_per_sec = 3;
|
|
1322
|
+
google.protobuf.UInt64Value network_bytes_received_per_sec = 4;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1290
1325
|
/* Section element for BUS devices on Windows */
|
|
1291
1326
|
message WindowsBus {
|
|
1292
1327
|
repeated Bus entries = 1;
|