Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android - Handset built in Developer Tools - "Show Cpu Usage" option meaning?

Android handset shows a list of Developer Tools and Options (under Settings > Developer) to the user and can be displayed on the user's screen. There is various data which gets displayed like: 6.002 / 6.48 / 8.23,and next lines shows some services running in the background . What is the concept behind this?

like image 388
Rana Ranvijay Singh Avatar asked Sep 01 '13 09:09

Rana Ranvijay Singh


2 Answers

Numbers in the first row shows average CPU usage in time intervals 1 minute/5 minutes/15 minutes. Color bars shows how much time CPU spends in userspace(green), kernel(red), i/o(blue).

like image 76
Leszek Avatar answered Oct 13 '22 22:10

Leszek


From the developer site we have:

  1. Show CPU Usage: Displays CPU meters at the top of the screen, showing how much the CPU is being used. The top red bar shows overall CPU usage, and the green bar underneath it shows the CPU time spent in compositing the screen. Here http://developer.android.com/tools/debugging/debugging-devtools.html

  2. Also we have an answer about it here https://stackoverflow.com/a/10829592/826657

like image 44
Rachit Mishra Avatar answered Oct 13 '22 20:10

Rachit Mishra