1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/huoyo-ko-time

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
data-mysql.sql 1.7 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
huoyo Отправлено 28.05.2022 15:35 bfe26ed
create table ko_method_node (
id varchar(200) not null primary key comment '主键' ,
name varchar(200) null comment '类名+方法名' ,
class_name varchar(200) null comment '类名' ,
method_name varchar(200) null comment '方法名' ,
route_name varchar(200) null comment '路由,controller才有' ,
method_type varchar(64) null comment '方法类型'
) comment '方法信息表';
create table ko_method_relation (
id varchar(200) not null primary key comment '' ,
source_id varchar(200) null comment '调用方id' ,
target_id varchar(200) null comment '被调用方id' ,
avg_run_time numeric(10,2) null comment '平均耗时' ,
max_run_time numeric(10,2) null comment '最大耗时' ,
min_run_time numeric(10,2) null comment '最小耗时'
) comment '方法调用关系表';
;
create table ko_exception_node (
id varchar(200) not null primary key comment '主键' ,
name varchar(200) null comment '异常名' ,
class_name varchar(200) null comment '类名' ,
message varchar(200) null comment '异常消息'
) comment '异常表';
create table ko_exception_relation (
id varchar(200) not null primary key comment '' ,
source_id varchar(200 null comment '调用方法id' ,
target_id varchar(200) null comment '异常id' ,
location int null comment '异常位置'
) comment '异常关系表';
create table ko_param_ana (
source_id varchar(200) null comment '调用方法id' ,
params varchar(200) null comment '参数组合,-分隔' ,
avg_run_time numeric(10,2) null comment '平均耗时' ,
max_run_time numeric(10,2) null comment '最大耗时' ,
min_run_time numeric(10,2) null comment '最小耗时'
) comment '参数分析表';

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/huoyo-ko-time.git
git@api.gitlife.ru:oschina-mirror/huoyo-ko-time.git
oschina-mirror
huoyo-ko-time
huoyo-ko-time
spring2