gitextract_txcbka2j/ ├── .gitignore ├── LICENSE.md ├── README.md ├── app/ │ ├── index.html │ └── server/ │ ├── config/ │ │ └── ping_hosts │ ├── index.go │ ├── index.js │ ├── index.php │ ├── index.py │ └── linux_json_api.sh ├── bin/ │ └── linux-dash ├── demo.js ├── ecosystem.config.js ├── gulpfile.js ├── index.html ├── package.json └── src/ ├── css/ │ ├── README.md │ ├── buttons.css │ ├── main.css │ ├── plugins-cotnainer.css │ └── tables.css └── js/ ├── README.md ├── core/ │ ├── app.js │ ├── features/ │ │ ├── key-value-list/ │ │ │ ├── key-value-list.directive.js │ │ │ └── key-value-list.html │ │ ├── line-chart/ │ │ │ ├── line-chart-plugin.directive.js │ │ │ └── line-chart-plugin.html │ │ ├── loader/ │ │ │ ├── loader.css │ │ │ └── loader.directive.js │ │ ├── multi-line-chart/ │ │ │ ├── multi-line-chart-plugin.directive.js │ │ │ └── multi-line-chart-plugin.html │ │ ├── navbar/ │ │ │ ├── navbar.css │ │ │ └── navbar.directive.js │ │ ├── plugin/ │ │ │ ├── plugin.css │ │ │ ├── plugin.directive.js │ │ │ └── plugin.html │ │ ├── progress-bar/ │ │ │ ├── progress-bar-plugin.directive.js │ │ │ └── progress-bar.css │ │ ├── table-data/ │ │ │ ├── table-data.css │ │ │ ├── table-data.directive.js │ │ │ └── table-data.html │ │ └── top-bar/ │ │ ├── topbar.css │ │ └── topbar.directive.js │ ├── rootscope-event-handlers/ │ │ ├── hide-plugin.run.js │ │ └── make-plugins-draggable.run.js │ ├── routes.js │ └── server.service.js └── plugins/ ├── README.md ├── cpu-avg-load-chart.directive.js ├── cpu-temp.directive.js ├── cpu-utilization-chart.directive.js ├── disk-space/ │ ├── disk-space.directive.js │ └── disk-space.html ├── download-transfer-rate-chart.directive.js ├── ram-chart.directive.js ├── simple-table-data-plugins.directive.js └── upload-transfer-rate-chart.directive.js