├── .gitignore ├── GatewayWorker ├── Applications │ └── YourApp │ │ ├── Events.php │ │ ├── start_businessworker.php │ │ ├── start_gateway.php │ │ ├── start_gateway_ws.php │ │ ├── start_register.php │ │ └── start_webserver.php ├── GatewayWorker │ ├── BusinessWorker.php │ ├── Gateway.php │ ├── Lib │ │ ├── Context.php │ │ ├── Db.php │ │ ├── DbConnection.php │ │ └── Gateway.php │ ├── Protocols │ │ └── GatewayProtocol.php │ └── Register.php ├── MIT-LICENSE.txt ├── Plugins │ ├── AppConfig.php │ ├── Domains.php │ └── word.txt ├── README.md ├── Watcher │ └── Watcher.php ├── Workerman │ ├── Autoloader.php │ ├── Connection │ │ ├── AsyncTcpConnection.php │ │ ├── ConnectionInterface.php │ │ ├── TcpConnection.php │ │ └── UdpConnection.php │ ├── Events │ │ ├── Ev.php │ │ ├── Event.php │ │ ├── EventInterface.php │ │ ├── Libevent.php │ │ └── Select.php │ ├── Lib │ │ ├── Constants.php │ │ └── Timer.php │ ├── MIT-LICENSE.txt │ ├── Protocols │ │ ├── Frame.php │ │ ├── Http.php │ │ ├── Http │ │ │ └── mime.types │ │ ├── ProtocolInterface.php │ │ ├── Text.php │ │ ├── Websocket.php │ │ └── Ws.php │ ├── README.md │ ├── WebServer.php │ ├── Worker.php │ └── composer.json ├── start.php └── workerman.log ├── GatewayWorkerStatistics ├── .gitattributes ├── .gitignore ├── Applications │ └── Statistics │ │ ├── Bootstrap │ │ ├── StatisticProvider.php │ │ └── StatisticWorker.php │ │ ├── Clients │ │ └── StatisticClient.php │ │ ├── Config │ │ ├── Cache │ │ │ ├── 1484036174.iplist.cache.php │ │ │ └── empty │ │ └── Config.php │ │ ├── Lib │ │ ├── Cache.php │ │ └── functions.php │ │ ├── Modules │ │ ├── admin.php │ │ ├── logger.php │ │ ├── main.php │ │ ├── setting.php │ │ └── statistic.php │ │ ├── Protocols │ │ └── Statistic.php │ │ ├── README.md │ │ ├── Views │ │ ├── admin.tpl.php │ │ ├── footer.tpl.php │ │ ├── header.tpl.php │ │ ├── log.tpl.php │ │ ├── login.tpl.php │ │ ├── main.tpl.php │ │ ├── setting.tpl.php │ │ └── statistic.tpl.php │ │ ├── Web │ │ ├── _init.php │ │ ├── config.php │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ └── style.css │ │ ├── img │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ ├── favicon.png │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ ├── index.php │ │ ├── js │ │ │ ├── bootstrap.min.js │ │ │ ├── highcharts.js │ │ │ ├── html5shiv.js │ │ │ ├── jquery.min.js │ │ │ ├── less-1.3.3.min.js │ │ │ └── scripts.js │ │ └── less │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── data │ │ └── statistic │ │ │ └── statistic │ │ │ ├── Gateway │ │ │ ├── onWebSocketConnect.2017-07-09 │ │ │ ├── onWebSocketConnect.2017-07-10 │ │ │ └── onWebSocketConnect.2017-07-11 │ │ │ ├── Worker │ │ │ ├── onClose.2017-07-09 │ │ │ ├── onClose.2017-07-10 │ │ │ ├── onClose.2017-07-11 │ │ │ ├── onConnect.2017-07-09 │ │ │ ├── onConnect.2017-07-10 │ │ │ ├── onConnect.2017-07-11 │ │ │ ├── onMessage.2017-07-09 │ │ │ ├── onMessage.2017-07-10 │ │ │ └── onMessage.2017-07-11 │ │ │ └── WorkerMan │ │ │ ├── Statistics.2017-07-09 │ │ │ ├── Statistics.2017-07-10 │ │ │ └── Statistics.2017-07-11 │ │ ├── loader.php │ │ ├── start_finder.php │ │ ├── start_provider.php │ │ ├── start_web.php │ │ └── start_worker.php ├── MIT-LICENSE.txt ├── README.md ├── composer.json ├── composer.lock ├── start.php ├── start_for_win.bat └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ └── workerman │ ├── _home_GatewayWorkerStatistics_start.php.pid │ ├── workerman.log │ └── workerman │ ├── .gitignore │ ├── Autoloader.php │ ├── Connection │ ├── AsyncTcpConnection.php │ ├── ConnectionInterface.php │ ├── TcpConnection.php │ └── UdpConnection.php │ ├── Events │ ├── Ev.php │ ├── Event.php │ ├── EventInterface.php │ ├── Libevent.php │ ├── React.php │ ├── React │ │ ├── ExtEventLoop.php │ │ ├── LibEventLoop.php │ │ └── StreamSelectLoop.php │ └── Select.php │ ├── Lib │ ├── Constants.php │ └── Timer.php │ ├── MIT-LICENSE.txt │ ├── Protocols │ ├── Frame.php │ ├── Http.php │ ├── Http │ │ └── mime.types │ ├── ProtocolInterface.php │ ├── Text.php │ ├── Websocket.php │ └── Ws.php │ ├── README.md │ ├── WebServer.php │ ├── Worker.php │ └── composer.json ├── README.md └── pictures ├── pandect.png ├── request_num.png └── request_time.png /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/Events.php -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/start_businessworker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/start_businessworker.php -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/start_gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/start_gateway.php -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/start_gateway_ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/start_gateway_ws.php -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/start_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/start_register.php -------------------------------------------------------------------------------- /GatewayWorker/Applications/YourApp/start_webserver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Applications/YourApp/start_webserver.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/BusinessWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/BusinessWorker.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Gateway.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Lib/Context.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Lib/Context.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Lib/Db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Lib/Db.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Lib/DbConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Lib/DbConnection.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Lib/Gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Lib/Gateway.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Protocols/GatewayProtocol.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Protocols/GatewayProtocol.php -------------------------------------------------------------------------------- /GatewayWorker/GatewayWorker/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/GatewayWorker/Register.php -------------------------------------------------------------------------------- /GatewayWorker/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/MIT-LICENSE.txt -------------------------------------------------------------------------------- /GatewayWorker/Plugins/AppConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Plugins/AppConfig.php -------------------------------------------------------------------------------- /GatewayWorker/Plugins/Domains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Plugins/Domains.php -------------------------------------------------------------------------------- /GatewayWorker/Plugins/word.txt: -------------------------------------------------------------------------------- 1 | hello you boy; 2 | -------------------------------------------------------------------------------- /GatewayWorker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/README.md -------------------------------------------------------------------------------- /GatewayWorker/Watcher/Watcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Watcher/Watcher.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Autoloader.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Connection/AsyncTcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Connection/AsyncTcpConnection.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Connection/TcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Connection/TcpConnection.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Connection/UdpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Connection/UdpConnection.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Events/Ev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Events/Ev.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Events/Event.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Events/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Events/EventInterface.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Events/Libevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Events/Libevent.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Events/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Events/Select.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Lib/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Lib/Constants.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Lib/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Lib/Timer.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/MIT-LICENSE.txt -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Frame.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Http.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Http/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Http/mime.types -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/ProtocolInterface.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Text.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Websocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Websocket.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Protocols/Ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Protocols/Ws.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/README.md -------------------------------------------------------------------------------- /GatewayWorker/Workerman/WebServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/WebServer.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/Worker.php -------------------------------------------------------------------------------- /GatewayWorker/Workerman/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/Workerman/composer.json -------------------------------------------------------------------------------- /GatewayWorker/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/start.php -------------------------------------------------------------------------------- /GatewayWorker/workerman.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorker/workerman.log -------------------------------------------------------------------------------- /GatewayWorkerStatistics/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/.gitattributes -------------------------------------------------------------------------------- /GatewayWorkerStatistics/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Bootstrap/StatisticProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Bootstrap/StatisticProvider.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Bootstrap/StatisticWorker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Bootstrap/StatisticWorker.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Clients/StatisticClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Clients/StatisticClient.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Config/Cache/1484036174.iplist.cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Config/Cache/1484036174.iplist.cache.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Config/Cache/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Config/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Config/Config.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Lib/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Lib/Cache.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Lib/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Lib/functions.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Modules/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Modules/admin.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Modules/logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Modules/logger.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Modules/main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Modules/main.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Modules/setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Modules/setting.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Modules/statistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Modules/statistic.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Protocols/Statistic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Protocols/Statistic.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/README.md -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/admin.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/admin.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/footer.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/footer.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/header.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/header.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/log.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/log.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/login.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/login.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/main.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/main.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/setting.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/setting.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Views/statistic.tpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Views/statistic.tpl.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/_init.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/_init.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/config.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap-theme.css -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap.css -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/css/bootstrap.min.css -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/css/style.css -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/favicon.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/index.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/js/bootstrap.min.js -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/js/highcharts.js -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/js/html5shiv.js -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/js/jquery.min.js -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/less-1.3.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/js/less-1.3.3.min.js -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/js/scripts.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/alerts.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/badges.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/bootstrap.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/breadcrumbs.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/button-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/button-groups.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/buttons.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/carousel.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/close.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/code.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/component-animations.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/component-animations.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/dropdowns.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/forms.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/glyphicons.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/grid.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/input-groups.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/jumbotron.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/labels.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/list-group.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/media.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/mixins.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/modals.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/navbar.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/navs.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/normalize.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/pager.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/pagination.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/panels.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/popovers.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/print.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/progress-bars.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/progress-bars.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/responsive-utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/responsive-utilities.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/scaffolding.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/tables.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/theme.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/thumbnails.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/tooltip.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/type.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/utilities.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/variables.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/Web/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/Web/less/wells.less -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-09 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-10 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Gateway/onWebSocketConnect.2017-07-11 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-09 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-10 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onClose.2017-07-11 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-09 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-10 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onConnect.2017-07-11 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-09 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-10 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/Worker/onMessage.2017-07-11 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-09 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-10 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/data/statistic/statistic/WorkerMan/Statistics.2017-07-11 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/loader.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/start_finder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/start_finder.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/start_provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/start_provider.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/start_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/start_web.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/Applications/Statistics/start_worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/Applications/Statistics/start_worker.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/MIT-LICENSE.txt -------------------------------------------------------------------------------- /GatewayWorkerStatistics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/README.md -------------------------------------------------------------------------------- /GatewayWorkerStatistics/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/composer.json -------------------------------------------------------------------------------- /GatewayWorkerStatistics/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/composer.lock -------------------------------------------------------------------------------- /GatewayWorkerStatistics/start.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/start.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/start_for_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/start_for_win.bat -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/autoload.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/LICENSE -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/composer/installed.json -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/_home_GatewayWorkerStatistics_start.php.pid: -------------------------------------------------------------------------------- 1 | 3380 -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman.log -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/.gitignore: -------------------------------------------------------------------------------- 1 | logs 2 | .buildpath 3 | .project 4 | .settings 5 | .idea -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Autoloader.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Connection/AsyncTcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Connection/AsyncTcpConnection.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Connection/TcpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Connection/TcpConnection.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Connection/UdpConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Connection/UdpConnection.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/Ev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/Ev.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/Event.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/EventInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/EventInterface.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/Libevent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/Libevent.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/React.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/React.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/ExtEventLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/ExtEventLoop.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/LibEventLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/LibEventLoop.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/StreamSelectLoop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/React/StreamSelectLoop.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Events/Select.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Events/Select.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Lib/Constants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Lib/Constants.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Lib/Timer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Lib/Timer.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/MIT-LICENSE.txt -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Frame.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Frame.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Http.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Http.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Http/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Http/mime.types -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/ProtocolInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/ProtocolInterface.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Text.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Websocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Websocket.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Protocols/Ws.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/README.md -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/WebServer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/WebServer.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/Worker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/Worker.php -------------------------------------------------------------------------------- /GatewayWorkerStatistics/vendor/workerman/workerman/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/GatewayWorkerStatistics/vendor/workerman/workerman/composer.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/README.md -------------------------------------------------------------------------------- /pictures/pandect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/pictures/pandect.png -------------------------------------------------------------------------------- /pictures/request_num.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/pictures/request_num.png -------------------------------------------------------------------------------- /pictures/request_time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vsloong/CoolChatServer/HEAD/pictures/request_time.png --------------------------------------------------------------------------------