We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add python -m psutil that list the most frequent data that are requested from users while troubleshooting:
python -m psutil
RAM: 419/3029 MB CPU: Intel(R) Core(TM)2 Duo CPU P8600 @ 2.40GHz GPU: Mobile Intel(R) GMA 4500MHD
GPU string for Intel is got from Adapter String, not from Adapter Type, which is "Mobile Intel(R) 4 Series Express Chipset Family".
The text was updated successfully, but these errors were encountered:
I see little value in returning an arbitrary string which is not easily parse-able. If the user wants to do so he/she can simply do, for example:
python -c "import json, psutil; print(json.dumps(psutil.virtual_memory()))" [10367352832, 4556836864, 56.0, 7951433728, 2415919104, 3891007488, 1778888704, 229965824, 1910951936]
...and decide what info to retrieve and what serialization format to use. Also, psutil does not provide those stats about CPU and GPU.
Sorry, something went wrong.
I see little value in returning an arbitrary string which is not easily parse-able.
Is is not return - it is just a small helper for user space convenience. See godotengine/godot#3546 for an example of how it should be used.
No branches or pull requests
Add
python -m psutil
that list the most frequent data that are requested from users while troubleshooting:GPU string for Intel is got from Adapter String, not from Adapter Type, which is "Mobile Intel(R) 4 Series Express Chipset Family".
The text was updated successfully, but these errors were encountered: