dgjung0220 / adb_viewer

android resource viewer (like cpus, load, cpuset...) by using adb

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

adb_viewer

Android CPU & CPUSET Viewer by using electorn, adbkit. For more information, see the Blog

adb_viewer is a realtime android resource viewer (CPU Usage, CPU Frequency, CPUSET Configuration, Running process by cpuset) using Node.js, electron and adbkit. It work at Quad Core Processor. (LG V10,V20,G5,G6, Google Pixel)

CPUSET Viewer function is only able to use Daydream ready Android phone(Google Pixel), or you can easily enable CPUSETs kernel feature.

Requirements

node modules

dependencies

  • adbkit
  • collections
  • bluebird
  • electron-pug

devDependenices

  • asar
  • electron
  • electron-installer-squirrel-windows
  • electron-packager

Getting started

git clone https://github.com/dgjung0220/adb_viewer.git
cd adb_viewer
npm start

adb command line

Show each core's CPU Usage & Frequency

cat /proc/stat
cat /sys/devices/system/cpu/cpuX/cpufreq/scaling_cur_freq

Show CPUSETs Setting Configuration

cat /dev/cpuset/cpus
cat /dev/cpuset/foreground/cpus
cat /dev/cpuset/background/cpus
cat /dev/cpuset/system-background/cpus
cat /dev/cpuset/top-app/cpus

Show running process by CPUSETs

cat /dev/cpuset/foreground/tasks
cat /dev/cpuset/background/tasks
cat /dev/cpuset/system-background/tasks
cat /dev/cpuset/top-app/tasks

You can find more information in my blog(in Korean) post

make execute file(.exe) & zipping

add below scripts code in package.json, it will start after starting program.

"scripts": {    
    "start": "electron .",
    "poststart" : "electron-packager . cpuViewer --asar --platform win32 --arch x64 --out dist/"
},

make installer file(setup.exe)

cd adb_viewer
node installer.js

You can find ./dist/installer folder extension in project file.

License

ISC License. Copyright © 2017, Donggoo Jung

About

android resource viewer (like cpus, load, cpuset...) by using adb


Languages

Language:JavaScript 60.2%Language:CSS 39.5%Language:HTML 0.3%