34 Star 114 Fork 23

dreamans / phpAnalysis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
INSTALL.sql 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
dreamans 提交于 2018-02-03 15:25 . add install.sql
CREATE TABLE `pa_request` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`request_id` varchar(40) NOT NULL DEFAULT '',
`url` varchar(1000) NOT NULL DEFAULT '',
`method` varchar(10) NOT NULL DEFAULT '',
`request_time` int(11) unsigned NOT NULL DEFAULT '0',
`cost_time` bigint(20) NOT NULL DEFAULT '0',
`host` varchar(1000) NOT NULL DEFAULT '',
`memory` bigint(20) NOT NULL DEFAULT '0',
`pmemory` bigint(20) NOT NULL DEFAULT '0',
`cpu_time` bigint(20) NOT NULL DEFAULT '0',
`cookie` blob NOT NULL,
`get` blob NOT NULL,
`post` blob NOT NULL,
`server` blob NOT NULL,
`profile` mediumblob NOT NULL,
`ctime` int(11) unsigned NOT NULL,
`app` varchar(20) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `app` (`app`),
KEY `request_id` (`request_id`),
KEY `request_time` (`request_time`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
PHP
1
https://gitee.com/dreamans/phpAnalysis.git
git@gitee.com:dreamans/phpAnalysis.git
dreamans
phpAnalysis
phpAnalysis
master

搜索帮助