From de637c416d65d4b849e01677caad1faea3e435bc Mon Sep 17 00:00:00 2001 From: marchersimon <50295997+marchersimon@users.noreply.github.com> Date: Wed, 14 Apr 2021 22:21:59 +0200 Subject: [PATCH] dumpsys: add page (#5739) --- pages/android/dumpsys.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/android/dumpsys.md diff --git a/pages/android/dumpsys.md b/pages/android/dumpsys.md new file mode 100644 index 0000000000..39f239ce7f --- /dev/null +++ b/pages/android/dumpsys.md @@ -0,0 +1,28 @@ +# dumpsys + +> Provide information about Android system services. +> More information: . + +- Get diagnostic output for all system services: + +`dumpsys` + +- Get diagnostic output for a specific system service: + +`dumpsys {{service}}` + +- List all services `dumpsys` can give information about: + +`dumpsys -l` + +- List service-specific arguments for a service: + +`dumpsys {{service}} -h` + +- Exclude a specific service from the diagnostic output: + +`dumpsys --skip {{service}}` + +- Specify a timeout period in seconds (defaults to 10s): + +`dumpsys -t {{seconds}}`