sortApiModel.js
1.48 KB
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
const model = require('../../../lib/model');
const mysqlPromise = require('../../../lib/mysql-apm');
class SortApiModel extends model {
constructor(ctx) {
super(ctx);
this.mysql = new mysqlPromise();
}
async getTimeList(app, time) {
let query = '';
let queryVal = [];
if (app) {
query += 'and app = ?';
queryVal.push(app);
}
if (time) {
let [start,end] = time.split(':');
query += 'and create_time > ? and create_time < ?';
queryVal.push(start);
queryVal.push(end);
}
let data = await this.mysql.query(`SELECT api,avg(duration) as avg FROM slow_duration_new where type="api" ${query} group by api`, queryVal);
return data;
}
async getCountList(app, time) {
let query = '';
let queryVal = [];
if (app) {
query += 'and app = ?';
queryVal.push(app);
}
if (time) {
let [start,end] = time.split(':');
query += 'and create_time > ? and create_time < ?';
queryVal.push(start);
queryVal.push(end);
}
let data = await this.mysql.query(`SELECT api,count(route) as count FROM slow_duration_new where type="api" ${query} group by api`, queryVal);
return data;
}
async getApp() {
return await this.mysql.query('SELECT DISTINCT app FROM slow_duration_new');
}
}
module.exports = SortApiModel;