├── 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 │ │ ├── _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 │ ├── Lib │ │ ├── Cache.php │ │ └── functions.php │ ├── Modules │ │ ├── setting.php │ │ ├── logger.php │ │ ├── admin.php │ │ └── statistic.php │ ├── start.php │ └── Protocols │ │ └── Statistic.php └── ThriftRpc │ ├── Services │ └── HelloWorld │ │ ├── HelloWorldHandler.php │ │ └── Types.php │ ├── Lib │ └── Thrift │ │ ├── Factory │ │ ├── TTransportFactory.php │ │ ├── TProtocolFactory.php │ │ ├── TCompactProtocolFactory.php │ │ ├── TJSONProtocolFactory.php │ │ ├── TBinaryProtocolFactory.php │ │ └── TStringFuncFactory.php │ │ ├── StringFunc │ │ ├── TStringFunc.php │ │ ├── Core.php │ │ └── Mbstring.php │ │ ├── Type │ │ ├── TMessageType.php │ │ └── TType.php │ │ ├── Server │ │ ├── TServerTransport.php │ │ ├── TSimpleServer.php │ │ ├── TServerSocket.php │ │ ├── TServer.php │ │ └── TForkingServer.php │ │ ├── Protocol │ │ ├── JSON │ │ │ ├── BaseContext.php │ │ │ ├── ListContext.php │ │ │ ├── LookaheadReader.php │ │ │ └── PairContext.php │ │ └── TBinaryProtocolAccelerated.php │ │ ├── Exception │ │ ├── TTransportException.php │ │ ├── TProtocolException.php │ │ └── TApplicationException.php │ │ ├── Transport │ │ ├── TNullTransport.php │ │ ├── TTransport.php │ │ ├── TMemoryBuffer.php │ │ ├── TPhpStream.php │ │ ├── TBufferedTransport.php │ │ ├── TFramedTransport.php │ │ └── THttpClient.php │ │ └── Serializer │ │ └── TBinarySerializer.php │ ├── start.php │ └── ThriftWorker.php ├── .gitignore ├── composer.json ├── start.php ├── MIT-LICENSE.txt └── composer.lock /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-thrift/HEAD/Applications/Statistics/Web/img/favicon.png -------------------------------------------------------------------------------- /Applications/Statistics/Web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-thrift/HEAD/Applications/Statistics/Web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /Applications/Statistics/README.md: -------------------------------------------------------------------------------- 1 | 2 | 统计模块 3 | ======= 4 | 5 | * 管理员用户名密码默认都为空,即不需要登录就可以查看监控数据 6 | * 如果需要登录验证,在applications/Statistics/Config/Config.php里面设置管理员密码 7 | 8 | -------------------------------------------------------------------------------- /Applications/Statistics/Web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-thrift/HEAD/Applications/Statistics/Web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /Applications/Statistics/Views/footer.tpl.php: -------------------------------------------------------------------------------- 1 |
2 |