doronz88 / pymobiledevice3

Pure python3 implementation for working with iDevices (iPhone, etc...).
https://discord.gg/52mZGC3JXJ
GNU General Public License v3.0
1.49k stars 207 forks source link

Missing memory attributes in: `developer dvt sysmon process monitor` #815

Open lezhi12 opened 9 months ago

lezhi12 commented 9 months ago

my command line is "developer dvt sysmon process monitor --rdt .........."

1、 Actural result of output frequency is 3 to 5 seconds, it's too slow for performance testing. In sysmontap.py I see below config, according to it, output frequency should be 500 ms, but the actural result is 3 to 5 seconds, it's too slow for performance testing, any body know why and how to make it 500 ms?

2、There is only CPU Usage but no memory related result in output data,is that because there is no related configs in var "process_attributes" and "system_attributes"?

------------------------below is source code of config from sysmontap.py--------------------- config = { 'ur': 500, # Output frequency ms 'bm': 0, 'procAttrs': process_attributes, 'sysAttrs': system_attributes, 'cpuUsage': True, 'sampleInterval': 500000000 }

doronz88 commented 7 months ago