├── src ├── assets │ └── main.css ├── main.js ├── locales │ ├── index.ts │ ├── zh.json │ ├── ko.json │ ├── ja.json │ ├── en.json │ └── de.json ├── components │ ├── HeaderLocale.vue │ ├── CPU.vue │ ├── NetOut.vue │ ├── NetIn.vue │ ├── Mem.vue │ └── StatsCard.vue ├── utils │ └── utils.js └── App.vue ├── akile_monitor.jpg ├── public ├── favicon.ico └── config.json ├── jsconfig.json ├── index.html ├── .gitignore ├── README.md ├── package.json ├── .github └── workflows │ └── node.js.yml ├── vite.config.js └── yarn.lock /src/assets/main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /akile_monitor.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akile-network/akile_monitor_fe/HEAD/akile_monitor.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/akile-network/akile_monitor_fe/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "socket": "ws://192.168.31.64:3000/ws", 3 | "apiURL": "http://192.168.31.64:3000" 4 | } -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "paths": { 4 | "@/*": ["./src/*"] 5 | } 6 | }, 7 | "exclude": ["node_modules", "dist"] 8 | } 9 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 |