Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8136893
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T10:54:13+00:00 2026-06-06T10:54:13+00:00

I’m looking for the full list of ADB shell dumpsys commands with a full

  • 0

I’m looking for the full list of ADB shell dumpsys commands with a full explanation of all of the commands.

Where can I find this information?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T10:54:14+00:00Added an answer on June 6, 2026 at 10:54 am

    What’s dumpsys and what are its benefit

    dumpsys is an android tool that runs on the device and dumps interesting information about the status of system services.

    Obvious benefits:

    1. Possibility to easily get system information in a simple string representation.
    2. Possibility to use dumped CPU, RAM, Battery, storage stats for a
      pretty charts, which will allow you to check how your application
      affects the overall device!

    What information can we retrieve from dumpsys shell command and how we can use it

    If you run dumpsys you would see a ton of system information. But you can use only separate parts of this big dump.

    to see all of the “subcommands” of dumpsys do:

    dumpsys | grep "DUMP OF SERVICE"

    Output:

    DUMP OF SERVICE SurfaceFlinger:
    DUMP OF SERVICE accessibility:
    DUMP OF SERVICE account:
    DUMP OF SERVICE activity:
    DUMP OF SERVICE alarm:
    DUMP OF SERVICE appwidget:
    DUMP OF SERVICE audio:
    DUMP OF SERVICE backup:
    DUMP OF SERVICE battery:
    DUMP OF SERVICE batteryinfo:
    DUMP OF SERVICE clipboard:
    DUMP OF SERVICE connectivity:
    DUMP OF SERVICE content:
    DUMP OF SERVICE cpuinfo:
    DUMP OF SERVICE device_policy:
    DUMP OF SERVICE devicestoragemonitor:
    DUMP OF SERVICE diskstats:
    DUMP OF SERVICE dropbox:
    DUMP OF SERVICE entropy:
    DUMP OF SERVICE hardware:
    DUMP OF SERVICE input_method:
    DUMP OF SERVICE iphonesubinfo:
    DUMP OF SERVICE isms:
    DUMP OF SERVICE location:
    DUMP OF SERVICE media.audio_flinger:
    DUMP OF SERVICE media.audio_policy:
    DUMP OF SERVICE media.player:
    DUMP OF SERVICE meminfo:
    DUMP OF SERVICE mount:
    DUMP OF SERVICE netstat:
    DUMP OF SERVICE network_management:
    DUMP OF SERVICE notification:
    DUMP OF SERVICE package:
    DUMP OF SERVICE permission:
    DUMP OF SERVICE phone:
    DUMP OF SERVICE power:
    DUMP OF SERVICE reboot:
    DUMP OF SERVICE screenshot:
    DUMP OF SERVICE search:
    DUMP OF SERVICE sensor:
    DUMP OF SERVICE simphonebook:
    DUMP OF SERVICE statusbar:
    DUMP OF SERVICE telephony.registry:
    DUMP OF SERVICE throttle:
    DUMP OF SERVICE usagestats:
    DUMP OF SERVICE vibrator:
    DUMP OF SERVICE wallpaper:
    DUMP OF SERVICE wifi:
    DUMP OF SERVICE window:
    

    Some Dumping examples and output

    1) Getting all possible battery statistic:

    $~ adb shell dumpsys battery
    

    You will get output:

    Current Battery Service state:
    AC powered: false
    AC capacity: 500000
    USB powered: true
    status: 5
    health: 2
    present: true
    level: 100
    scale: 100
    voltage:4201
    temperature: 271 <---------- Battery temperature! %)
    technology: Li-poly <---------- Battery technology! %)
    

    2)Getting wifi informations

    ~$ adb shell dumpsys wifi
    

    Output:

    Wi-Fi is enabled
    Stay-awake conditions: 3
    
    Internal state:
    interface tiwlan0 runState=Running
    SSID: XXXXXXX BSSID: xx:xx:xx:xx:xx:xx, MAC: xx:xx:xx:xx:xx:xx, Supplicant state: COMPLETED, RSSI: -60, Link speed: 54, Net ID: 2, security: 0, idStr: null
    ipaddr 192.168.1.xxx gateway 192.168.x.x netmask 255.255.255.0 dns1 192.168.x.x dns2 8.8.8.8 DHCP server 192.168.x.x lease 604800 seconds
    haveIpAddress=true, obtainingIpAddress=false, scanModeActive=false
    lastSignalLevel=2, explicitlyDisabled=false
    
    Latest scan results:
    
    Locks acquired: 28 full, 0 scan
    Locks released: 28 full, 0 scan
    
    Locks held:
    

    3) Getting CPU info

    ~$ adb shell dumpsys cpuinfo
    

    Output:

    Load: 0.08 / 0.4 / 0.64
    CPU usage from 42816ms to 34683ms ago:
    system_server: 1% = 1% user + 0% kernel / faults: 16 minor
    kdebuglog.sh: 0% = 0% user + 0% kernel / faults: 160 minor
    tiwlan_wq: 0% = 0% user + 0% kernel
    usb_mass_storag: 0% = 0% user + 0% kernel
    pvr_workqueue: 0% = 0% user + 0% kernel
    +sleep: 0% = 0% user + 0% kernel
    +sleep: 0% = 0% user + 0% kernel
    TOTAL: 6% = 1% user + 3% kernel + 0% irq
    

    4)Getting memory usage informations

    ~$ adb shell dumpsys meminfo 'your apps package name'
    

    Output:

    ** MEMINFO in pid 5527 [com.sec.android.widgetapp.weatherclock] **
                        native   dalvik    other    total
                size:     2868     5767      N/A     8635
           allocated:     2861     2891      N/A     5752
                free:        6     2876      N/A     2882
               (Pss):      532       80     2479     3091
      (shared dirty):      932     2004     6060     8996
        (priv dirty):      512       36     1872     2420
    
     Objects
               Views:        0        ViewRoots:        0
         AppContexts:        0       Activities:        0
              Assets:        3    AssetManagers:        3
       Local Binders:        2    Proxy Binders:        8
    Death Recipients:        0
     OpenSSL Sockets:        0
    
    
     SQL
                   heap:        0         MEMORY_USED:        0
     PAGECACHE_OVERFLOW:        0         MALLOC_SIZE:        0
    

    If you want see the info for all processes, use ~$ adb shell dumpsys meminfo

    enter image description here

    dumpsys is ultimately flexible and useful tool!

    If you want to use this tool do not forget to add permission into your android manifest automatically android.permission.DUMP

    Try to test all commands to learn more about dumpsys. Happy dumping!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I have a jquery bug and I've been looking for hours now, I can't
I'm parsing an RSS feed that has an &#8217; in it. SimpleXML turns this
Does anyone know how can I replace this 2 symbol below from the string
link Im having trouble converting the html entites into html characters, (&# 8217;) i
For some reason, after submitting a string like this Jack’s Spindle from a text
this is what i have right now Drawing an RSS feed into the php,
I have this code to decode numeric html entities to the UTF8 equivalent character.
I have this code: - (void)parser:(NSXMLParser *)parser foundCDATA:(NSData *)CDATABlock { NSString *someString = [[NSString
This could be a duplicate question, but I have no idea what search terms

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.