Java實現格式化打印慢SQL日志的方法詳解
前言
日常開發(fā)中,我們經常會查看慢SQL日志,來確定哪些SQL語句需要優(yōu)化、哪些表需要加索引等。但是慢SQL日志文件的格式特別不便于閱讀,一條SQL記錄可能會占很多行,而且還有很多空行,所以用代碼實現其格式化可以提供適當的便利。
(這是我實習的第一次寫代碼的任務,所以記錄一下)
這里先看看慢SQL文件的內容,可以看出一條記錄的篇幅太大,特別不方便閱讀。
再看看格式化后的效果,明顯能看出好了很多,并且按SQL的部分語句排序,將相似的SQL放到一起,更能體現哪些表的哪些操作形成的慢SQL。
一、主要作用:
1.將單條記錄打印為單行
2.僅打印主要字段即可(時間、用戶、主機名、線程ID、操作的數據庫、SQL執(zhí)行時間、SQL語句查詢返回的行數和檢索的行數、SQL語句)
二、代碼實現:
主要是根據慢SQL日志單條記錄的特點,進行字符串分割,提取所需字段來實現
2.1 單條記錄類(LogStatement ):
public class LogStatement { private String date; //日期 private String time; //時間 private String user; //用戶 private String host; //主機名 private String TheadId; //線程ID private String schema; //查詢的數據庫 private String queryTime; //查詢時間 private String row_sent; //返回的行數 private String row_examined;//檢索的行數 private String sql; //SQL語句 private String orderFlag; //排序字段 @Override //格式化打印語句 public String toString() { return date+"-"+time+" "+user+"@"+host+" thead_id:"+TheadId+" "+schema+" "+queryTime +"s Rows_sent/Rows_examined:"+row_sent+"/"+row_examined+"————"+sql; } //構造方法,可根據實際情況生成其他的構造方法 public LogStatement(String date, String time) { this.date = date; this.time = time; } //后面都是getter和setter public String getDate() { return date; } public void setDate(String date) { this.date = date; } public String getTime() { return time; } public void setTime(String time) { this.time = time; } public String getUser() { return user; } public void setUser(String user) { this.user = user; } public String getHost() { return host; } public void setHost(String host) { this.host = host; } public String getTheadId() { return TheadId; } public void setTheadId(String theadId) { TheadId = theadId; } public String getSchema() { return schema; } public void setSchema(String schema) { this.schema = schema; } public String getQueryTime() { return queryTime; } public void setQueryTime(String queryTime) { this.queryTime = queryTime; } public String getRow_sent() { return row_sent; } public void setRow_sent(String row_sent) { this.row_sent = row_sent; } public String getRow_examined() { return row_examined; } public void setRow_examined(String row_examined) { this.row_examined = row_examined; } public String getSql() { return sql; } public void setSql(String sql) { this.sql = sql; } public String getOrderFlag() { return orderFlag; } public void setOrderFlag(String orderFlag) { this.orderFlag = orderFlag; } }
2.2 邏輯處理類(MySQLSlowLogParser):
2.2.1 成員變量
private static int totalSlowSQL; //總的慢SQL條數 //后面截取SQL的排序字段時,需要根據SQL類型定義不同的分割符進行截取 private static final String INSERT_STM = "insert"; private static final String UPDATE_STM = "update"; private static final String SELECT_STM = "select"; private static final List<String> records = new ArrayList<>(); //存單條記錄的集合 private static final List<LogStatement> logs = new ArrayList<>(); //格式化后的記錄
2.2.2 main方法:
public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("請輸入要解析的 MySQL/MariaDB 慢SQL的全路徑:"); if (scan.hasNextLine()) { String filePath = scan.nextLine(); //讀取文件路徑 parse(filePath); //解析對應文件 } getResult(); //提取每條記錄的關鍵信息 sortResult(); //將結果進行排序 printResult(); //打印結果 }
2.2.3 parse方法:
作用是解析文件,讀取每一行的內容,合并單條記錄的內容,把多行合并為一行,并存入單條記錄的集合records。例如第一條慢SQL記錄會轉為兩條記錄存入:
# Time: 221026 0:19:59
User@Host: msg[msg] @ [172.27.6.20] Thread_id: 2766408 Schema: trs_hycloud_msg QC_hit: No Query_time: 5.192931 Lock_time: 0.000422 Rows_sent: 1 Rows_examined: 150436 Rows_affected: 0 Bytes_sent: 60 //后面的就省略了
我這里的處理是將時間也作為單條記錄存起來,因為慢SQL日志中會出現多條記錄為同一時間執(zhí)行的,方便后面為這種情況的記錄的時間賦值(文章末尾我會將我的慢SQL文件的完整內容附上,便于理解)
private static void parse(String filePath) { System.out.println("開始解析:" + filePath); //聲明流對象 InputStream is = null; Reader reader = null; BufferedReader bufferedReader = null; try { //以緩沖流的的方式讀取數據 is = new FileInputStream(new File(filePath)); reader = new InputStreamReader(is, "utf-8"); bufferedReader = new BufferedReader(reader); String singleSQL = ""; //用來存完整的單條慢SQL記錄 String line; //用來存每一行讀取的數據 //根據慢日志文件的單條記錄的特點進行處理 while ((line = bufferedReader.readLine()) != null) { if (line.startsWith("# Time:")) { //當前行以“# Time:”開頭的情況 covertAndAddStatement(singleSQL); //那么之前的語句為一條完整記錄,將singleSQL進行轉換 while(line.contains(" ")) //將多個空格保留為1個 line = line.replace(" "," "); records.add(line); //直接將當前行的時間存入記錄的集合,因為有的記錄共享一個時間 singleSQL = ""; //處理完前一條后,要重新拼記錄,令singleSQL為空 } else if (line.startsWith("# User@Host")){ //當前行以“# User@Host”開頭的情況 covertAndAddStatement(singleSQL); //那么之前的語句也為一條完整記錄,將singleSQL進行轉換 singleSQL = line; //當前行作為新的記錄的開頭 }else { singleSQL += line + " "; //不滿足前兩個,則直接把當前行加入,作為單條記錄的一部分 } //末尾加空格是為了將兩行之間以空格隔開 } //還要處理最后一句,因為最后一條記錄的后面沒有“# Time:”或“# User@Host”,while循環(huán)不會執(zhí)行到最后一句 covertAndAddStatement(singleSQL); } catch (IOException e) { System.err.println("Error:" + e); } finally { //釋放資源 try {if (bufferedReader != null) bufferedReader.close();} catch (IOException e) { System.err.println("Error:" + e); } try {if (reader != null) reader.close();} catch (IOException e) { System.err.println("Error:" + e); } try {if (is != null) is.close();} catch (IOException e) { System.err.println("Error:" + e); } } }
2.2.4 covertAndAddStatement方法:
作用是將records中的記錄進行初步的格式化,將多個空格替換為一個,并將“#”號去掉。
private static void covertAndAddStatement(String statement){ if(statement.equals("")) //空字符串直接不處理 return; //去掉“#”號 statement = statement.replace("#"," "); //多個空格替換為1個,因為文件中兩個單詞之間的空格個能不止一個, //就算將多行合并為一行,也會有多個空格的存在 while(statement.contains(" ")) statement = statement.replace(" "," "); records.add(statement); }
2.2.5 getResult方法:
主要作用是將格式化后的單條記錄,提取關鍵字段,用對象封裝,并存入結果集
private static void getResult(){ //遍歷單條記錄,處理結果,加入結果集 String date = ""; //有多條記錄的時間相同,所以要把時間放循環(huán)體外,方便為多條記錄賦值 String time = ""; for (String record : records) { if (record.contains("# Time")){ //更新即將處理的記錄的時間 String[] tmp = record.split(" "); date = tmp[2]; time = tmp[3]; if (time.length()<8) //長度不足用0補充占位 time = "0"+time; //例如: 3:24:48替換為03:24:48 continue; } LogStatement log = new LogStatement(date,time); totalSlowSQL ++; //慢SQL計數加一 //每條記錄都有timestamp,按其分割字符串更快找到SQL語句 String[] tmp = record.split("timestamp"); //前半段可以得到相關信息 getTags(log, tmp[0]); //后半段可以得到SQL getSQL(log, tmp[1]); logs.add(log); } }
2.2.2.5 getTags方法:
主要作用是提取除SQL以外的所需字段,封裝到對象中
經過前面的處理,tags數組的內容形式大致如下,根據字段所在位置,就可以得到想要的字段
tags = {"", "User@Host:", "msg[msg]", "@", "[172.27.6.20]", "Thread_id:", "2766408", "Schema:", "trs_hycloud_msg", "QC_hit:", "No Query_time:", "5.192931", "Lock_time:", "0.000422", "Rows_sent:", "1", "Rows_examined:", "150436", "Rows_affected:", "0", "Bytes_sent:", "60", ...}
private static void getTags(LogStatement log, String info){ String[] tags = info.split(" "); //用戶 log.setUser(tags[2]); //主機 log.setHost(tags[4]); //Threadid log.setTheadId(tags[6]); //操作的數據庫 log.setSchema(tags[8]); //查詢時間 log.setQueryTime(tags[12]); //執(zhí)行成功后返回的行數 log.setRow_sent(tags[16]); //檢索的行數 log.setRow_examined(tags[18]); }
2.2.2.6
作用是獲取SQL語句,封裝到對象
下面方法中的statemen的內容形式大致如下,截取第一個分號后的語句則可以得到SQL語句
statement="=1666743599; select count(* from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE";
private static void getSQL(LogStatement log, String statement){ //第一個分號后就是SQL,所以從第一個分號出現的位置+1分割字符串就可以得到SQL int subIndex = statement.indexOf(';'); String sql = statement.substring(subIndex+1).trim(); //提取SQL log.setSql(sql); getOrderFlag(log, sql); }
2.2.2.7 getOrderFlag方法:
主要作用是提取排序字段,裝入對象中,提取方式是根據不同種類SQL語句的特點,截取部分字段。
private static void getOrderFlag(LogStatement log, String sql){ //提取部分SQL作為排序字段 sql = sql.toLowerCase(); //先轉小寫,避免大小寫不統一的情況 int index = sql.indexOf(";"); //先令sql分割點為末尾 if (sql.startsWith(INSERT_STM)){ //根據sql語句來定分割點 index = !sql.contains("values") ? index : sql.indexOf("values"); }else if (sql.startsWith(UPDATE_STM)){ index = !sql.contains("set") ? index : sql.indexOf("set"); }else if (sql.startsWith(SELECT_STM)){ index = !sql.contains("where") ? index : sql.indexOf("where"); } log.setOrderFlag(sql.substring(0, index)); //將截取后的sql語句設置為排序字段 }
2.2.2.8 sortResult方法:
作用是將結果集根據排序字段排序
private static void sortResult(){ // 排序方法 logs.sort(new Comparator<LogStatement>() { @Override public int compare(LogStatement o1, LogStatement o2) { return o1.getOrderFlag().compareTo(o2.getOrderFlag()); } }); }
2.2.2.9 打印結果:
private static void printResult(){ //打印結果 System.out.println("慢總SQL條數:" + "\t" + totalSlowSQL); System.out.println(); for (LogStatement log : logs) { System.out.println(log); } }
2.3完整代碼
import java.io.*; import java.util.ArrayList; import java.util.Comparator; import java.util.List; import java.util.Scanner; public class MySQLSlowLogParser { private static int totalSlowSQL; //總的慢SQL條數 private static final String INSERT_STM = "insert"; private static final String UPDATE_STM = "update"; private static final String SELECT_STM = "select"; private static final List<String> records = new ArrayList<>(); //存單條記錄的集合 private static final List<LogStatement> logs = new ArrayList<>(); //存篩選字段后的記錄 public static void main(String[] args) { Scanner scan = new Scanner(System.in); System.out.println("請輸入要解析的 MySQL/MariaDB 慢SQL的全路徑:"); if (scan.hasNextLine()) { String filePath = scan.nextLine(); //讀取文件路徑 // System.out.println(filePath); parse(filePath); //解析對應文件 } getResult(); //提取每條記錄的關鍵信息 sortResult(); //將結果進行排序 printResult(); //打印結果 } private static void parse(String filePath) { System.out.println("開始解析:" + filePath); InputStream is = null; Reader reader = null; BufferedReader bufferedReader = null; try { //以緩沖流的的方式讀取數據 is = new FileInputStream(new File(filePath)); reader = new InputStreamReader(is, "utf-8"); bufferedReader = new BufferedReader(reader); String singleSQL = ""; //用來存完整的單條慢SQL記錄 String line; while ((line = bufferedReader.readLine()) != null) { if (line.startsWith("# Time:")) { //當前行以“# Time:”開頭的情況 covertAndAddStatement(singleSQL); //那么之前的語句為一條完整記錄,將singleSQL進行轉換 while(line.contains(" ")) //將多個空格保留為1個 line = line.replace(" "," "); records.add(line); //直接將當前行的時間存入記錄的集合,因為有的記錄共享一個時間 singleSQL = ""; //處理完前一條后,要重新拼記錄,令singleSQL為空 } else if (line.startsWith("# User@Host")){ //當前行以“# User@Host”開頭的情況 covertAndAddStatement(singleSQL); //那么之前的語句也為一條完整記錄,將singleSQL進行轉換 singleSQL = line; //當前行作為新的記錄的開頭 }else { singleSQL += line + " "; //不滿足前兩個,則直接把當前行加入,作為單條記錄的一部分 } //末尾加空格是為了將兩行之間以空格隔開 } //還要處理最后一句,因為最后一條記錄的后面沒有“# Time:”或“# User@Host”,while循環(huán)不會執(zhí)行到最后一句 covertAndAddStatement(singleSQL); } catch (IOException e) { System.err.println("Error:" + e); } finally { //釋放資源 try {if (bufferedReader != null) bufferedReader.close();} catch (IOException e) { System.err.println("Error:" + e); } try {if (reader != null) reader.close();} catch (IOException e) { System.err.println("Error:" + e); } try {if (is != null) is.close();} catch (IOException e) { System.err.println("Error:" + e); } } } private static void covertAndAddStatement(String statement){ if(statement.equals("")) //空字符串直接不處理 return; //去掉“#”號 statement = statement.replace("#"," "); //多個空格替換為1個 while(statement.contains(" ")) statement = statement.replace(" "," "); records.add(statement); } private static void getResult(){ //遍歷單條記錄,處理結果,加入結果集 String date = ""; //有多條記錄的時間相同,所以要把時間放循環(huán)體外,方便為多條記錄賦值 String time = ""; for (String record : records) { if (record.contains("# Time")){ //若當前的record為時間,則更新即將處理的記錄的時間 String[] tmp = record.split(" "); date = tmp[2]; time = tmp[3]; if (time.length()<8) //長度不足用0補充占位 time = "0"+time; //例如: 3:24:48替換為03:24:48 continue; } LogStatement log = new LogStatement(date,time); totalSlowSQL ++; //慢SQL計數加一 //每條記錄都有timestamp,按其分割字符串更快找到SQL語句 String[] tmp = record.split("timestamp"); //前半段可以得到相關信息 getTags(log, tmp[0]); //后半段可以得到SQL getSQL(log, tmp[1]); logs.add(log); } } private static void getTags(LogStatement log, String info){ String[] tags = info.split(" "); //用戶 log.setUser(tags[2]); //主機 log.setHost(tags[4]); //Threadid log.setTheadId(tags[6]); //操作的數據庫 log.setSchema(tags[8]); //查詢時間 log.setQueryTime(tags[12]); //執(zhí)行成功后返回的行數 log.setRow_sent(tags[16]); //檢索的行數 log.setRow_examined(tags[18]); } private static void getSQL(LogStatement log, String statement){ //第一個分號后就是SQL,所以從第一個分號出現的位置+1分割字符串就可以得到SQL int subIndex = statement.indexOf(';'); String sql = statement.substring(subIndex+1).trim(); //提取SQL log.setSql(sql); getOrderFlag(log, sql); } private static void getOrderFlag(LogStatement log, String sql){ //提取部分SQL作為排序字段 sql = sql.toLowerCase(); //先轉小寫 int index = sql.indexOf(";"); //先令sql分割點為末尾 if (sql.startsWith(INSERT_STM)){ //根據sql語句來定分割點 index = !sql.contains("values") ? index : sql.indexOf("values"); }else if (sql.startsWith(UPDATE_STM)){ index = !sql.contains("set") ? index : sql.indexOf("set"); }else if (sql.startsWith(SELECT_STM)){ index = !sql.contains("where") ? index : sql.indexOf("where"); } log.setOrderFlag(sql.substring(0, index)); //將截取后的sql語句設置為排序字段 } private static void sortResult(){ // 排序方法 logs.sort(new Comparator<LogStatement>() { @Override public int compare(LogStatement o1, LogStatement o2) { return o1.getOrderFlag().compareTo(o2.getOrderFlag()); } }); } private static void printResult(){ //打印結果 System.out.println("慢總SQL條數:" + "\t" + totalSlowSQL); System.out.println(); for (LogStatement log : logs) { System.out.println(log); } } }
最后附上SQL文件的內容,便于有興趣的小伙伴進行調試,可以直接新建txt文件,賦值粘貼進去,保存后。調試時輸入該文件的全路徑即可。
從下面的內容也可以看出,MySQL自動生成的慢SQL文件多么難以閱讀
# Time: 221026 0:19:59 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2766408 Schema: trs_hycloud_msg QC_hit: No # Query_time: 5.192931 Lock_time: 0.000422 Rows_sent: 1 Rows_examined: 150436 # Rows_affected: 0 Bytes_sent: 60 use trs_hycloud_msg; SET timestamp=1666743599; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '889' , '894' , '899' , '902' , '905' , '1190' , '1191' , '1192' , '1193' , '1447' , '1703' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '712' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '13' , '851' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-05-15 11:20:18' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '712' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # Time: 221026 0:36:21 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2766515 Schema: trs_hycloud_msg QC_hit: No # Query_time: 2.585773 Lock_time: 0.004551 Rows_sent: 1 Rows_examined: 5360 # Rows_affected: 0 Bytes_sent: 56 SET timestamp=1666744581; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '570' , '577' , '578' , '580' , '583' , '586' , '746' , '1174' , '1536' , '1537' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '170' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '305' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-04-08 10:32:51' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '170' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2766408 Schema: trs_hycloud_msg QC_hit: No # Query_time: 6.523476 Lock_time: 0.000227 Rows_sent: 1 Rows_examined: 5360 # Rows_affected: 0 Bytes_sent: 56 SET timestamp=1666744581; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '570' , '577' , '578' , '580' , '583' , '586' , '746' , '1174' , '1536' , '1537' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '170' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '305' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-04-08 10:32:51' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '170' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # Time: 221026 0:49:59 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2766515 Schema: trs_hycloud_msg QC_hit: No # Query_time: 2.193934 Lock_time: 0.000306 Rows_sent: 1 Rows_examined: 142368 # Rows_affected: 0 Bytes_sent: 60 SET timestamp=1666745399; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '746' , '747' , '842' , '845' , '849' , '855' , '856' , '857' , '858' , '859' , '860' , '861' , '1233' , '1326' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '620' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '11' , '918' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-05-12 08:50:15' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '620' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # Time: 221026 1:21:40 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2766762 Schema: trs_ids QC_hit: No # Query_time: 4.315032 Lock_time: 0.000072 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 use trs_ids; SET timestamp=1666747300; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `USERAGENT`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 09:24:14', '營山縣發(fā)展公司_報送', 1, '用戶登錄協作應用', '172.27.4.227', '95997EFDEA8E3688D77E67D9F89D7935-172.27.9.48', 'IIP', '2D6ECDA7219778FC64BF21786251A1BF', 0, 'N/A', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:177)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...ger.coLogin(SSOSessionManager.java:547)<-com.trs.idm.model.session.SSOSessionManager.loginInternal(SSOSessionManager.java:918)', '172.27.4.227', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3884.400 QQBrowser/10.8.4560.400', '302c021444d6cb8bc18efeb0a833e1d05601b7b9f0b2db44021469e8949a922ff6d04c7f4cc099355ee414ab7f7c', 'IIP', 'ids', 61); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2766723 Schema: trs_ids QC_hit: No # Query_time: 3.385338 Lock_time: 0.000080 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666747300; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `USERAGENT`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 09:24:15', '營山縣發(fā)展公司_報送', '', 1, '用戶登錄協作應用', '172.27.4.227', '95997EFDEA8E3688D77E67D9F89D7935-172.27.9.48', 'IIP', 'E26E11AE359341B1BAEF79014D61817F', 0, 'N/A', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...Manager.coLogin(SSOSessionManager.java:589)<-com.trs.idm.model.login.BaseLoginController.coLogin(BaseLoginController.java:496)', '172.27.4.227', 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.25 Safari/537.36 Core/1.70.3884.400 QQBrowser/10.8.4560.400', '302d0215008ce8a59e0f51771d2ae6604fbae8a46f02ab6d0902143a21c820388efed92f2958bcc00e75d9ff0fcd14', 'IIP', 'ids', 21); # Time: 221026 2:48:18 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767183 Schema: trs_ids QC_hit: No # Query_time: 4.827856 Lock_time: 0.000088 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666752498; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 10:50:51', 'SYSTEM', '', 1, '刷新ssoToken[FA73D00B442F406CE98A4B00A4DD690B-172.27.9.48]成功', '172.27.9.57', 'FA73D00B442F406CE98A4B00A4DD690B-172.27.9.48', 'IIP', '45AC416DC3F549A882EA5704703820F9', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.9.57', '302d021500837259300c34676df1a8efc9780f5e4d2721b1f302146cb2f6fbd7d5ec496cbe06fe0f2564e1943c74a4', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767254 Schema: trs_ids QC_hit: No # Query_time: 4.709218 Lock_time: 0.000142 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666752498; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 10:50:51', 'SYSTEM', '', 1, '刷新ssoToken[FA73D00B442F406CE98A4B00A4DD690B-172.27.9.48]成功', '172.27.4.227', 'FA73D00B442F406CE98A4B00A4DD690B-172.27.9.48', 'IIP', '45AC416DC3F549A882EA5704703820F9', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.4.227', '302b02142c5ccb887703dd46339164b87f6caba6c521320f02135d324b7fa9b2fde712d7e4e905116d3f1b4ea1', -1); # Time: 221026 3:24:48 # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2767514 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.398462 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_igi; SET timestamp=1666754688; commit; # Time: 221026 3:24:58 # User@Host: irs[irs] @ [172.27.3.135] # Thread_id: 2765861 Schema: trs_irs QC_hit: No # Query_time: 2.326965 Lock_time: 0.000127 Rows_sent: 9 Rows_examined: 9 # Rows_affected: 0 Bytes_sent: 1878 use trs_irs; SET timestamp=1666754698; select searchfiel0_.id as id1_24_, searchfiel0_.analyzer_type as analyzer2_24_, searchfiel0_.cn_name as cn_name3_24_, searchfiel0_.cr_time as cr_time4_24_, searchfiel0_.cr_user as cr_user5_24_, searchfiel0_.en_name as en_name6_24_, searchfiel0_.ext_en_name as ext_en_n7_24_, searchfiel0_.field_type as field_ty8_24_, searchfiel0_.is_system as is_syste9_24_, searchfiel0_.searchbase_id as searchb10_24_, searchfiel0_.searchbase_table_id as searchb11_24_ from irs_searchbase_field_info searchfiel0_ where searchfiel0_.id in (108 , 116 , 125 , 133 , 73 , 88 , 39 , 46 , 7); # Time: 221026 3:36:06 # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 1312728 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 2.419303 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_ipm; SET timestamp=1666755366; commit; # Time: 221026 3:39:55 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767549 Schema: trs_ids QC_hit: No # Query_time: 3.666000 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_ids; SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767253 Schema: trs_ids QC_hit: No # Query_time: 2.947360 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767661 Schema: trs_ids QC_hit: No # Query_time: 3.276164 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767402 Schema: trs_ids QC_hit: No # Query_time: 3.001373 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767550 Schema: trs_ids QC_hit: No # Query_time: 3.409387 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767616 Schema: trs_ids QC_hit: No # Query_time: 2.962938 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767660 Schema: trs_ids QC_hit: No # Query_time: 3.234524 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767487 Schema: trs_ids QC_hit: No # Query_time: 2.390315 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767183 Schema: trs_ids QC_hit: No # Query_time: 3.065140 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767492 Schema: trs_ids QC_hit: No # Query_time: 3.631596 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666755595; commit; # Time: 221026 3:40:38 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767616 Schema: trs_ids QC_hit: No # Query_time: 4.389682 Lock_time: 0.000053 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:11', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', 'CC26AA8179A9185F61AF03334348BB62', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:CC26AA8179A9185F61AF03334348BB62 響應信息:IGIlogout 906EAB9004C6508C98B896F613FE4AA8 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c0214405a6599f4b2bf5a7b637eaa156aced907be703d021446dba112801877a3fbe2dc546e075a7113ecb0ee', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767402 Schema: trs_ids QC_hit: No # Query_time: 3.299221 Lock_time: 0.000146 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:13', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout D458CE3EC94C2F289B26244FCA99CEBA (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302d021414315ba709db5a75fa0ba589ab1c5cb59823fc6a02150093fc980ef45f2de19de35501b9d0169f5e48bf1b', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767661 Schema: trs_ids QC_hit: No # Query_time: 3.366218 Lock_time: 0.000087 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:13', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout 79D2B96DBAF70610FF223E64B93D38AB (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c021440f50a5b173afd189e882653c4f9ebd658a2f9d1021445762c0382c898d4540af088fe3f3cd749f86337', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767183 Schema: trs_ids QC_hit: No # Query_time: 3.306278 Lock_time: 0.000121 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:13', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout 6D19CE3915A5013C64BCDFC41807CE57 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c02145f948691d174ee809d06b3222447b351136188ac021435188a78aac6ff58f8966da5e16f1ac23088b76e', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767492 Schema: trs_ids QC_hit: No # Query_time: 2.401411 Lock_time: 0.000177 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:13', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout 3E2C7266A29D6E41A77BC1576B7BACD6 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c02143bcf3c5ebc16315dae911033d77f31362455d74e02145e12634a1c009781558010abe9b2d06b38709d82', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767550 Schema: trs_ids QC_hit: No # Query_time: 3.404811 Lock_time: 0.000102 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:13', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout C71B2877E421590B5CC4EFDD70DA3B7C (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c02143882dcc85c32ae5fd1a5747b5acd411d2473003c02140a7d22233b503bdc8684919f78d53cc6f4023d60', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2767660 Schema: trs_ids QC_hit: No # Query_time: 2.371651 Lock_time: 0.000169 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666755638; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 11:43:14', '生態(tài)環(huán)境局_童雪梅', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.227', '8BCF21D38C7B24A7ADB0F3745DCBB66E-172.27.9.48', 'IGI', '7579471BBEDAC5B2C3A7EF6F7ABF7E55', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:7579471BBEDAC5B2C3A7EF6F7ABF7E55 響應信息:IGIlogout C86D736A47BB2A99CF67E7FF29D5ED69 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.227', '302c021415ec3a63fcdb1ffced96271730fd14d05f8ee2f902147ba79bcd371b84271d6248374fafc6d8522840c9', 'IIP', 'ids', -1); # Time: 221026 5:25:02 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768295 Schema: trs_ids QC_hit: No # Query_time: 2.080505 Lock_time: 0.000075 Rows_sent: 2 Rows_examined: 2 # Rows_affected: 0 Bytes_sent: 1562 SET timestamp=1666761902; select this_.`ID` as ID1_29_0_, this_.`NAME` as NAME2_29_0_, this_.`DISPLAYNAME` as DISPLAYN3_29_0_, this_.`DESCRIPTION` as DESCRIPT4_29_0_, this_.`SENDERTYPE` as SENDERTYPE5_29_0_, this_.`SENDERCLASS` as SENDERCL6_29_0_, this_.`CREATEDTIME` as CREATEDT7_29_0_, this_.`CREATEDUSER` as CREATEDU8_29_0_, this_.`STATUS` as STATUS9_29_0_, this_.`STATUSDESC` as STATUSDESC10_29_0_, this_.`CONFIGURATION` as CONFIGU11_29_0_, this_.`INTERNAL` as INTERNAL12_29_0_ from `IDSNOTIFICATIONSENDER` this_ limit 500; # Time: 221026 6:59:55 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768854 Schema: trs_ids QC_hit: No # Query_time: 4.340171 Lock_time: 0.000049 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:29', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout 0A516B61273223ADB1E5AA4D68A4AF83 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302e0215008dffc9f646eeb9308e38184372dd1362fcd819fe0215009663f36c60640d7b211258ca33724d990d570e5a', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768626 Schema: trs_ids QC_hit: No # Query_time: 3.313328 Lock_time: 0.000163 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:30', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout FDC4B593F979F927345F8A0ECA722497 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302d02150085ff105564e67af6a567ea0272f2adfcc9e3ae48021432d5d98f0780213f5206a5e6dcbf50d1d047a3d2', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768856 Schema: trs_ids QC_hit: No # Query_time: 2.707695 Lock_time: 0.000149 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:30', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout 648D9F22CE97EE43B50405261CC611F6 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302e021500945d59b03b996590998d8dd108936f79b57f177302150095682fcdd8f859bec602e697b482cb9b61e74a19', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768821 Schema: trs_ids QC_hit: No # Query_time: 2.341896 Lock_time: 0.000206 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:31', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout EADA374021155C4CD68BDA555D27A45D (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302c0214789167442caae01a4b68f4af453ff5047d7464c70214599ff40bf4324d424800ce98f6a8440eab111ae6', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768768 Schema: trs_ids QC_hit: No # Query_time: 3.713903 Lock_time: 0.000168 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:30', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout A43045E7C34FCF9A5ACB1D844AEB1D46 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302c02140cf2b984f184b911f4787d099d28b92b846dd7ef02144b601c784afe9b70d276142221ac8dcc37ea888f', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768855 Schema: trs_ids QC_hit: No # Query_time: 3.997345 Lock_time: 0.000107 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:29', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout 0AD621EE90030289A4560C85456DA711 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302d02144beffba11593c6ec800dbaaf13624e1fe8579e4f0215008305cdf5adce525025a074cdee83594330f69299', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768988 Schema: trs_ids QC_hit: No # Query_time: 3.719262 Lock_time: 0.000174 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:29', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout 095211CC4FD0EAF3CD523CBE1566064B (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302d0215008a4d1bf136e1454bda6cbd8491f3e35c8fddbb2e0214323d5712191b01136bcd40834d7a8978a7a1ee40', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768986 Schema: trs_ids QC_hit: No # Query_time: 4.316618 Lock_time: 0.000127 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:29', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout 4A00E96A0666CE6C03F75743FE68A2B6 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302c02145e013f28fdea67baa68494b9ea7f796e780d1cbc021441dee895310f37195ecf92d3a8b64fcfb4eed2fb', 'IIP', 'ids', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2768987 Schema: trs_ids QC_hit: No # Query_time: 3.342963 Lock_time: 0.000179 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666767595; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 15:02:30', '南部縣雙峰鄉(xiāng)', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'D1BC67C6F89CDB7CF15FB63C304022D3-172.27.9.48', 'IGI', 'E6DD7EF376A9FDC1D421E36D6CC92D81', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:E6DD7EF376A9FDC1D421E36D6CC92D81 響應信息:IGIlogout D3C3DA7B6920F9B2F1220426C9B619CC (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302c021417a9a31a5e8d8e0e61438c73491ccc70d912ee6b0214182b7f758fe2a5356de5b914fffe8f828a73925f', 'IIP', 'ids', -1); # Time: 221026 8:07:36 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769438 Schema: trs_ids QC_hit: No # Query_time: 4.927149 Lock_time: 0.000046 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666771656; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME`) values ('2022-10-26 16:10:09', '西充縣綜合行政執(zhí)法局-審核', '', 1, 'IDS發(fā)出注銷請求', '172.27.4.226', 'F9B3B073FF74E19707069CDFCE673366-172.27.9.48', 'IGI', 'F82DF72A4DFF2BC869DAD7E34B47749F', 0, '請求URL:http://hycloud-nginx-svc/IGI/ids/gotoLogin 實際通知會話:F82DF72A4DFF2BC869DAD7E34B47749F 響應信息:IGIlogout 3C77103F4B2EADD916E2CCC535D6BC29 (This sessionId must be the same as CoSessionId from IDS Above) 通知用的會話標識:JSESSIONID', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.session.SSOSessionManager.logLoginE...fyAppLogout(SSOSessionManager.java:1548)<-com.trs.idm.model.session.SSOSessionManager.notifyCoApp(SSOSessionManager.java:1650)', '172.27.4.226', '302c02145b6213cc30e83540f607ebd9c165f586c112fa1402146dff3e4c2dbfd6123eb8128deeeaec1519b6ebfb', 'IIP', 'ids', -1); # Time: 221026 9:16:14 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769622 Schema: trs_ids QC_hit: No # Query_time: 5.538084 Lock_time: 0.000107 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666775774; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 17:18:46', 'SYSTEM', '', 1, '刷新ssoToken[A90A96B2384E076B11C3B8126CCC0039-172.27.9.48]成功', '172.27.9.57', 'A90A96B2384E076B11C3B8126CCC0039-172.27.9.48', 'IIP', 'ECC23833E11C4241A35C352DA45E3811', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.9.57', '302c02147cd1111bfabca975ddf7693aa242f86a60a782c302145466bf530d61fbf7b2b5908b4ceec07534796a2e', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769786 Schema: trs_ids QC_hit: No # Query_time: 5.531273 Lock_time: 0.000104 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666775774; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 17:18:46', 'SYSTEM', '', 1, '刷新ssoToken[A90A96B2384E076B11C3B8126CCC0039-172.27.9.48]成功', '172.27.4.227', 'A90A96B2384E076B11C3B8126CCC0039-172.27.9.48', 'IIP', 'ECC23833E11C4241A35C352DA45E3811', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.4.227', '302d0215008b492ae2e980dfd95a60201aabf995486183015902141dee5a348272d93e472ee0a15a72bd05945ba829', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769884 Schema: trs_ids QC_hit: No # Query_time: 4.780034 Lock_time: 0.000149 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666775774; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 17:18:47', 'SYSTEM', '', 1, '刷新ssoToken[A90A96B2384E076B11C3B8126CCC0039-172.27.9.48]成功', '172.27.4.226', 'A90A96B2384E076B11C3B8126CCC0039-172.27.9.48', 'IIP', 'ECC23833E11C4241A35C352DA45E3811', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.4.226', '302c0214393c06b457b97b4fed1f824e8ab4e240160d16b9021446adc97c8586f821d90036b85ed7ec98ebcf87cc', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769882 Schema: trs_ids QC_hit: No # Query_time: 4.738372 Lock_time: 0.000156 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666775774; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 17:18:47', 'SYSTEM', '', 1, '刷新ssoToken[A90A96B2384E076B11C3B8126CCC0039-172.27.9.48]成功', '172.27.4.227', 'A90A96B2384E076B11C3B8126CCC0039-172.27.9.48', 'IIP', 'ECC23833E11C4241A35C352DA45E3811', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.4.227', '302d021450d84f20780ff43733e9859006dba8cebcc54cc80215008f1fd1ec8da0dfaf3a67f8604f8efcb616265b06', -1); # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2769883 Schema: trs_ids QC_hit: No # Query_time: 3.779332 Lock_time: 0.000118 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 SET timestamp=1666775774; insert into `IDSLOG` (`LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `SIGNATURE`, `ELAPSEDTIME`) values ('2022-10-26 17:18:48', 'SYSTEM', '', 1, '刷新ssoToken[A90A96B2384E076B11C3B8126CCC0039-172.27.9.48]成功', '172.27.9.57', 'A90A96B2384E076B11C3B8126CCC0039-172.27.9.48', 'IIP', 'ECC23833E11C4241A35C352DA45E3811', 0, '會話延期成功', 'com.trs.idm.model.logging.LogManager.logLoginEvent(LogManager.java:153)<-com.trs.idm.model.logging.LogManager.logLoginEvent(Lo...i.v5.sso.RefreshProcessor.process(RefreshProcessor.java:79)<-com.trs.idm.api.v5.APIServer.executeProcessor(APIServer.java:646)', '172.27.9.57', '302c0214130e985d60367eb438e831b240e6f352a237d361021431a0c1b3f5e163ee1dd0e584b59d6543ee9795e9', -1); # Time: 221026 10:00:36 # User@Host: leadercockpit[leadercockpit] @ [172.27.4.238] # Thread_id: 2770182 Schema: leadercockpit QC_hit: No # Query_time: 8.295103 Lock_time: 0.000093 Rows_sent: 0 Rows_examined: 1 # Rows_affected: 1 Bytes_sent: 52 use leadercockpit; SET timestamp=1666778436; UPDATE data_syn_log SET data_syn_task_id=124531, request_url='http://59.213.143.247/hyapi/igi/msgboxes/mayor/count', response='{"code":0,"data":0,"msg":"操作成功"}', exception='success', scene='在線信箱', create_time='2022-10-26 10:03:07' WHERE data_syn_log_id=178094; # Time: 221026 10:21:05 # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2769869 Schema: trs_hycloud_igi QC_hit: No # Query_time: 3.846060 Lock_time: 0.000061 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 use trs_hycloud_igi; SET timestamp=1666779665; insert into trs_message_records (create_date, modify_date, content, failure_reasons, is_success, phone_number, type) values ('2022-10-26 18:21:01', null, '{"netizenName":"李秋月","siteName":"南充市人民政府","appInfoName":"南充市統一信箱","nodeDesc":"待回復","operation":"新","govTitle":"南充升鐘水利工程建設管理局在職人員杜雙全惡意擾亂金額秩序。","govQueryNumber":"2022102637248660","govQueryPwd":"892857","operTargetDept":"南充市人民政府辦公室","majorDealDept":"南充市人民政府辦公室","assistDealDept":"","timeLeft":"5"}', '短信通知發(fā)送失敗,原因:SDK.ServerUnreachable : Server unreachable: java.net.UnknownHostException: dysmsapi.aliyuncs.com', '1', '13990776653', 'GOV_NOTICE_NEW'); # Time: 221026 14:00:56 # User@Host: leadercockpit[leadercockpit] @ [172.27.4.238] # Thread_id: 2771627 Schema: leadercockpit QC_hit: No # Query_time: 4.074533 Lock_time: 0.000040 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 14 use leadercockpit; SET timestamp=1666792856; INSERT INTO data_syn_log ( data_syn_task_id, request_url, response, exception, scene, create_time ) VALUES ( 124916, 'http://apollo-prometheus-svc.trsdevops:30090/api/v1/query_range?query=(sum(node_memory_MemTotal_bytes{origin_prometheus=~""} - node_memory_MemAvailable_bytes{origin_prometheus=~""}) / sum(node_memory_MemTotal_bytes{origin_prometheus=~""}))*100&start=1666793010&end=1666793010&step=1800', '未發(fā)送請求/請求發(fā)生異常', 'success', '服務運行狀態(tài)詳情監(jiān)控', '2022-10-26 14:03:30' ); # Time: 221026 16:07:49 # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 2772499 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 3.054128 Lock_time: 0.000124 Rows_sent: 0 Rows_examined: 487 # Rows_affected: 1 Bytes_sent: 52 use trs_hycloud_ipm; SET timestamp=1666800469; update issue set checkTime = '2022-10-27 00:07:56' WHERE 1=1 AND siteId = 50 AND customer2 = '5667' AND typeId = 101 AND subTypeId = 1011 AND isResolved = 0 AND isDel = 0 AND isResolved = 0 AND isDel = 0; # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 2772488 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 2.585605 Lock_time: 0.000193 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 1 Bytes_sent: 13 SET timestamp=1666800469; INSERT INTO performanceindex ( siteId, indexLevel, performance, checkTime , singleVeto , homePageAvailability , homePageChannel , levySurvey , interactiveInterview ) VALUES ( 22, 1, 0.0, '2022-10-27 00:07:56' , '站點無法訪問;站點不更新;欄目不更新;互動回應差;' , '5 * 100.0(%)' , '5' , '5' , '5' ); # Time: 221026 17:06:55 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2772901 Schema: trs_ids QC_hit: No # Query_time: 3.882894 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_ids; SET timestamp=1666804015; commit; # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2770625 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.326791 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_igi; SET timestamp=1666804015; commit; # Time: 221026 17:07:07 # User@Host: mas[mas] @ [172.27.10.89] # Thread_id: 2418677 Schema: trs_mas QC_hit: No # Query_time: 2.258129 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_mas; SET timestamp=1666804027; commit; # Time: 221026 17:07:54 # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2772902 Schema: trs_ids QC_hit: No # Query_time: 3.008971 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_ids; SET timestamp=1666804074; commit; # Time: 221026 19:01:32 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: leadercockpit QC_hit: No # Query_time: 4.863133 Lock_time: 0.000042 Rows_sent: 179359 Rows_examined: 179359 # Rows_affected: 0 Bytes_sent: 184391841 use leadercockpit; SET timestamp=1666810892; SELECT /*!40001 SQL_NO_CACHE */ `data_syn_log_id`, `data_syn_task_id`, `request_url`, `request_params`, `response`, `exception`, `scene`, `create_time` FROM `data_syn_log`; # Time: 221026 19:02:03 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_hycloud_igi QC_hit: No # Query_time: 19.358427 Lock_time: 0.000047 Rows_sent: 1107403 Rows_examined: 1107403 # Rows_affected: 0 Bytes_sent: 643887837 use trs_hycloud_igi; SET timestamp=1666810923; SELECT /*!40001 SQL_NO_CACHE */ `id`, `create_date`, `modify_date`, `content`, `failure_reasons`, `is_success`, `number_of_days`, `phone_number`, `type` FROM `trs_message_records`; # Time: 221026 19:02:09 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_hycloud_msg QC_hit: No # Query_time: 3.249953 Lock_time: 0.000064 Rows_sent: 225517 Rows_examined: 225517 # Rows_affected: 0 Bytes_sent: 89203745 use trs_hycloud_msg; SET timestamp=1666810929; SELECT /*!40001 SQL_NO_CACHE */ `id`, `group_id`, `module_id`, `biz_id`, `title`, `content`, `source_id`, `event`, `event_data`, `cr_time`, `msg_type`, `notice_status`, `receive_user_count`, `up_time`, `up_user`, `pub_time` FROM `msg_detail`; # Time: 221026 19:02:13 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_hycloud_msg QC_hit: No # Query_time: 3.798709 Lock_time: 0.000040 Rows_sent: 760078 Rows_examined: 760078 # Rows_affected: 0 Bytes_sent: 37822394 SET timestamp=1666810933; SELECT /*!40001 SQL_NO_CACHE */ `id`, `group_id`, `module_id`, `msg_id`, `reader_type`, `reader_id`, `cr_time` FROM `msg_reader`; # Time: 221026 19:04:41 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_ids QC_hit: No # Query_time: 144.767234 Lock_time: 0.000115 Rows_sent: 6704082 Rows_examined: 6704082 # Rows_affected: 0 Bytes_sent: 5009273781 use trs_ids; SET timestamp=1666811081; SELECT /*!40001 SQL_NO_CACHE */ `LOGID`, `LOGTIME`, `LOGUSER`, `COUSERNAME`, `LOGTYPE`, `LOGDESC`, `HOSTIP`, `IDSSESS`, `COAPP`, `COSESS`, `LOGRESULT`, `DETAIL`, `CALLER`, `PROXYIPS`, `USERAGENT`, `SIGNATURE`, `REGFROM`, `REGCOAPP`, `ELAPSEDTIME` FROM `idslog`; # Time: 221026 19:04:42 # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 52.343538 Lock_time: 0.000538 Rows_sent: 6 Rows_examined: 63701 # Rows_affected: 0 Bytes_sent: 21074 use trs_hycloud_igi; SET timestamp=1666811082; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where (govmsgbox0_.siteid in (50)) and (govmsgbox0_.app_id in (14)) and govmsgbox0_.ispublic=1 and govmsgbox0_.arepublic=1 and govmsgbox0_.parent_id=0 and govmsgbox0_.status=7 order by govmsgbox0_.submit_time desc limit 6; # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2773671 Schema: trs_hycloud_igi QC_hit: No # Query_time: 41.628405 Lock_time: 0.000448 Rows_sent: 6 Rows_examined: 63701 # Rows_affected: 0 Bytes_sent: 25772 SET timestamp=1666811082; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where (govmsgbox0_.siteid in (46)) and (govmsgbox0_.app_id in (10)) and govmsgbox0_.ispublic=1 and govmsgbox0_.arepublic=1 and govmsgbox0_.parent_id=0 and govmsgbox0_.status=7 order by govmsgbox0_.submit_time desc limit 6; # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2773313 Schema: trs_hycloud_igi QC_hit: No # Query_time: 62.764443 Lock_time: 0.000448 Rows_sent: 7 Rows_examined: 63702 # Rows_affected: 0 Bytes_sent: 27195 SET timestamp=1666811082; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where (govmsgbox0_.siteid in (46)) and (govmsgbox0_.app_id in (10)) and govmsgbox0_.ispublic=1 and govmsgbox0_.arepublic=1 and govmsgbox0_.parent_id=0 and govmsgbox0_.status=7 order by govmsgbox0_.submit_time desc limit 7; # Time: 221026 19:04:50 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_ids QC_hit: No # Query_time: 5.457925 Lock_time: 0.000053 Rows_sent: 6064 Rows_examined: 6064 # Rows_affected: 0 Bytes_sent: 17639900 use trs_ids; SET timestamp=1666811090; SELECT /*!40001 SQL_NO_CACHE */ `ID`, `COAPPNAME`, `USERNAME`, `OPERATION`, `LOCKER`, `LOCKEDTIME`, `CREATEDTIME`, `FOLLOWTIME`, `TRIEDCOUNT`, `REASON`, `STATUS`, `PROPERTIES`, `SOURCENAME`, `OBJTYPE` FROM `idsusersyncjob`; # Time: 221026 19:04:54 # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2773313 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.453342 Lock_time: 0.000311 Rows_sent: 6 Rows_examined: 63701 # Rows_affected: 0 Bytes_sent: 21074 use trs_hycloud_igi; SET timestamp=1666811094; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where (govmsgbox0_.siteid in (50)) and (govmsgbox0_.app_id in (14)) and govmsgbox0_.ispublic=1 and govmsgbox0_.arepublic=1 and govmsgbox0_.parent_id=0 and govmsgbox0_.status=7 order by govmsgbox0_.submit_time desc limit 6; # Time: 221026 19:05:05 # User@Host: root[root] @ [172.27.1.0] # Thread_id: 2773651 Schema: trs_mas QC_hit: No # Query_time: 4.842019 Lock_time: 0.000056 Rows_sent: 474281 Rows_examined: 474281 # Rows_affected: 0 Bytes_sent: 133134598 use trs_mas; SET timestamp=1666811105; SELECT /*!40001 SQL_NO_CACHE */ `ID`, `CREATEDTIME`, `CREATEDUSER`, `CREATEDUSERID`, `CREATEDUSERNICKNAME`, `LASTMODIFIEDTIME`, `LASTMODIFIEDUSER`, `LASTMODIFIEDUSERID`, `BROWSER`, `BROWSERVERSION`, `CATEGORYDN`, `CREATEDUSERIP`, `DEVICE`, `OBJECTCREATEDUSER`, `OBJECTCREATEDUSERID`, `OBJECTID`, `OPERATIONSYSTEM`, `OPERATIONTYPE`, `PCategoryId`, `PCATEGORYNAME`, `PLAYER`, `SCREEN`, `USERAGENT`, `WEIGHTNUMBER` FROM `mas_userdynamic`; # Time: 221026 19:07:38 # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.253104 Lock_time: 0.000331 Rows_sent: 3 Rows_examined: 140176 # Rows_affected: 0 Bytes_sent: 9091 use trs_hycloud_igi; SET timestamp=1666811258; select govmsgboxd0_.govmsgboxdocid as govmsgbo1_37_, govmsgboxd0_.appname as appname2_37_, govmsgboxd0_.attachs as attachs3_37_, govmsgboxd0_.attribute as attribut4_37_, govmsgboxd0_.content as content5_37_, govmsgboxd0_.crip as crip6_37_, govmsgboxd0_.crtime as crtime7_37_, govmsgboxd0_.cruser as cruser8_37_, govmsgboxd0_.data_id as data_id9_37_, govmsgboxd0_.deal_dept_id as deal_de10_37_, govmsgboxd0_.deal_dept_name as deal_de11_37_, govmsgboxd0_.deal_user_id as deal_us12_37_, govmsgboxd0_.delay_days as delay_d13_37_, govmsgboxd0_.dept_path as dept_pa14_37_, govmsgboxd0_.evaluate as evaluat15_37_, govmsgboxd0_.flow_status as flow_st16_37_, govmsgboxd0_.forward_dept_id as forward17_37_, govmsgboxd0_.forward_user_name as forward18_37_, govmsgboxd0_.message as message19_37_, govmsgboxd0_.oper as oper20_37_, govmsgboxd0_.oper_content as oper_co21_37_, govmsgboxd0_.oper_type as oper_ty22_37_, govmsgboxd0_.parent_id as parent_23_37_, govmsgboxd0_.passed as passed24_37_, govmsgboxd0_.post_content as post_co25_37_, govmsgboxd0_.post_dept as post_de26_37_, govmsgboxd0_.post_dept_name as post_de27_37_, govmsgboxd0_.post_status as post_st28_37_, govmsgboxd0_.post_user as post_us29_37_, govmsgboxd0_.process_desc as process30_37_, govmsgboxd0_.remain_days as remain_31_37_, govmsgboxd0_.site_id as site_id32_37_, govmsgboxd0_.target_app_id as target_33_37_, govmsgboxd0_.target_site_id as target_34_37_, govmsgboxd0_.view_id as view_id35_37_ from trs_govmsgbox_doc govmsgboxd0_ where govmsgboxd0_.data_id=240420 and govmsgboxd0_.oper_type=1 order by govmsgboxd0_.crtime desc; # Time: 221026 19:07:46 # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 8.406159 Lock_time: 0.000177 Rows_sent: 1 Rows_examined: 61924 # Rows_affected: 0 Bytes_sent: 7397 SET timestamp=1666811266; select govmsgboxr0_.reply_id as reply_id1_43_, govmsgboxr0_.data_id as data_id2_43_, govmsgboxr0_.reply_attachs as reply_at3_43_, govmsgboxr0_.replycontent as replycon4_43_, govmsgboxr0_.replydept as replydep5_43_, govmsgboxr0_.reply_dept_ext_name as reply_de6_43_, govmsgboxr0_.replydeptid as replydep7_43_, govmsgboxr0_.replyhtmlcontent as replyhtm8_43_, govmsgboxr0_.replyip as replyip9_43_, govmsgboxr0_.replytime as replyti10_43_, govmsgboxr0_.replytype as replyty11_43_, govmsgboxr0_.replyuser as replyus12_43_, govmsgboxr0_.signvalue as signval13_43_, govmsgboxr0_.site_id as site_id14_43_ from trs_govmsgbox_reply govmsgboxr0_ where govmsgboxr0_.data_id=240420; # Time: 221026 19:10:03 # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.922208 Lock_time: 0.000259 Rows_sent: 0 Rows_examined: 63695 # Rows_affected: 0 Bytes_sent: 9231 SET timestamp=1666811403; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where govmsgbox0_.smart_turn_flag=1 and govmsgbox0_.smart_turn_result=0 and govmsgbox0_.smart_turn_data_id<>0; # Time: 221026 19:24:59 # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2770625 Schema: trs_hycloud_igi QC_hit: No # Query_time: 3.789189 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 SET timestamp=1666812299; commit; # User@Host: mas[mas] @ [172.27.10.89] # Thread_id: 2418700 Schema: trs_mas QC_hit: No # Query_time: 3.527154 Lock_time: 0.050343 Rows_sent: 0 Rows_examined: 4 # Rows_affected: 0 Bytes_sent: 1498 use trs_mas; SET timestamp=1666812299; select processjob0_.`ID` as ID1_32_, processjob0_.`CREATEDTIME` as CREATEDT2_32_, processjob0_.`CREATEDUSER` as CREATEDU3_32_, processjob0_.`CREATEDUSERID` as CREATEDU4_32_, processjob0_.`CREATEDUSERNICKNAME` as CREATEDU5_32_, processjob0_.`LASTMODIFIEDTIME` as LASTMODI6_32_, processjob0_.`LASTMODIFIEDUSER` as LASTMODI7_32_, processjob0_.`LASTMODIFIEDUSERID` as LASTMODI8_32_, processjob0_.`CREATORNODEKEY` as CREATORN9_32_, processjob0_.`MARKERNODEKEY` as MARKERN10_32_, processjob0_.`DETAIL` as DETAIL11_32_, processjob0_.`DOMAINOBJID` as DOMAINO12_32_, processjob0_.`MARKTIME` as MARKTIME13_32_, processjob0_.`PROCESSORDER` as PROCESS14_32_, processjob0_.`SOURCETYPE` as SOURCETYPE15_32_, processjob0_.`STATE` as STATE16_32_, processjob0_.`STATUS` as STATUS17_32_, processjob0_.`TYPE` as TYPE18_32_ from MAS_PROCESSJOB processjob0_ where processjob0_.`STATE`='NEW' order by processjob0_.`PROCESSORDER` asc limit 1; # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 1173218 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 4.021290 Lock_time: 0.050219 Rows_sent: 1 Rows_examined: 1 # Rows_affected: 0 Bytes_sent: 529 use trs_hycloud_ipm; SET timestamp=1666812299; SELECT * FROM QRTZ_SCHEDULER_STATE WHERE SCHED_NAME = 'kpi'; # User@Host: mas[mas] @ [172.27.10.89] # Thread_id: 2412354 Schema: trs_mas QC_hit: No # Query_time: 3.266587 Lock_time: 0.050510 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 4382 use trs_mas; SET timestamp=1666812299; select live0_.`ID` as ID1_46_, live0_.`CREATEDTIME` as CREATEDT2_46_, live0_.`CREATEDUSER` as CREATEDU3_46_, live0_.`CREATEDUSERID` as CREATEDU4_46_, live0_.`CREATEDUSERNICKNAME` as CREATEDU5_46_, live0_.`LASTMODIFIEDTIME` as LASTMODI6_46_, live0_.`LASTMODIFIEDUSER` as LASTMODI7_46_, live0_.`LASTMODIFIEDUSERID` as LASTMODI8_46_, live0_.`ATTACHEDPIC` as ATTACHED9_46_, live0_.`AUDIOBITRATE` as AUDIOBI10_46_, live0_.`AUDIOCHANNELS` as AUDIOCH11_46_, live0_.`AUDIOCODEC` as AUDIOCODEC12_46_, live0_.`AUDIOFORMAT` as AUDIOFO13_46_, live0_.`AUDIOSAMPLERATE` as AUDIOSA14_46_, live0_.`BITRATE` as BITRATE15_46_, live0_.`DEMUXER` as DEMUXER16_46_, live0_.`DURATION` as DURATION17_46_, live0_.`DURATIONOFDOUBLE` as DURATIO18_46_, live0_.`FPS` as FPS19_46_, live0_.`FRAMERATE` as FRAMERATE20_46_, live0_.`HEIGHT` as HEIGHT21_46_, live0_.`IFRAMES` as IFRAMES22_46_, live0_.`mediaType` as mediaType23_46_, live0_.`NBFRAMES` as NBFRAMES24_46_, live0_.`PIXELFORMAT` as PIXELFO25_46_, live0_.`ROTATE` as ROTATE26_46_, live0_.`VIDEOCODEC` as VIDEOCODEC27_46_, live0_.`VIDEOFORMAT` as VIDEOFO28_46_, live0_.`VIDEOLEVEL` as VIDEOLEVEL29_46_, live0_.`VIDEOPROFILE` as VIDEOPR30_46_, live0_.`WIDTH` as WIDTH31_46_, live0_.`IOSLIVENAME` as IOSLIVE32_46_, live0_.`LIVE_STATUS` as LIVE33_46_, live0_.`NAME` as NAME34_46_, live0_.`PREDICTION` as PREDICTION35_46_, live0_.`STATUS` as STATUS36_46_, live0_.`STREAMCOUNT` as STREAMC37_46_, live0_.`SUPPORTIOSDEVICE` as SUPPORT38_46_, live0_.`TITLE` as TITLE39_46_, live0_.`ENDTIME` as ENDTIME40_46_, live0_.`ISLIVEVIDEOONLIVE` as ISLIVEV41_46_, live0_.`ISSTARTFFMPEG` as ISSTART42_46_, live0_.`LIVE_DEVICE` as LIVE43_46_, live0_.`LIVEROLETYPE` as LIVEROL44_46_, live0_.`LIVE_TYPE` as LIVE45_46_, live0_.`LOGONAME` as LOGONAME46_46_, live0_.`ORIGINLIVEID` as ORIGINL47_46_, live0_.`PLAYCOUNT` as PLAYCOUNT48_46_, live0_.`PROBLEMATIC` as PROBLEM49_46_, live0_.`RECORDCATEGORYID` as RECORDC50_46_, live0_.`RECORDVIDEOID` as RECORDV51_46_, live0_.`RECORDVIDEOTITLE` as RECORDV52_46_, live0_.`RECORDING` as RECORDING53_46_, live0_.`REGION` as REGION54_46_, live0_.`RELATEDVIDEOID` as RELATED55_46_, live0_.`RELATEDVIDEOTITLE` as RELATED56_46_, live0_.`SRCTRANSPARAM` as SRCTRAN57_46_, live0_.`SRCTYPE` as SRCTYPE58_46_, live0_.`SRCURL` as SRCURL59_46_, live0_.`STARTTIME` as STARTTIME60_46_, live0_.`TIMING_END` as TIMING61_46_, live0_.`TIMING_START` as TIMING62_46_ from MAS_LIVE live0_ order by live0_.`ID` desc limit 1000; # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 4.038223 Lock_time: 0.000073 Rows_sent: 2 Rows_examined: 2 # Rows_affected: 0 Bytes_sent: 637 use trs_hycloud_igi; SET timestamp=1666812299; SELECT * FROM qrtz_SCHEDULER_STATE WHERE SCHED_NAME = 'quartzScheduler'; # Time: 221026 19:25:02 # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 1173218 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 2.912537 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_ipm; SET timestamp=1666812302; commit; # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773636 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.912705 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_igi; SET timestamp=1666812302; commit; # Time: 221026 19:25:03 # User@Host: mas[mas] @ [172.27.10.89] # Thread_id: 2418710 Schema: trs_mas QC_hit: No # Query_time: 2.682208 Lock_time: 0.050374 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 4382 use trs_mas; SET timestamp=1666812303; select live0_.`ID` as ID1_46_, live0_.`CREATEDTIME` as CREATEDT2_46_, live0_.`CREATEDUSER` as CREATEDU3_46_, live0_.`CREATEDUSERID` as CREATEDU4_46_, live0_.`CREATEDUSERNICKNAME` as CREATEDU5_46_, live0_.`LASTMODIFIEDTIME` as LASTMODI6_46_, live0_.`LASTMODIFIEDUSER` as LASTMODI7_46_, live0_.`LASTMODIFIEDUSERID` as LASTMODI8_46_, live0_.`ATTACHEDPIC` as ATTACHED9_46_, live0_.`AUDIOBITRATE` as AUDIOBI10_46_, live0_.`AUDIOCHANNELS` as AUDIOCH11_46_, live0_.`AUDIOCODEC` as AUDIOCODEC12_46_, live0_.`AUDIOFORMAT` as AUDIOFO13_46_, live0_.`AUDIOSAMPLERATE` as AUDIOSA14_46_, live0_.`BITRATE` as BITRATE15_46_, live0_.`DEMUXER` as DEMUXER16_46_, live0_.`DURATION` as DURATION17_46_, live0_.`DURATIONOFDOUBLE` as DURATIO18_46_, live0_.`FPS` as FPS19_46_, live0_.`FRAMERATE` as FRAMERATE20_46_, live0_.`HEIGHT` as HEIGHT21_46_, live0_.`IFRAMES` as IFRAMES22_46_, live0_.`mediaType` as mediaType23_46_, live0_.`NBFRAMES` as NBFRAMES24_46_, live0_.`PIXELFORMAT` as PIXELFO25_46_, live0_.`ROTATE` as ROTATE26_46_, live0_.`VIDEOCODEC` as VIDEOCODEC27_46_, live0_.`VIDEOFORMAT` as VIDEOFO28_46_, live0_.`VIDEOLEVEL` as VIDEOLEVEL29_46_, live0_.`VIDEOPROFILE` as VIDEOPR30_46_, live0_.`WIDTH` as WIDTH31_46_, live0_.`IOSLIVENAME` as IOSLIVE32_46_, live0_.`LIVE_STATUS` as LIVE33_46_, live0_.`NAME` as NAME34_46_, live0_.`PREDICTION` as PREDICTION35_46_, live0_.`STATUS` as STATUS36_46_, live0_.`STREAMCOUNT` as STREAMC37_46_, live0_.`SUPPORTIOSDEVICE` as SUPPORT38_46_, live0_.`TITLE` as TITLE39_46_, live0_.`ENDTIME` as ENDTIME40_46_, live0_.`ISLIVEVIDEOONLIVE` as ISLIVEV41_46_, live0_.`ISSTARTFFMPEG` as ISSTART42_46_, live0_.`LIVE_DEVICE` as LIVE43_46_, live0_.`LIVEROLETYPE` as LIVEROL44_46_, live0_.`LIVE_TYPE` as LIVE45_46_, live0_.`LOGONAME` as LOGONAME46_46_, live0_.`ORIGINLIVEID` as ORIGINL47_46_, live0_.`PLAYCOUNT` as PLAYCOUNT48_46_, live0_.`PROBLEMATIC` as PROBLEM49_46_, live0_.`RECORDCATEGORYID` as RECORDC50_46_, live0_.`RECORDVIDEOID` as RECORDV51_46_, live0_.`RECORDVIDEOTITLE` as RECORDV52_46_, live0_.`RECORDING` as RECORDING53_46_, live0_.`REGION` as REGION54_46_, live0_.`RELATEDVIDEOID` as RELATED55_46_, live0_.`RELATEDVIDEOTITLE` as RELATED56_46_, live0_.`SRCTRANSPARAM` as SRCTRAN57_46_, live0_.`SRCTYPE` as SRCTYPE58_46_, live0_.`SRCURL` as SRCURL59_46_, live0_.`STARTTIME` as STARTTIME60_46_, live0_.`TIMING_END` as TIMING61_46_, live0_.`TIMING_START` as TIMING62_46_ from MAS_LIVE live0_ order by live0_.`ID` desc limit 1000; # User@Host: igi[igi] @ [172.27.7.23] # Thread_id: 2773253 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.627624 Lock_time: 0.050452 Rows_sent: 1 Rows_examined: 10 # Rows_affected: 0 Bytes_sent: 4782 use trs_hycloud_igi; SET timestamp=1666812303; select interview0_.id as id1_48_, interview0_.create_date as create_d2_48_, interview0_.modify_date as modify_d3_48_, interview0_.category as category4_48_, interview0_.channel_id as channel_5_48_, interview0_.interview_comment as intervie6_48_, interview0_.cr_user as cr_user7_48_, interview0_.delete_content as delete_c8_48_, interview0_.end_time as end_time9_48_, interview0_.enter_company as enter_c10_48_, interview0_.ex_link as ex_link11_48_, interview0_.ext_audio_url as ext_aud12_48_, interview0_.ext_video_url as ext_vid13_48_, interview0_.guests as guests14_48_, interview0_.interview_flag as intervi15_48_, interview0_.invalid_time as invalid16_48_, interview0_.is_auto_publish as is_auto17_48_, interview0_.is_need_advance as is_need18_48_, interview0_.is_need_item_memoir as is_need19_48_, interview0_.is_public as is_publ20_48_, interview0_.keyword as keyword21_48_, interview0_.live_url as live_ur22_48_, interview0_.online_company as online_23_48_, interview0_.oper_ip as oper_ip24_48_, interview0_.oper_user as oper_us25_48_, interview0_.propaganda as propaga26_48_, interview0_.publish_error_reason as publish27_48_, interview0_.publish_url as publish28_48_, interview0_.record_audio_url as record_29_48_, interview0_.record_video_url as record_30_48_, interview0_.site_id as site_id31_48_, interview0_.sort_order as sort_or32_48_, interview0_.sort_top_order as sort_to33_48_, interview0_.start_time as start_t34_48_, interview0_.status as status35_48_, interview0_.subtitle as subtitl36_48_, interview0_.title as title37_48_, interview0_.top_type as top_typ38_48_, interview0_.type as type39_48_ from trs_interview interview0_ where (interview0_.site_id in (48)) and interview0_.is_public=1 and interview0_.status=0 order by interview0_.start_time desc limit 1; # User@Host: ids[ids] @ [172.27.9.48] # Thread_id: 2773707 Schema: trs_ids QC_hit: No # Query_time: 2.767730 Lock_time: 0.000157 Rows_sent: 86 Rows_examined: 172 # Rows_affected: 0 Bytes_sent: 21507 use trs_ids; SET timestamp=1666812303; select this_.`TABLENAME` as TABLENAME1_36_0_, this_.`FIELDNAME` as FIELDNAME2_36_0_, this_.`DISPLAYNAME` as DISPLAYN3_36_0_, this_.`DESCRIPTION` as DESCRIPT4_36_0_, this_.`MINLENGTH` as MINLENGTH5_36_0_, this_.`MAXLENGTH` as MAXLENGTH6_36_0_, this_.`STATUS` as STATUS7_36_0_, this_.`DATATYPE` as DATATYPE8_36_0_, this_.`NEEDSYNC` as NEEDSYNC9_36_0_, this_.`NEEDHEAVYQUERY` as NEEDHEA10_36_0_, this_.`LASTMODIFIEDUSER` as LASTMOD11_36_0_, this_.`LASTMODIFIEDTIME` as LASTMOD12_36_0_, this_.`HBMDEFINITION` as HBMDEFI13_36_0_, this_.`UNIQUE` as UNIQUE14_36_0_, this_.`NOTNULL` as NOTNULL15_36_0_, this_.`VALIDATORTYPE` as VALIDAT16_36_0_, this_.`FROMELEMENTTYPE` as FROMELE17_36_0_, this_.`FORMELEMENTDEFAULTVALUES` as FORMELE18_36_0_, this_.`FORMELEMENTOPTIONVALUES` as FORMELE19_36_0_, this_.`NEEDIMPORT` as NEEDIMPORT20_36_0_, this_.`BASICATTRIBUTE` as BASICAT21_36_0_, this_.`NEEDAUDIT` as NEEDAUDIT22_36_0_, this_.`NEEDEXPORT` as NEEDEXPORT23_36_0_, this_.`NEEDSEARCH` as NEEDSEARCH24_36_0_, this_.`DEFAULTREADPERMIT` as DEFAULT25_36_0_, this_.`DISPLAYORDER` as DISPLAY26_36_0_, this_.`SEARCHFORMELEMENTTYPE` as SEARCHF27_36_0_, this_.`DISPLAYINREGPAGE` as DISPLAY28_36_0_, this_.`DISPLAYINSELFPAGE` as DISPLAY29_36_0_, this_.`DISPLAYINADMINREADPAGE` as DISPLAY30_36_0_, this_.`DISPLAYINADMINADDPAGE` as DISPLAY31_36_0_, this_.`DISPLAYINADMINEDITPAGE` as DISPLAY32_36_0_, this_.`LENGTH` as LENGTH33_36_0_, this_.`DISPLAYINCOAPPAPPLY` as DISPLAY34_36_0_, this_.`DEVELOPERNECESSARY` as DEVELOP35_36_0_, this_.`SYSTEMWRITE` as SYSTEMW36_36_0_, this_.`SENSITIVE` as SENSITIVE37_36_0_, this_.`SENDTYPE` as SENDTYPE38_36_0_, this_.`REGEXEXPRESSION` as REGEXEX39_36_0_, this_.`VALUEGENERATORCLASS` as VALUEGE40_36_0_, this_.`CHECKFILTERWORD` as CHECKFI41_36_0_, this_.`INTEGRITYWEIGHT` as INTEGRI42_36_0_, this_.`SUFFIX` as SUFFIX43_36_0_, this_.`NEEDACTIVATE` as NEEDACT44_36_0_, this_.`BOCONSTRUCTORDEFINITIONID` as BOCONST45_36_0_, this_.`NEEDBATCHSEARCH` as NEEDBAT46_36_0_ from `IDSCUSTOMFIELD` this_ where this_.`TABLENAME`='User' order by this_.`DISPLAYORDER` asc limit 10000; # User@Host: igi[igi] @ [172.27.7.22] # Thread_id: 2773312 Schema: trs_hycloud_igi QC_hit: No # Query_time: 2.698749 Lock_time: 0.050396 Rows_sent: 5 Rows_examined: 63700 # Rows_affected: 0 Bytes_sent: 17045 use trs_hycloud_igi; SET timestamp=1666812303; select govmsgbox0_.id as id1_31_, govmsgbox0_.create_date as create_d2_31_, govmsgbox0_.modify_date as modify_d3_31_, govmsgbox0_.accept_time as accept_t4_31_, govmsgbox0_.address as address5_31_, govmsgbox0_.agent_user as agent_us6_31_, govmsgbox0_.app_id as app_id7_31_, govmsgbox0_.arepublic as arepubli8_31_, govmsgbox0_.area as area9_31_, govmsgbox0_.attachs as attachs10_31_, govmsgbox0_.cardid as cardid11_31_, govmsgbox0_.cardtype as cardtyp12_31_, govmsgbox0_.career as career13_31_, govmsgbox0_.city as city14_31_, govmsgbox0_.content as content15_31_, govmsgbox0_.count_remain_day_start_time as count_r16_31_, govmsgbox0_.crip as crip17_31_, govmsgbox0_.cruser as cruser18_31_, govmsgbox0_.dealdeptid as dealdep19_31_, govmsgbox0_.dealdeptname as dealdep20_31_, govmsgbox0_.dealuserid as dealuse21_31_, govmsgbox0_.delay_apply_time as delay_a22_31_, govmsgbox0_.delay_flag as delay_f23_31_, govmsgbox0_.delete_reason as delete_24_31_, govmsgbox0_.district_code as distric25_31_, govmsgbox0_.doc_desc as doc_des26_31_, govmsgbox0_.doc_id as doc_id27_31_, govmsgbox0_.doc_username as doc_use28_31_, govmsgbox0_.email as email29_31_, govmsgbox0_.examine_dept_id as examine30_31_, govmsgbox0_.examine_user_id as examine31_31_, govmsgbox0_.external_id as externa32_31_, govmsgbox0_.finishtime as finisht33_31_, govmsgbox0_.forward_dept_id as forward34_31_, govmsgbox0_.forward_user_name as forward35_31_, govmsgbox0_.govmsgbox_desc as govmsgb36_31_, govmsgbox0_.govmsgboxflag as govmsgb37_31_, govmsgbox0_.govmsgboxtype as govmsgb38_31_, govmsgbox0_.govmsgboxtype1 as govmsgb39_31_, govmsgbox0_.handle_time as handle_40_31_, govmsgbox0_.htmlcontent as htmlcon41_31_, govmsgbox0_.initial_app_id as initial42_31_, govmsgbox0_.initial_is_public as initial43_31_, govmsgbox0_.initial_site_id as initial44_31_, govmsgbox0_.is_agent as is_agen45_31_, govmsgbox0_.is_anonymous as is_anon46_31_, govmsgbox0_.is_anonymous_letter as is_anon47_31_, govmsgbox0_.isapply as isapply48_31_, govmsgbox0_.is_auto_reply as is_auto49_31_, govmsgbox0_.is_back as is_back50_31_, govmsgbox0_.is_blacklisted as is_blac51_31_, govmsgbox0_.is_deadline as is_dead52_31_, govmsgbox0_.is_deleted as is_dele53_31_, govmsgbox0_.is_forward as is_forw54_31_, govmsgbox0_.is_magor_msg as is_mago55_31_, govmsgbox0_.ispublic as ispubli56_31_, govmsgbox0_.is_reassign as is_reas57_31_, govmsgbox0_.is_rejected as is_reje58_31_, govmsgbox0_.isreply as isreply59_31_, govmsgbox0_.is_supervise_flag as is_supe60_31_, govmsgbox0_.is_union_dept_all_reply as is_unio61_31_, govmsgbox0_.is_wait_do_turn_multi_apply as is_wait62_31_, govmsgbox0_.last_cooperate_targe_typ as last_co63_31_, govmsgbox0_.last_reply_time as last_re64_31_, govmsgbox0_.location as locatio65_31_, govmsgbox0_.native_place as native_66_31_, govmsgbox0_.nick_name as nick_na67_31_, govmsgbox0_.open_scope as open_sc68_31_, govmsgbox0_.operip as operip69_31_, govmsgbox0_.operuser as operuse70_31_, govmsgbox0_.parent_id as parent_71_31_, govmsgbox0_.phone as phone72_31_, govmsgbox0_.province as provinc73_31_, govmsgbox0_.publictime as publict74_31_, govmsgbox0_.publish_error_reason as publish75_31_, govmsgbox0_.publish_url as publish76_31_, govmsgbox0_.query_number as query_n77_31_, govmsgbox0_.query_pwd as query_p78_31_, govmsgbox0_.region as region79_31_, govmsgbox0_.rejected_reason as rejecte80_31_, govmsgbox0_.remind as remind81_31_, govmsgbox0_.score as score82_31_, govmsgbox0_.setting_selected as setting83_31_, govmsgbox0_.sex as sex84_31_, govmsgbox0_.signvalue as signval85_31_, govmsgbox0_.siteid as siteid86_31_, govmsgbox0_.smart_record_id as smart_r87_31_, govmsgbox0_.smart_turn_data_id as smart_t88_31_, govmsgbox0_.smart_turn_flag as smart_t89_31_, govmsgbox0_.smart_turn_result as smart_t90_31_, govmsgbox0_.status as status91_31_, govmsgbox0_.street as street92_31_, govmsgbox0_.submit_time as submit_93_31_, govmsgbox0_.thumb_status as thumb_s94_31_, govmsgbox0_.thumbnails as thumbna95_31_, govmsgbox0_.tidy_status as tidy_st96_31_, govmsgbox0_.time_left as time_le97_31_, govmsgbox0_.title as title98_31_, govmsgbox0_.toassign_time as toassig99_31_, govmsgbox0_.toexamine_time as toexam100_31_, govmsgbox0_.toreply_time as torepl101_31_, govmsgbox0_.total_days as total_102_31_, govmsgbox0_.trash_time as trash_103_31_, govmsgbox0_.username as userna104_31_ from trs_govmsgbox govmsgbox0_ where (govmsgbox0_.siteid in (48)) and (govmsgbox0_.app_id in (9)) and govmsgbox0_.ispublic=1 and govmsgbox0_.arepublic=1 and govmsgbox0_.parent_id=0 and govmsgbox0_.status=7 order by govmsgbox0_.submit_time desc limit 5; # Time: 221026 20:06:33 # User@Host: ipm[ipm] @ [172.27.6.71] # Thread_id: 1173216 Schema: trs_hycloud_ipm QC_hit: No # Query_time: 2.563619 Lock_time: 0.000000 Rows_sent: 0 Rows_examined: 0 # Rows_affected: 0 Bytes_sent: 11 use trs_hycloud_ipm; SET timestamp=1666814793; commit; # Time: 221027 0:09:17 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2775622 Schema: trs_hycloud_msg QC_hit: No # Query_time: 4.824891 Lock_time: 0.000443 Rows_sent: 1 Rows_examined: 23368 # Rows_affected: 0 Bytes_sent: 59 use trs_hycloud_msg; SET timestamp=1666829357; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '927' , '934' , '935' , '1183' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '528' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '569' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-05-11 19:18:48' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '528' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # Time: 221027 0:21:55 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2775622 Schema: trs_hycloud_msg QC_hit: No # Query_time: 7.405037 Lock_time: 0.000635 Rows_sent: 1 Rows_examined: 5460 # Rows_affected: 0 Bytes_sent: 57 SET timestamp=1666830115; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '570' , '577' , '578' , '580' , '583' , '586' , '746' , '1174' , '1536' , '1537' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '170' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '305' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-04-08 10:32:51' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '170' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids; # Time: 221027 0:24:08 # User@Host: msg[msg] @ [172.27.6.20] # Thread_id: 2775622 Schema: trs_hycloud_msg QC_hit: No # Query_time: 2.092562 Lock_time: 0.000559 Rows_sent: 1 Rows_examined: 150596 # Rows_affected: 0 Bytes_sent: 60 SET timestamp=1666830248; select count(*) from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE ( ( (r.receiver_type = 203 and r.receiver_id in ( '889' , '894' , '899' , '902' , '905' , '1190' , '1191' , '1192' , '1193' , '1447' , '1703' , '2' ) ) or (r.receiver_type = 204 and r.receiver_id in ( '712' ) ) or (r.receiver_type = 201 and r.receiver_id in ( '13' , '851' ) ) ) ) and (d.notice_status = 'published' or d.notice_status is null) and d.pub_time >= '2022-05-15 11:20:18' and not exists ( SELECT rd.id from msg_reader rd WHERE rd.reader_id in ( '712' ) and rd.reader_type = 204 and d.id = rd.msg_id ) ) msg_ids;
總結
到此這篇關于Java實現格式化打印慢SQL日志的文章就介紹到這了,更多相關Java格式化打印慢SQL日志內容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
基于Comparator對象集合實現多個條件按照優(yōu)先級的比較
這篇文章主要介紹了基于Comparator對象集合實現多個條件按照優(yōu)先級的比較,具有很好的參考價值,希望對大家有所幫助。如有錯誤或未考慮完全的地方,望不吝賜教2021-07-07SpringBoot2整合Ehcache組件實現輕量級緩存管理
EhCache是一個純Java的進程內緩存框架,具有快速、上手簡單等特點,是Hibernate中默認的緩存提供方。本文講述下SpringBoot2 整合Ehcache組件的步驟2021-06-06