dumpsys Information
- Use an SSH tool such as Xshell to log in to the server where the video stream cloud phone is deployed as the cloud phone O&M user (for example, root).
- Switch to the root user.
# su - root
- Run the following command to query the container ID:
# docker ps -a
- Run the following command to obtain the diagnosis output of all system services in the container. In the command, ${android_id} indicates the ID of the started instance.dumpsys is a tool running on Android devices that provides information about system services.
1# docker exec -it android_${android_id} dumpsysAfter the preceding command is run, a large amount of data is displayed. Generally, you need to specify the services to be checked in the command.
- To obtain the complete list of system services supported by dumpsys, run the following command:
1# docker exec -it android_${android_id} dumpsys -lTo obtain the container memory information, run the following command:1# docker exec -it android_${android_id} dumpsys meminfoThe following figure shows the command output.

Parent topic: Querying Docker Container Logs