forked from jly8866/archer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.py
414 lines (354 loc) · 22.9 KB
/
models.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
# -*- coding: UTF-8 -*-
from django.db import models
from django.contrib.auth.models import AbstractUser
from .aes_decryptor import Prpcrypt
# Create your models here.
# 角色分两种:
# 1.工程师:可以提交SQL上线单的工程师们,username字段为登录用户名,display字段为展示的中文名。
# 2.审核人:可以审核并执行SQL上线单的管理者、高级工程师、系统管理员们。
class users(AbstractUser):
display = models.CharField('显示的中文名', max_length=50)
role = models.CharField('角色', max_length=20, choices=(('工程师', '工程师'), ('审核人', '审核人'), ('DBA', 'DBA')), default='工程师')
is_ldapuser = models.BooleanField('ldap用戶', default=False)
def __str__(self):
return self.username
class Meta:
verbose_name = u'用户配置'
verbose_name_plural = u'用户配置'
# 各个线上主库地址。
class master_config(models.Model):
cluster_name = models.CharField('集群名称', max_length=50, unique=True)
master_host = models.CharField('主库地址', max_length=200)
master_port = models.IntegerField('主库端口', default=3306)
master_user = models.CharField('登录主库的用户名', max_length=100)
master_password = models.CharField('登录主库的密码', max_length=300)
create_time = models.DateTimeField('创建时间', auto_now_add=True)
update_time = models.DateTimeField('更新时间', auto_now=True)
def __str__(self):
return self.cluster_name
class Meta:
verbose_name = u'主库地址配置'
verbose_name_plural = u'主库地址配置'
def save(self, *args, **kwargs):
pc = Prpcrypt() # 初始化
self.master_password = pc.encrypt(self.master_password)
super(master_config, self).save(*args, **kwargs)
# 存放各个SQL上线工单的详细内容,可定期归档或清理历史数据,也可通过alter table workflow row_format=compressed; 来进行压缩
class workflow(models.Model):
workflow_name = models.CharField('工单内容', max_length=50)
engineer = models.CharField('发起人', max_length=50)
review_man = models.CharField('审核人', max_length=50)
create_time = models.DateTimeField('创建时间', auto_now_add=True)
finish_time = models.DateTimeField('结束时间', null=True, blank=True)
status = models.CharField(max_length=50, choices=(
('已正常结束', '已正常结束'), ('人工终止流程', '人工终止流程'), ('自动审核中', '自动审核中'), ('等待审核人审核', '等待审核人审核'), ('审核通过', '审核通过'),
('定时执行', '定时执行'), ('执行中', '执行中'), ('自动审核不通过', '自动审核不通过'), ('执行有异常', '执行有异常')))
# is_backup = models.IntegerField('是否备份,0为否,1为是', choices=((0,0),(1,1)))
is_backup = models.CharField('是否备份', choices=(('否', '否'), ('是', '是')), max_length=20)
review_content = models.TextField('自动审核内容的JSON格式')
cluster_name = models.CharField('集群名称', max_length=50)
reviewok_time = models.DateTimeField('人工审核通过的时间', null=True, blank=True)
sql_content = models.TextField('具体sql内容')
execute_result = models.TextField('执行结果的JSON格式', blank=True)
is_manual = models.IntegerField('是否手工执行', choices=((0, '否'), (1, '是')), default=0)
audit_remark = models.TextField('审核备注', null=True, blank=True)
def __str__(self):
return self.workflow_name
class Meta:
verbose_name = u'SQL工单管理'
verbose_name_plural = u'SQL工单管理'
# 各个线上从库地址
class slave_config(models.Model):
cluster_name = models.CharField('集群名称', max_length=50, unique=True)
slave_host = models.CharField('从库地址', max_length=200)
slave_port = models.IntegerField('从库端口', default=3306)
slave_user = models.CharField('登录从库的用户名', max_length=100)
slave_password = models.CharField('登录从库的密码', max_length=300)
create_time = models.DateTimeField('创建时间', auto_now_add=True)
update_time = models.DateTimeField('更新时间', auto_now=True)
class Meta:
verbose_name = u'从库地址配置'
verbose_name_plural = u'从库地址配置'
def save(self, *args, **kwargs):
pc = Prpcrypt() # 初始化
self.slave_password = pc.encrypt(self.slave_password)
super(slave_config, self).save(*args, **kwargs)
# 工作流审核主表
class WorkflowAudit(models.Model):
audit_id = models.AutoField(primary_key=True)
workflow_id = models.BigIntegerField('关联业务id')
workflow_type = models.IntegerField('申请类型',
choices=((1, '查询权限申请'),))
workflow_title = models.CharField('申请标题', max_length=50)
workflow_remark = models.CharField('申请备注', default='', max_length=140)
audit_users = models.CharField('审核人列表', max_length=255)
current_audit_user = models.CharField('当前审核人', max_length=20)
next_audit_user = models.CharField('下级审核人', max_length=20)
current_status = models.IntegerField('审核状态', choices=((0, '待审核'), (1, '审核通过'), (2, '审核不通过'), (3, '审核取消')))
create_user = models.CharField('申请人', max_length=20)
create_time = models.DateTimeField('申请时间', auto_now_add=True)
sys_time = models.DateTimeField('系统时间', auto_now=True)
def __int__(self):
return self.audit_id
class Meta:
db_table = 'workflow_audit'
unique_together = ('workflow_id', 'workflow_type')
verbose_name = u'工作流列表'
verbose_name_plural = u'工作流列表'
# 审批明细表
class WorkflowAuditDetail(models.Model):
audit_detail_id = models.AutoField(primary_key=True)
audit_id = models.ForeignKey(WorkflowAudit, db_constraint=False, to_field='audit_id',
db_column='audit_id', verbose_name='审核主表id')
audit_user = models.CharField('审核人', max_length=20)
audit_time = models.DateTimeField('审核时间')
audit_status = models.IntegerField('审核状态', choices=((0, '待审核'), (1, '审核通过'), (2, '审核不通过'), (3, '审核取消')), )
remark = models.CharField('审核备注', default='', max_length=140)
sys_time = models.DateTimeField('系统时间', auto_now=True)
def __int__(self):
return self.audit_detail_id
class Meta:
db_table = 'workflow_audit_detail'
verbose_name = u'审批明细表'
verbose_name_plural = u'审批明细表'
# 审批配置表
class WorkflowAuditSetting(models.Model):
audit_setting_id = models.AutoField(primary_key=True)
workflow_type = models.IntegerField('申请类型,', choices=((1, '查询权限申请'),), unique=True)
audit_users = models.CharField('审核人,单人审核格式为:user1,多级审核格式为:user1,user2', max_length=255)
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
def __int__(self):
return self.audit_setting_id
class Meta:
db_table = 'workflow_audit_setting'
verbose_name = u'工作流配置'
verbose_name_plural = u'工作流配置'
# 查询权限申请记录表
class QueryPrivilegesApply(models.Model):
apply_id = models.AutoField(primary_key=True)
title = models.CharField('申请标题', max_length=50)
user_name = models.CharField('申请人', max_length=30)
cluster_name = models.CharField('集群名称', max_length=50)
db_list = models.TextField('数据库')
table_list = models.TextField('表')
valid_date = models.DateField('有效时间')
limit_num = models.IntegerField('行数限制', default=100)
priv_type = models.IntegerField('权限类型', choices=((1, 'DATABASE'), (2, 'TABLE'),), default=0)
status = models.IntegerField('审核状态', choices=((0, '待审核'), (1, '审核通过'), (2, '审核不通过'), (3, '审核取消')), )
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
def __int__(self):
return self.apply_id
class Meta:
db_table = 'query_privileges_apply'
verbose_name = u'查询权限申请记录表'
verbose_name_plural = u'查询权限申请记录表'
# 用户权限关系表
class QueryPrivileges(models.Model):
privilege_id = models.AutoField(primary_key=True)
user_name = models.CharField('用户名', max_length=30)
cluster_name = models.CharField('集群名称', max_length=50)
db_name = models.CharField('数据库', max_length=200)
table_name = models.CharField('表', max_length=200)
valid_date = models.DateField('有效时间')
limit_num = models.IntegerField('行数限制', default=100)
priv_type = models.IntegerField('权限类型', choices=((1, 'DATABASE'), (2, 'TABLE'),), default=0)
is_deleted = models.IntegerField('是否删除', default=0)
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
def __int__(self):
return self.privilege_id
class Meta:
db_table = 'query_privileges'
verbose_name = u'查询权限记录表'
verbose_name_plural = u'查询权限记录表'
# 记录在线查询sql的日志
class QueryLog(models.Model):
cluster_name = models.CharField('集群名称', max_length=50)
db_name = models.CharField('数据库名称', max_length=30)
sqllog = models.TextField('执行的sql查询')
effect_row = models.BigIntegerField('返回行数')
cost_time = models.CharField('执行耗时', max_length=10, default='')
username = models.CharField('操作人', max_length=30)
create_time = models.DateTimeField('操作时间', auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
class Meta:
db_table = 'query_log'
verbose_name = u'sql查询日志'
verbose_name_plural = u'sql查询日志'
# 脱敏字段配置
class DataMaskingColumns(models.Model):
column_id = models.AutoField('字段id', primary_key=True)
rule_type = models.IntegerField('规则类型',
choices=((1, '手机号'), (2, '证件号码'), (3, '银行卡'), (4, '邮箱'), (5, '金额'), (6, '其他')))
active = models.IntegerField('激活状态', choices=((0, '未激活'), (1, '激活')))
cluster_name = models.CharField('集群名称', max_length=50)
table_schema = models.CharField('字段所在库名', max_length=64)
table_name = models.CharField('字段所在表名', max_length=64)
column_name = models.CharField('字段名', max_length=64)
column_comment = models.CharField('字段描述', max_length=1024, default='', blank=True)
create_time = models.DateTimeField(auto_now_add=True)
sys_time = models.DateTimeField(auto_now=True)
class Meta:
db_table = 'data_masking_columns'
verbose_name = u'脱敏字段配置'
verbose_name_plural = u'脱敏字段配置'
# 脱敏规则配置
class DataMaskingRules(models.Model):
rule_type = models.IntegerField('规则类型',
choices=((1, '手机号'), (2, '证件号码'), (3, '银行卡'), (4, '邮箱'), (5, '金额'), (6, '其他')), unique=True)
rule_regex = models.CharField('规则脱敏所用的正则表达式,表达式必须分组,隐藏的组会使用****代替', max_length=255)
hide_group = models.IntegerField('需要隐藏的组')
rule_desc = models.CharField('规则描述', max_length=100, default='', blank=True)
sys_time = models.DateTimeField(auto_now=True)
class Meta:
db_table = 'data_masking_rules'
verbose_name = u'脱敏规则配置'
verbose_name_plural = u'脱敏规则配置'
# 记录阿里云的认证信息
class AliyunAccessKey(models.Model):
ak = models.CharField(max_length=50)
secret = models.CharField(max_length=100)
is_enable = models.IntegerField(choices=((1, '启用'), (2, '禁用')))
remark = models.CharField(max_length=50, default='', blank=True)
class Meta:
db_table = 'aliyun_access_key'
verbose_name = u'阿里云认证信息'
verbose_name_plural = u'阿里云认证信息'
def save(self, *args, **kwargs):
pc = Prpcrypt() # 初始化
self.ak = pc.encrypt(self.ak)
self.secret = pc.encrypt(self.secret)
super(AliyunAccessKey, self).save(*args, **kwargs)
# 阿里云rds配置信息
class AliyunRdsConfig(models.Model):
cluster_name = models.OneToOneField(master_config, db_constraint=False, to_field='cluster_name',
db_column='cluster_name', verbose_name='集群名称', unique=True)
rds_dbinstanceid = models.CharField('阿里云RDS实例ID', max_length=100)
def __int__(self):
return self.rds_dbinstanceid
class Meta:
db_table = 'aliyun_rds_config'
verbose_name = u'阿里云rds配置'
verbose_name_plural = u'阿里云rds配置'
# SlowQuery
class SlowQuery(models.Model):
checksum = models.CharField(max_length=32, primary_key=True)
fingerprint = models.TextField()
sample = models.TextField()
first_seen = models.DateTimeField(blank=True, null=True)
last_seen = models.DateTimeField(blank=True, null=True, db_index=True)
reviewed_by = models.CharField(max_length=20, blank=True, null=True)
reviewed_on = models.DateTimeField(blank=True, null=True)
comments = models.TextField(blank=True, null=True)
class Meta:
managed = False
db_table = 'mysql_slow_query_review'
verbose_name = u'慢日志统计'
verbose_name_plural = u'慢日志统计'
# SlowQueryHistory
class SlowQueryHistory(models.Model):
hostname_max = models.CharField(max_length=64, null=False)
client_max = models.CharField(max_length=64, null=True)
user_max = models.CharField(max_length=64, null=False)
db_max = models.CharField(max_length=64, null=True, default=None)
bytes_max = models.CharField(max_length=64, null=True)
checksum = models.ForeignKey(SlowQuery, db_constraint=False, to_field='checksum', db_column='checksum')
sample = models.TextField()
ts_min = models.DateTimeField(db_index=True)
ts_max = models.DateTimeField()
ts_cnt = models.FloatField(blank=True, null=True)
query_time_sum = models.FloatField(db_column='Query_time_sum', blank=True, null=True)
query_time_min = models.FloatField(db_column='Query_time_min', blank=True, null=True)
query_time_max = models.FloatField(db_column='Query_time_max', blank=True, null=True)
query_time_pct_95 = models.FloatField(db_column='Query_time_pct_95', blank=True, null=True)
query_time_stddev = models.FloatField(db_column='Query_time_stddev', blank=True, null=True)
query_time_median = models.FloatField(db_column='Query_time_median', blank=True, null=True)
lock_time_sum = models.FloatField(db_column='Lock_time_sum', blank=True, null=True)
lock_time_min = models.FloatField(db_column='Lock_time_min', blank=True, null=True)
lock_time_max = models.FloatField(db_column='Lock_time_max', blank=True, null=True)
lock_time_pct_95 = models.FloatField(db_column='Lock_time_pct_95', blank=True, null=True)
lock_time_stddev = models.FloatField(db_column='Lock_time_stddev', blank=True, null=True)
lock_time_median = models.FloatField(db_column='Lock_time_median', blank=True, null=True)
rows_sent_sum = models.FloatField(db_column='Rows_sent_sum', blank=True, null=True)
rows_sent_min = models.FloatField(db_column='Rows_sent_min', blank=True, null=True)
rows_sent_max = models.FloatField(db_column='Rows_sent_max', blank=True, null=True)
rows_sent_pct_95 = models.FloatField(db_column='Rows_sent_pct_95', blank=True, null=True)
rows_sent_stddev = models.FloatField(db_column='Rows_sent_stddev', blank=True, null=True)
rows_sent_median = models.FloatField(db_column='Rows_sent_median', blank=True, null=True)
rows_examined_sum = models.FloatField(db_column='Rows_examined_sum', blank=True, null=True)
rows_examined_min = models.FloatField(db_column='Rows_examined_min', blank=True, null=True)
rows_examined_max = models.FloatField(db_column='Rows_examined_max', blank=True, null=True)
rows_examined_pct_95 = models.FloatField(db_column='Rows_examined_pct_95', blank=True, null=True)
rows_examined_stddev = models.FloatField(db_column='Rows_examined_stddev', blank=True, null=True)
rows_examined_median = models.FloatField(db_column='Rows_examined_median', blank=True, null=True)
rows_affected_sum = models.FloatField(db_column='Rows_affected_sum', blank=True, null=True)
rows_affected_min = models.FloatField(db_column='Rows_affected_min', blank=True, null=True)
rows_affected_max = models.FloatField(db_column='Rows_affected_max', blank=True, null=True)
rows_affected_pct_95 = models.FloatField(db_column='Rows_affected_pct_95', blank=True, null=True)
rows_affected_stddev = models.FloatField(db_column='Rows_affected_stddev', blank=True, null=True)
rows_affected_median = models.FloatField(db_column='Rows_affected_median', blank=True, null=True)
rows_read_sum = models.FloatField(db_column='Rows_read_sum', blank=True, null=True)
rows_read_min = models.FloatField(db_column='Rows_read_min', blank=True, null=True)
rows_read_max = models.FloatField(db_column='Rows_read_max', blank=True, null=True)
rows_read_pct_95 = models.FloatField(db_column='Rows_read_pct_95', blank=True, null=True)
rows_read_stddev = models.FloatField(db_column='Rows_read_stddev', blank=True, null=True)
rows_read_median = models.FloatField(db_column='Rows_read_median', blank=True, null=True)
merge_passes_sum = models.FloatField(db_column='Merge_passes_sum', blank=True, null=True)
merge_passes_min = models.FloatField(db_column='Merge_passes_min', blank=True, null=True)
merge_passes_max = models.FloatField(db_column='Merge_passes_max', blank=True, null=True)
merge_passes_pct_95 = models.FloatField(db_column='Merge_passes_pct_95', blank=True, null=True)
merge_passes_stddev = models.FloatField(db_column='Merge_passes_stddev', blank=True, null=True)
merge_passes_median = models.FloatField(db_column='Merge_passes_median', blank=True, null=True)
innodb_io_r_ops_min = models.FloatField(db_column='InnoDB_IO_r_ops_min', blank=True, null=True)
innodb_io_r_ops_max = models.FloatField(db_column='InnoDB_IO_r_ops_max', blank=True, null=True)
innodb_io_r_ops_pct_95 = models.FloatField(db_column='InnoDB_IO_r_ops_pct_95', blank=True, null=True)
innodb_io_r_ops_stddev = models.FloatField(db_column='InnoDB_IO_r_ops_stddev', blank=True, null=True)
innodb_io_r_ops_median = models.FloatField(db_column='InnoDB_IO_r_ops_median', blank=True, null=True)
innodb_io_r_bytes_min = models.FloatField(db_column='InnoDB_IO_r_bytes_min', blank=True, null=True)
innodb_io_r_bytes_max = models.FloatField(db_column='InnoDB_IO_r_bytes_max', blank=True, null=True)
innodb_io_r_bytes_pct_95 = models.FloatField(db_column='InnoDB_IO_r_bytes_pct_95', blank=True, null=True)
innodb_io_r_bytes_stddev = models.FloatField(db_column='InnoDB_IO_r_bytes_stddev', blank=True, null=True)
innodb_io_r_bytes_median = models.FloatField(db_column='InnoDB_IO_r_bytes_median', blank=True, null=True)
innodb_io_r_wait_min = models.FloatField(db_column='InnoDB_IO_r_wait_min', blank=True, null=True)
innodb_io_r_wait_max = models.FloatField(db_column='InnoDB_IO_r_wait_max', blank=True, null=True)
innodb_io_r_wait_pct_95 = models.FloatField(db_column='InnoDB_IO_r_wait_pct_95', blank=True, null=True)
innodb_io_r_wait_stddev = models.FloatField(db_column='InnoDB_IO_r_wait_stddev', blank=True, null=True)
innodb_io_r_wait_median = models.FloatField(db_column='InnoDB_IO_r_wait_median', blank=True, null=True)
innodb_rec_lock_wait_min = models.FloatField(db_column='InnoDB_rec_lock_wait_min', blank=True, null=True)
innodb_rec_lock_wait_max = models.FloatField(db_column='InnoDB_rec_lock_wait_max', blank=True, null=True)
innodb_rec_lock_wait_pct_95 = models.FloatField(db_column='InnoDB_rec_lock_wait_pct_95', blank=True, null=True)
innodb_rec_lock_wait_stddev = models.FloatField(db_column='InnoDB_rec_lock_wait_stddev', blank=True, null=True)
innodb_rec_lock_wait_median = models.FloatField(db_column='InnoDB_rec_lock_wait_median', blank=True, null=True)
innodb_queue_wait_min = models.FloatField(db_column='InnoDB_queue_wait_min', blank=True, null=True)
innodb_queue_wait_max = models.FloatField(db_column='InnoDB_queue_wait_max', blank=True, null=True)
innodb_queue_wait_pct_95 = models.FloatField(db_column='InnoDB_queue_wait_pct_95', blank=True, null=True)
innodb_queue_wait_stddev = models.FloatField(db_column='InnoDB_queue_wait_stddev', blank=True, null=True)
innodb_queue_wait_median = models.FloatField(db_column='InnoDB_queue_wait_median', blank=True, null=True)
innodb_pages_distinct_min = models.FloatField(db_column='InnoDB_pages_distinct_min', blank=True, null=True)
innodb_pages_distinct_max = models.FloatField(db_column='InnoDB_pages_distinct_max', blank=True, null=True)
innodb_pages_distinct_pct_95 = models.FloatField(db_column='InnoDB_pages_distinct_pct_95', blank=True, null=True)
innodb_pages_distinct_stddev = models.FloatField(db_column='InnoDB_pages_distinct_stddev', blank=True, null=True)
innodb_pages_distinct_median = models.FloatField(db_column='InnoDB_pages_distinct_median', blank=True, null=True)
qc_hit_cnt = models.FloatField(db_column='QC_Hit_cnt', blank=True, null=True)
qc_hit_sum = models.FloatField(db_column='QC_Hit_sum', blank=True, null=True)
full_scan_cnt = models.FloatField(db_column='Full_scan_cnt', blank=True, null=True)
full_scan_sum = models.FloatField(db_column='Full_scan_sum', blank=True, null=True)
full_join_cnt = models.FloatField(db_column='Full_join_cnt', blank=True, null=True)
full_join_sum = models.FloatField(db_column='Full_join_sum', blank=True, null=True)
tmp_table_cnt = models.FloatField(db_column='Tmp_table_cnt', blank=True, null=True)
tmp_table_sum = models.FloatField(db_column='Tmp_table_sum', blank=True, null=True)
tmp_table_on_disk_cnt = models.FloatField(db_column='Tmp_table_on_disk_cnt', blank=True, null=True)
tmp_table_on_disk_sum = models.FloatField(db_column='Tmp_table_on_disk_sum', blank=True, null=True)
filesort_cnt = models.FloatField(db_column='Filesort_cnt', blank=True, null=True)
filesort_sum = models.FloatField(db_column='Filesort_sum', blank=True, null=True)
filesort_on_disk_cnt = models.FloatField(db_column='Filesort_on_disk_cnt', blank=True, null=True)
filesort_on_disk_sum = models.FloatField(db_column='Filesort_on_disk_sum', blank=True, null=True)
class Meta:
managed = False
db_table = 'mysql_slow_query_review_history'
unique_together = ('checksum', 'ts_min', 'ts_max')
index_together = ('hostname_max', 'ts_min')
verbose_name = u'慢日志明细'
verbose_name_plural = u'慢日志明细'