├── Applications └── Statistics │ ├── Config │ ├── Cache │ │ └── empty │ └── Config.php │ ├── Web │ ├── js │ │ ├── scripts.js │ │ └── html5shiv.js │ ├── img │ │ ├── favicon.png │ │ ├── glyphicons-halflings.png │ │ ├── glyphicons-halflings-white.png │ │ ├── apple-touch-icon-57-precomposed.png │ │ ├── apple-touch-icon-72-precomposed.png │ │ ├── apple-touch-icon-114-precomposed.png │ │ └── apple-touch-icon-144-precomposed.png │ ├── css │ │ └── style.css │ ├── config.php │ ├── less │ │ ├── breadcrumbs.less │ │ ├── component-animations.less │ │ ├── wells.less │ │ ├── thumbnails.less │ │ ├── close.less │ │ ├── utilities.less │ │ ├── jumbotron.less │ │ ├── media.less │ │ ├── pager.less │ │ ├── badges.less │ │ ├── labels.less │ │ ├── bootstrap.less │ │ ├── code.less │ │ ├── alerts.less │ │ ├── print.less │ │ ├── pagination.less │ │ ├── progress-bars.less │ │ ├── list-group.less │ │ ├── scaffolding.less │ │ ├── grid.less │ │ ├── tooltip.less │ │ ├── modals.less │ │ ├── popovers.less │ │ ├── input-groups.less │ │ ├── buttons.less │ │ ├── panels.less │ │ ├── dropdowns.less │ │ ├── tables.less │ │ ├── carousel.less │ │ ├── responsive-utilities.less │ │ ├── type.less │ │ ├── button-groups.less │ │ ├── navs.less │ │ ├── theme.less │ │ ├── normalize.less │ │ └── forms.less │ ├── _init.php │ └── index.php │ ├── README.md │ ├── Views │ ├── footer.tpl.php │ ├── log.tpl.php │ ├── header.tpl.php │ ├── setting.tpl.php │ ├── login.tpl.php │ ├── admin.tpl.php │ ├── statistic.tpl.php │ └── main.tpl.php │ ├── loader.php │ ├── Lib │ ├── Cache.php │ └── functions.php │ ├── start_web.php │ ├── start_provider.php │ ├── start_worker.php │ ├── start_finder.php │ ├── Modules │ ├── setting.php │ ├── logger.php │ ├── admin.php │ ├── statistic.php │ └── main.php │ ├── Protocols │ └── Statistic.php │ ├── Clients │ └── StatisticClient.php │ └── Bootstrap │ └── StatisticWorker.php ├── .gitignore ├── start_for_win.bat ├── .gitattributes ├── composer.json ├── start.php ├── README.md └── MIT-LICENSE.txt /Applications/Statistics/Config/Cache/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Applications/Statistics/Web/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | -------------------------------------------------------------------------------- /Applications/Statistics/Web/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-statistics/HEAD/Applications/Statistics/Web/img/favicon.png -------------------------------------------------------------------------------- /Applications/Statistics/README.md: -------------------------------------------------------------------------------- 1 | 2 | 统计模块 3 | ======= 4 | 5 | * 管理员用户名密码默认都为空,即不需要登录就可以查看监控数据 6 | * 如果需要登录验证,在applications/Statistics/Config/Config.php里面设置管理员密码 7 | 8 | -------------------------------------------------------------------------------- /Applications/Statistics/Web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-statistics/HEAD/Applications/Statistics/Web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Applications/Statistics/Views/footer.tpl.php: -------------------------------------------------------------------------------- 1 |
2 |