[JAVA] Java实现格式化打印慢SQL日志的方法详解

1845 0
王子 2022-11-8 16:56:44 | 显示全部楼层 |阅读模式
目录

    前言一、主要作用:二、代码实现:
      2.1 单条记录类(LogStatement ):2.2 逻辑处理类(MySQLSlowLogParser):
        2.2.1 成员变量2.2.2 main方法:2.2.3 parse方法:2.2.4 covertAndAddStatement方法:2.2.5 getResult方法:
      2.3完整代码
    总结


前言

日常开发中,我们经常会查看慢SQL日志,来确定哪些SQL语句需要优化、哪些表需要加索引等。但是慢SQL日志文件的格式特别不便于阅读,一条SQL记录可能会占很多行,而且还有很多空行,所以用代码实现其格式化可以提供适当的便利。
(这是我实习的第一次写代码的任务,所以记录一下)
这里先看看慢SQL文件的内容,可以看出一条记录的篇幅太大,特别不方便阅读。


再看看格式化后的效果,明显能看出好了很多,并且按SQL的部分语句排序,将相似的SQL放到一起,更能体现哪些表的哪些操作形成的慢SQL。



一、主要作用:

1.将单条记录打印为单行
2.仅打印主要字段即可(时间、用户、主机名、线程ID、操作的数据库、SQL执行时间、SQL语句查询返回的行数和检索的行数、SQL语句)

二、代码实现:

主要是根据慢SQL日志单条记录的特点,进行字符串分割,提取所需字段来实现

2.1 单条记录类(LogStatement ):
  1. public class LogStatement {
  2.     private String date;        //日期
  3.     private String time;        //时间
  4.     private String user;        //用户
  5.     private String host;        //主机名
  6.     private String TheadId;        //线程ID
  7.     private String schema;        //查询的数据库
  8.     private String queryTime;        //查询时间
  9.     private String row_sent;        //返回的行数
  10.     private String row_examined;//检索的行数
  11.     private String sql;                        //SQL语句
  12.     private String orderFlag;        //排序字段
  13.     @Override                                //格式化打印语句
  14.     public String toString() {       
  15.         return  date+"-"+time+" "+user+"@"+host+" thead_id:"+TheadId+" "+schema+" "+queryTime
  16.                 +"s Rows_sent/Rows_examined:"+row_sent+"/"+row_examined+"————"+sql;
  17.     }
  18.         //构造方法,可根据实际情况生成其他的构造方法
  19.     public LogStatement(String date, String time) {
  20.         this.date = date;
  21.         this.time = time;
  22.     }
  23.         //后面都是getter和setter
  24.     public String getDate() {
  25.         return date;
  26.     }
  27.     public void setDate(String date) {
  28.         this.date = date;
  29.     }
  30.     public String getTime() {
  31.         return time;
  32.     }
  33.     public void setTime(String time) {
  34.         this.time = time;
  35.     }
  36.     public String getUser() {
  37.         return user;
  38.     }
  39.     public void setUser(String user) {
  40.         this.user = user;
  41.     }
  42.     public String getHost() {
  43.         return host;
  44.     }
  45.     public void setHost(String host) {
  46.         this.host = host;
  47.     }
  48.     public String getTheadId() {
  49.         return TheadId;
  50.     }
  51.     public void setTheadId(String theadId) {
  52.         TheadId = theadId;
  53.     }
  54.     public String getSchema() {
  55.         return schema;
  56.     }
  57.     public void setSchema(String schema) {
  58.         this.schema = schema;
  59.     }
  60.     public String getQueryTime() {
  61.         return queryTime;
  62.     }
  63.     public void setQueryTime(String queryTime) {
  64.         this.queryTime = queryTime;
  65.     }
  66.     public String getRow_sent() {
  67.         return row_sent;
  68.     }
  69.     public void setRow_sent(String row_sent) {
  70.         this.row_sent = row_sent;
  71.     }
  72.     public String getRow_examined() {
  73.         return row_examined;
  74.     }
  75.     public void setRow_examined(String row_examined) {
  76.         this.row_examined = row_examined;
  77.     }
  78.     public String getSql() {
  79.         return sql;
  80.     }
  81.     public void setSql(String sql) {
  82.         this.sql = sql;
  83.     }
  84.     public String getOrderFlag() {
  85.         return orderFlag;
  86.     }
  87.     public void setOrderFlag(String orderFlag) {
  88.         this.orderFlag = orderFlag;
  89.     }
  90. }
复制代码
2.2 逻辑处理类(MySQLSlowLogParser):


2.2.1 成员变量
  1.         private static int totalSlowSQL;    //总的慢SQL条数
  2.         //后面截取SQL的排序字段时,需要根据SQL类型定义不同的分割符进行截取
  3.     private static final String INSERT_STM = "insert";
  4.     private static final String UPDATE_STM = "update";
  5.     private static final String SELECT_STM = "select";
  6.     private static final List<String> records = new ArrayList<>();    //存单条记录的集合
  7.     private static final List<LogStatement> logs = new ArrayList<>();   //格式化后的记录
复制代码
2.2.2 main方法:
  1.         public static void main(String[] args) {
  2.         Scanner scan = new Scanner(System.in);
  3.         System.out.println("请输入要解析的 MySQL/MariaDB 慢SQL的全路径:");
  4.         if (scan.hasNextLine()) {
  5.             String filePath = scan.nextLine();  //读取文件路径
  6.             parse(filePath);    //解析对应文件
  7.         }
  8.         getResult();    //提取每条记录的关键信息
  9.         sortResult();       //将结果进行排序
  10.         printResult();      //打印结果
  11.     }
复制代码
2.2.3 parse方法:

作用是解析文件,读取每一行的内容,合并单条记录的内容,把多行合并为一行,并存入单条记录的集合records。例如第一条慢SQL记录会转为两条记录存入:
  1. # Time: 221026 0:19:59
复制代码
  1. 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日志中会出现多条记录为同一时间执行的,方便后面为这种情况的记录的时间赋值(文章末尾我会将我的慢SQL文件的完整内容附上,便于理解)
  1.         private static void parse(String filePath) {
  2.         System.out.println("开始解析:" + filePath);
  3.         //声明流对象
  4.         InputStream is = null;
  5.         Reader reader = null;
  6.         BufferedReader bufferedReader = null;
  7.         try {
  8.             //以缓冲流的的方式读取数据
  9.             is = new FileInputStream(new File(filePath));
  10.             reader = new InputStreamReader(is, "utf-8");
  11.             bufferedReader = new BufferedReader(reader);
  12.             String singleSQL = "";      //用来存完整的单条慢SQL记录
  13.             String line;        //用来存每一行读取的数据
  14.                         //根据慢日志文件的单条记录的特点进行处理
  15.             while ((line = bufferedReader.readLine()) != null) {
  16.                 if (line.startsWith("# Time:")) {   //当前行以“# Time:”开头的情况
  17.                     covertAndAddStatement(singleSQL);     //那么之前的语句为一条完整记录,将singleSQL进行转换
  18.                     while(line.contains("  "))      //将多个空格保留为1个
  19.                         line = line.replace("  "," ");
  20.                     records.add(line);              //直接将当前行的时间存入记录的集合,因为有的记录共享一个时间
  21.                     singleSQL = "";                 //处理完前一条后,要重新拼记录,令singleSQL为空
  22.                 }  else if (line.startsWith("# User@Host")){    //当前行以“# User@Host”开头的情况
  23.                     covertAndAddStatement(singleSQL);     //那么之前的语句也为一条完整记录,将singleSQL进行转换
  24.                     singleSQL = line;               //当前行作为新的记录的开头
  25.                 }else {
  26.                     singleSQL +=  line + " ";       //不满足前两个,则直接把当前行加入,作为单条记录的一部分
  27.                 }                                   //末尾加空格是为了将两行之间以空格隔开
  28.             }
  29.             //还要处理最后一句,因为最后一条记录的后面没有“# Time:”或“# User@Host”,while循环不会执行到最后一句
  30.             covertAndAddStatement(singleSQL);
  31.         } catch (IOException e) {
  32.             System.err.println("Error:" + e);
  33.         } finally { //释放资源
  34.             try {if (bufferedReader != null) bufferedReader.close();} catch (IOException e) { System.err.println("Error:" + e); }
  35.             try {if (reader != null) reader.close();} catch (IOException e) { System.err.println("Error:" + e); }
  36.             try {if (is != null) is.close();} catch (IOException e) { System.err.println("Error:" + e); }
  37.         }
  38.     }
复制代码
2.2.4 covertAndAddStatement方法:

作用是将records中的记录进行初步的格式化,将多个空格替换为一个,并将“#”号去掉。
  1.         private static void covertAndAddStatement(String statement){
  2.         if(statement.equals(""))    //空字符串直接不处理
  3.             return;
  4.         //去掉“#”号
  5.         statement = statement.replace("#"," ");
  6.         //多个空格替换为1个,因为文件中两个单词之间的空格个能不止一个,
  7.         //就算将多行合并为一行,也会有多个空格的存在
  8.         while(statement.contains("  "))
  9.             statement = statement.replace("  "," ");
  10.         records.add(statement);
  11.     }
复制代码
2.2.5 getResult方法:

主要作用是将格式化后的单条记录,提取关键字段,用对象封装,并存入结果集
  1.         private static void getResult(){    //遍历单条记录,处理结果,加入结果集
  2.         String date = "";       //有多条记录的时间相同,所以要把时间放循环体外,方便为多条记录赋值
  3.         String time = "";
  4.         for (String record : records) {
  5.             if (record.contains("# Time")){ //更新即将处理的记录的时间
  6.                 String[] tmp = record.split(" ");
  7.                 date = tmp[2];
  8.                 time = tmp[3];
  9.                 if (time.length()<8)    //长度不足用0补充占位
  10.                     time = "0"+time;    //例如: 3:24:48替换为03:24:48
  11.                 continue;
  12.             }
  13.             LogStatement log = new LogStatement(date,time);
  14.             totalSlowSQL ++;    //慢SQL计数加一
  15.             //每条记录都有timestamp,按其分割字符串更快找到SQL语句
  16.             String[] tmp = record.plit("timestamp");
  17.             //前半段可以得到相关信息
  18.             getTags(log, tmp[0]);
  19.             //后半段可以得到SQL
  20.             getSQL(log, tmp[1]);
  21.             logs.add(log);
  22.         }
  23.     }
复制代码
2.2.2.5 getTags方法:
主要作用是提取除SQL以外的所需字段,封装到对象中
经过前面的处理,tags数组的内容形式大致如下,根据字段所在位置,就可以得到想要的字段
  1. 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", ...}
复制代码
  1.         private static void getTags(LogStatement log, String info){
  2.         String[] tags = info.split(" ");
  3.         //用户
  4.         log.setUser(tags[2]);
  5.         //主机
  6.         log.setHost(tags[4]);
  7.         //Threadid
  8.         log.setTheadId(tags[6]);
  9.         //操作的数据库
  10.         log.setSchema(tags[8]);
  11.         //查询时间
  12.         log.setQueryTime(tags[12]);
  13.         //执行成功后返回的行数
  14.         log.setRow_sent(tags[16]);
  15.         //检索的行数
  16.         log.setRow_examined(tags[18]);
  17.     }
复制代码
2.2.2.6
作用是获取SQL语句,封装到对象
下面方法中的statemen的内容形式大致如下,截取第一个分号后的语句则可以得到SQL语句
  1. statement="=1666743599; select count(* from (select DISTINCT d.id from msg_detail d join msg_receiver r on r.msg_id = d.id WHERE";
复制代码
  1.         private static void getSQL(LogStatement log, String statement){
  2.         //第一个分号后就是SQL,所以从第一个分号出现的位置+1分割字符串就可以得到SQL
  3.         int subIndex = statement.indexOf(';');
  4.         String sql = statement.substring(subIndex+1).trim();    //提取SQL
  5.         log.setSql(sql);
  6.         getOrderFlag(log, sql);
  7.     }
复制代码
2.2.2.7 getOrderFlag方法:
主要作用是提取排序字段,装入对象中,提取方式是根据不同种类SQL语句的特点,截取部分字段。
  1.         private static void getOrderFlag(LogStatement log, String sql){ //提取部分SQL作为排序字段
  2.         sql = sql.toLowerCase();   //先转小写,避免大小写不统一的情况
  3.         int index = sql.indexOf(";");   //先令sql分割点为末尾
  4.         if (sql.startsWith(INSERT_STM)){    //根据sql语句来定分割点
  5.             index = !sql.contains("values") ? index : sql.indexOf("values");
  6.         }else if (sql.startsWith(UPDATE_STM)){
  7.             index = !sql.contains("set") ? index : sql.indexOf("set");
  8.         }else if (sql.startsWith(SELECT_STM)){
  9.             index = !sql.contains("where") ? index : sql.indexOf("where");
  10.         }
  11.         log.setOrderFlag(sql.substring(0, index));  //将截取后的sql语句设置为排序字段
  12.     }
复制代码
2.2.2.8 sortResult方法:
作用是将结果集根据排序字段排序
  1.         private static void sortResult(){   // 排序方法
  2.         logs.sort(new Comparator<LogStatement>() {
  3.             @Override
  4.             public int compare(LogStatement o1, LogStatement o2) {
  5.                 return o1.getOrderFlag().compareTo(o2.getOrderFlag());
  6.             }
  7.         });
  8.     }
复制代码
2.2.2.9 打印结果:
  1.         private static void printResult(){  //打印结果
  2.         System.out.println("慢总SQL条数:" + "\t" + totalSlowSQL);
  3.         System.out.println();
  4.         for (LogStatement log : logs) {
  5.             System.out.println(log);
  6.         }
  7.     }
复制代码
2.3完整代码
  1. import java.io.*;
  2. import java.util.ArrayList;
  3. import java.util.Comparator;
  4. import java.util.List;
  5. import java.util.Scanner;
  6. public class MySQLSlowLogParser {
  7.     private static int totalSlowSQL;    //总的慢SQL条数
  8.     private static final String INSERT_STM = "insert";
  9.     private static final String UPDATE_STM = "update";
  10.     private static final String SELECT_STM = "select";
  11.     private static final List<String> records = new ArrayList<>();    //存单条记录的集合
  12.     private static final List<LogStatement> logs = new ArrayList<>();   //存筛选字段后的记录
  13.     public static void main(String[] args) {
  14.         Scanner scan = new Scanner(System.in);
  15.         System.out.println("请输入要解析的 MySQL/MariaDB 慢SQL的全路径:");
  16.         if (scan.hasNextLine()) {
  17.             String filePath = scan.nextLine();  //读取文件路径
  18. //            System.out.println(filePath);
  19.             parse(filePath);    //解析对应文件
  20.         }
  21.         getResult();    //提取每条记录的关键信息
  22.         sortResult();       //将结果进行排序
  23.         printResult();      //打印结果
  24.     }
  25.     private static void parse(String filePath) {
  26.         System.out.println("开始解析:" + filePath);
  27.         InputStream is = null;
  28.         Reader reader = null;
  29.         BufferedReader bufferedReader = null;
  30.         try {
  31.             //以缓冲流的的方式读取数据
  32.             is = new FileInputStream(new File(filePath));
  33.             reader = new InputStreamReader(is, "utf-8");
  34.             bufferedReader = new BufferedReader(reader);
  35.             String singleSQL = "";      //用来存完整的单条慢SQL记录
  36.             String line;
  37.             while ((line = bufferedReader.readLine()) != null) {
  38.                 if (line.startsWith("# Time:")) {   //当前行以“# Time:”开头的情况
  39.                     covertAndAddStatement(singleSQL);     //那么之前的语句为一条完整记录,将singleSQL进行转换
  40.                     while(line.contains("  "))      //将多个空格保留为1个
  41.                         line = line.replace("  "," ");
  42.                     records.add(line);              //直接将当前行的时间存入记录的集合,因为有的记录共享一个时间
  43.                     singleSQL = "";                 //处理完前一条后,要重新拼记录,令singleSQL为空
  44.                 }  else if (line.startsWith("# User@Host")){    //当前行以“# User@Host”开头的情况
  45.                     covertAndAddStatement(singleSQL);     //那么之前的语句也为一条完整记录,将singleSQL进行转换
  46.                     singleSQL = line;               //当前行作为新的记录的开头
  47.                 }else {
  48.                     singleSQL +=  line + " ";       //不满足前两个,则直接把当前行加入,作为单条记录的一部分
  49.                 }                                   //末尾加空格是为了将两行之间以空格隔开
  50.             }
  51.             //还要处理最后一句,因为最后一条记录的后面没有“# Time:”或“# User@Host”,while循环不会执行到最后一句
  52.             covertAndAddStatement(singleSQL);
  53.         } catch (IOException e) {
  54.             System.err.println("Error:" + e);
  55.         } finally { //释放资源
  56.             try {if (bufferedReader != null) bufferedReader.close();} catch (IOException e) { System.err.println("Error:" + e); }
  57.             try {if (reader != null) reader.close();} catch (IOException e) { System.err.println("Error:" + e); }
  58.             try {if (is != null) is.close();} catch (IOException e) { System.err.println("Error:" + e); }
  59.         }
  60.     }
  61.     private static void covertAndAddStatement(String statement){
  62.         if(statement.equals(""))    //空字符串直接不处理
  63.             return;
  64.         //去掉“#”号
  65.         statement = statement.replace("#"," ");
  66.         //多个空格替换为1个
  67.         while(statement.contains("  "))
  68.             statement = statement.replace("  "," ");
  69.         records.add(statement);
  70.     }
  71.     private static void getResult(){    //遍历单条记录,处理结果,加入结果集
  72.         String date = "";       //有多条记录的时间相同,所以要把时间放循环体外,方便为多条记录赋值
  73.         String time = "";
  74.         for (String record : records) {
  75.             if (record.contains("# Time")){ //若当前的record为时间,则更新即将处理的记录的时间
  76.                 String[] tmp = record.split(" ");
  77.                 date = tmp[2];
  78.                 time = tmp[3];
  79.                 if (time.length()<8)    //长度不足用0补充占位
  80.                     time = "0"+time;    //例如: 3:24:48替换为03:24:48
  81.                 continue;
  82.             }
  83.             LogStatement log = new LogStatement(date,time);
  84.             totalSlowSQL ++;    //慢SQL计数加一
  85.             //每条记录都有timestamp,按其分割字符串更快找到SQL语句
  86.             String[] tmp = record.split("timestamp");
  87.             //前半段可以得到相关信息
  88.             getTags(log, tmp[0]);
  89.             //后半段可以得到SQL
  90.             getSQL(log, tmp[1]);
  91.             logs.add(log);
  92.         }
  93.     }
  94.     private static void getTags(LogStatement log, String info){
  95.         String[] tags = info.split(" ");
  96.         //用户
  97.         log.setUser(tags[2]);
  98.         //主机
  99.         log.setHost(tags[4]);
  100.         //Threadid
  101.         log.setTheadId(tags[6]);
  102.         //操作的数据库
  103.         log.setSchema(tags[8]);
  104.         //查询时间
  105.         log.setQueryTime(tags[12]);
  106.         //执行成功后返回的行数
  107.         log.setRow_sent(tags[16]);
  108.         //检索的行数
  109.         log.setRow_examined(tags[18]);
  110.     }
  111.     private static void getSQL(LogStatement log, String statement){
  112.         //第一个分号后就是SQL,所以从第一个分号出现的位置+1分割字符串就可以得到SQL
  113.         int subIndex = statement.indexOf(';');
  114.         String sql = statement.substring(subIndex+1).trim();    //提取SQL
  115.         log.setSql(sql);
  116.         getOrderFlag(log, sql);
  117.     }
  118.     private static void getOrderFlag(LogStatement log, String sql){ //提取部分SQL作为排序字段
  119.         sql = sql.toLowerCase);   //先转小写
  120.         int index = sql.indexOf(";");   //先令sql分割点为末尾
  121.         if (sql.startsWith(INSERT_STM)){    //根据sql语句来定分割点
  122.             index = !sql.contains("values") ? index : sql.indexOf("values");
  123.         }else if (sql.startsWith(UPDATE_STM)){
  124.             index = !sql.contains("set") ? index : sql.indexOf("set");
  125.         }else if (sql.startsWith(SELECT_STM)){
  126.             index = !sql.contains("where") ? index : sql.indexOf("where");
  127.         }
  128.         log.setOrderFlag(sql.substring(0, index));  //将截取后的sql语句设置为排序字段
  129.     }
  130.     private static void sortResult(){   // 排序方法
  131.         logs.sort(new Comparator<LogStatement>() {
  132.             @Override
  133.             public int compare(LogStatement o1, LogStatement o2) {
  134.                 return o1.getOrderFlag().compareTo(o2.getOrderFlag());
  135.             }
  136.         });
  137.     }
  138.     private static void printResult(){  //打印结果
  139.         System.out.println("慢总SQL条数:" + "\t" + totalSlowSQL);
  140.         System.out.println();
  141.         for (LogStatement log : logs) {
  142.             System.out.println(log);
  143.         }
  144.     }
  145. }
复制代码
最后附上SQL文件的内容,便于有兴趣的小伙伴进行调试,可以直接新建txt文件,赋值粘贴进去,保存后。调试时输入该文件的全路径即可。
从下面的内容也可以看出,MySQL自动生成的慢SQL文件多么难以阅读
  1. # Time: 221026  0:19:59
  2. # User@Host: msg[msg] @  [172.27.6.20]
  3. # Thread_id: 2766408  Schema: trs_hycloud_msg  QC_hit: No
  4. # Query_time: 5.192931  Lock_time: 0.000422  Rows_sent: 1  Rows_examined: 150436
  5. # Rows_affected: 0  Bytes_sent: 60
  6. use trs_hycloud_msg;
  7. SET timestamp=1666743599;
  8. select count(*)
  9.         from
  10.         (select DISTINCT d.id
  11.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  12.         WHERE
  13.         (
  14.          (  
  15.             (r.receiver_type = 203
  16.             and r.receiver_id in
  17.              (  
  18.                 '889'
  19.              ,
  20.                 '894'
  21.              ,
  22.                 '899'
  23.              ,
  24.                 '902'
  25.              ,
  26.                 '905'
  27.              ,
  28.                 '1190'
  29.              ,
  30.                 '1191'
  31.              ,
  32.                 '1192'
  33.              ,
  34.                 '1193'
  35.              ,
  36.                 '1447'
  37.              ,
  38.                 '1703'
  39.              ,
  40.                 '2'
  41.              )
  42.             )
  43.          or
  44.             (r.receiver_type = 204
  45.             and r.receiver_id in
  46.              (  
  47.                 '712'
  48.              )
  49.             )
  50.          or
  51.             (r.receiver_type = 201
  52.             and r.receiver_id in
  53.              (  
  54.                 '13'
  55.              ,
  56.                 '851'
  57.              )
  58.             )
  59.          )
  60.         )
  61.         and (d.notice_status = 'published' or d.notice_status is null)
  62.             and d.pub_time >= '2022-05-15 11:20:18'
  63.         and not exists (
  64.         SELECT
  65.         rd.id
  66.         from msg_reader rd
  67.         WHERE
  68.         rd.reader_id in
  69.          (  
  70.             '712'
  71.          )
  72.         and rd.reader_type = 204
  73.         and d.id = rd.msg_id
  74.         )
  75.         ) msg_ids;
  76. # Time: 221026  0:36:21
  77. # User@Host: msg[msg] @  [172.27.6.20]
  78. # Thread_id: 2766515  Schema: trs_hycloud_msg  QC_hit: No
  79. # Query_time: 2.585773  Lock_time: 0.004551  Rows_sent: 1  Rows_examined: 5360
  80. # Rows_affected: 0  Bytes_sent: 56
  81. SET timestamp=1666744581;
  82. select count(*)
  83.         from
  84.         (select DISTINCT d.id
  85.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  86.         WHERE
  87.         (
  88.          (  
  89.             (r.receiver_type = 203
  90.             and r.receiver_id in
  91.              (  
  92.                 '570'
  93.              ,
  94.                 '577'
  95.              ,
  96.                 '578'
  97.              ,
  98.                 '580'
  99.              ,
  100.                 '583'
  101.              ,
  102.                 '586'
  103.              ,
  104.                 '746'
  105.              ,
  106.                 '1174'
  107.              ,
  108.                 '1536'
  109.              ,
  110.                 '1537'
  111.              ,
  112.                 '2'
  113.              )
  114.             )
  115.          or
  116.             (r.receiver_type = 204
  117.             and r.receiver_id in
  118.              (  
  119.                 '170'
  120.              )
  121.             )
  122.          or
  123.             (r.receiver_type = 201
  124.             and r.receiver_id in
  125.              (  
  126.                 '305'
  127.              )
  128.             )
  129.          )
  130.         )
  131.         and (d.notice_status = 'published' or d.notice_status is null)
  132.             and d.pub_time >= '2022-04-08 10:32:51'
  133.         and not exists (
  134.         SELECT
  135.         rd.id
  136.         from msg_reader rd
  137.         WHERE
  138.         rd.reader_id in
  139.          (  
  140.             '170'
  141.          )
  142.         and rd.reader_type = 204
  143.         and d.id = rd.msg_id
  144.         )
  145.         ) msg_ids;
  146. # User@Host: msg[msg] @  [172.27.6.20]
  147. # Thread_id: 2766408  Schema: trs_hycloud_msg  QC_hit: No
  148. # Query_time: 6.523476  Lock_time: 0.000227  Rows_sent: 1  Rows_examined: 5360
  149. # Rows_affected: 0  Bytes_sent: 56
  150. SET timestamp=1666744581;
  151. select count(*)
  152.         from
  153.         (select DISTINCT d.id
  154.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  155.         WHERE
  156.         (
  157.          (  
  158.             (r.receiver_type = 203
  159.             and r.receiver_id in
  160.              (  
  161.                 '570'
  162.              ,
  163.                 '577'
  164.              ,
  165.                 '578'
  166.              ,
  167.                 '580'
  168.              ,
  169.                 '583'
  170.              ,
  171.                 '586'
  172.              ,
  173.                 '746'
  174.              ,
  175.                 '1174'
  176.              ,
  177.                 '1536'
  178.              ,
  179.                 '1537'
  180.              ,
  181.                 '2'
  182.              )
  183.             )
  184.          or
  185.             (r.receiver_type = 204
  186.             and r.receiver_id in
  187.              (  
  188.                 '170'
  189.              )
  190.             )
  191.          or
  192.             (r.receiver_type = 201
  193.             and r.receiver_id in
  194.              (  
  195.                 '305'
  196.              )
  197.             )
  198.          )
  199.         )
  200.         and (d.notice_status = 'published' or d.notice_status is null)
  201.             and d.pub_time >= '2022-04-08 10:32:51'
  202.         and not exists (
  203.         SELECT
  204.         rd.id
  205.         from msg_reader rd
  206.         WHERE
  207.         rd.reader_id in
  208.          (  
  209.             '170'
  210.          )
  211.         and rd.reader_type = 204
  212.         and d.id = rd.msg_id
  213.         )
  214.         ) msg_ids;
  215. # Time: 221026  0:49:59
  216. # User@Host: msg[msg] @  [172.27.6.20]
  217. # Thread_id: 2766515  Schema: trs_hycloud_msg  QC_hit: No
  218. # Query_time: 2.193934  Lock_time: 0.000306  Rows_sent: 1  Rows_examined: 142368
  219. # Rows_affected: 0  Bytes_sent: 60
  220. SET timestamp=1666745399;
  221. select count(*)
  222.         from
  223.         (select DISTINCT d.id
  224.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  225.         WHERE
  226.         (
  227.          (  
  228.             (r.receiver_type = 203
  229.             and r.receiver_id in
  230.              (  
  231.                 '746'
  232.              ,
  233.                 '747'
  234.              ,
  235.                 '842'
  236.              ,
  237.                 '845'
  238.              ,
  239.                 '849'
  240.              ,
  241.                 '855'
  242.              ,
  243.                 '856'
  244.              ,
  245.                 '857'
  246.              ,
  247.                 '858'
  248.              ,
  249.                 '859'
  250.              ,
  251.                 '860'
  252.              ,
  253.                 '861'
  254.              ,
  255.                 '1233'
  256.              ,
  257.                 '1326'
  258.              ,
  259.                 '2'
  260.              )
  261.             )
  262.          or
  263.             (r.receiver_type = 204
  264.             and r.receiver_id in
  265.              (  
  266.                 '620'
  267.              )
  268.             )
  269.          or
  270.             (r.receiver_type = 201
  271.             and r.receiver_id in
  272.              (  
  273.                 '11'
  274.              ,
  275.                 '918'
  276.              )
  277.             )
  278.          )
  279.         )
  280.         and (d.notice_status = 'published' or d.notice_status is null)
  281.             and d.pub_time >= '2022-05-12 08:50:15'
  282.         and not exists (
  283.         SELECT
  284.         rd.id
  285.         from msg_reader rd
  286.         WHERE
  287.         rd.reader_id in
  288.          (  
  289.             '620'
  290.          )
  291.         and rd.reader_type = 204
  292.         and d.id = rd.msg_id
  293.         )
  294.         ) msg_ids;
  295. # Time: 221026  1:21:40
  296. # User@Host: ids[ids] @  [172.27.9.48]
  297. # Thread_id: 2766762  Schema: trs_ids  QC_hit: No
  298. # Query_time: 4.315032  Lock_time: 0.000072  Rows_sent: 0  Rows_examined: 0
  299. # Rows_affected: 1  Bytes_sent: 14
  300. use trs_ids;
  301. SET timestamp=1666747300;
  302. 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', '营山县发展公司_报送', 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);
  303. # User@Host: ids[ids] @  [172.27.9.48]
  304. # Thread_id: 2766723  Schema: trs_ids  QC_hit: No
  305. # Query_time: 3.385338  Lock_time: 0.000080  Rows_sent: 0  Rows_examined: 0
  306. # Rows_affected: 1  Bytes_sent: 14
  307. SET timestamp=1666747300;
  308. 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', '营山县发展公司_报送', '', 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);
  309. # Time: 221026  2:48:18
  310. # User@Host: ids[ids] @  [172.27.9.48]
  311. # Thread_id: 2767183  Schema: trs_ids  QC_hit: No
  312. # Query_time: 4.827856  Lock_time: 0.000088  Rows_sent: 0  Rows_examined: 0
  313. # Rows_affected: 1  Bytes_sent: 14
  314. SET timestamp=1666752498;
  315. 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);
  316. # User@Host: ids[ids] @  [172.27.9.48]
  317. # Thread_id: 2767254  Schema: trs_ids  QC_hit: No
  318. # Query_time: 4.709218  Lock_time: 0.000142  Rows_sent: 0  Rows_examined: 0
  319. # Rows_affected: 1  Bytes_sent: 14
  320. SET timestamp=1666752498;
  321. 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);
  322. # Time: 221026  3:24:48
  323. # User@Host: igi[igi] @  [172.27.7.22]
  324. # Thread_id: 2767514  Schema: trs_hycloud_igi  QC_hit: No
  325. # Query_time: 2.398462  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  326. # Rows_affected: 0  Bytes_sent: 11
  327. use trs_hycloud_igi;
  328. SET timestamp=1666754688;
  329. commit;
  330. # Time: 221026  3:24:58
  331. # User@Host: irs[irs] @  [172.27.3.135]
  332. # Thread_id: 2765861  Schema: trs_irs  QC_hit: No
  333. # Query_time: 2.326965  Lock_time: 0.000127  Rows_sent: 9  Rows_examined: 9
  334. # Rows_affected: 0  Bytes_sent: 1878
  335. use trs_irs;
  336. SET timestamp=1666754698;
  337. 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);
  338. # Time: 221026  3:36:06
  339. # User@Host: ipm[ipm] @  [172.27.6.71]
  340. # Thread_id: 1312728  Schema: trs_hycloud_ipm  QC_hit: No
  341. # Query_time: 2.419303  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  342. # Rows_affected: 0  Bytes_sent: 11
  343. use trs_hycloud_ipm;
  344. SET timestamp=1666755366;
  345. commit;
  346. # Time: 221026  3:39:55
  347. # User@Host: ids[ids] @  [172.27.9.48]
  348. # Thread_id: 2767549  Schema: trs_ids  QC_hit: No
  349. # Query_time: 3.666000  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  350. # Rows_affected: 0  Bytes_sent: 11
  351. use trs_ids;
  352. SET timestamp=1666755595;
  353. commit;
  354. # User@Host: ids[ids] @  [172.27.9.48]
  355. # Thread_id: 2767253  Schema: trs_ids  QC_hit: No
  356. # Query_time: 2.947360  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  357. # Rows_affected: 0  Bytes_sent: 11
  358. SET timestamp=1666755595;
  359. commit;
  360. # User@Host: ids[ids] @  [172.27.9.48]
  361. # Thread_id: 2767661  Schema: trs_ids  QC_hit: No
  362. # Query_time: 3.276164  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  363. # Rows_affected: 0  Bytes_sent: 11
  364. SET timestamp=1666755595;
  365. commit;
  366. # User@Host: ids[ids] @  [172.27.9.48]
  367. # Thread_id: 2767402  Schema: trs_ids  QC_hit: No
  368. # Query_time: 3.001373  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  369. # Rows_affected: 0  Bytes_sent: 11
  370. SET timestamp=1666755595;
  371. commit;
  372. # User@Host: ids[ids] @  [172.27.9.48]
  373. # Thread_id: 2767550  Schema: trs_ids  QC_hit: No
  374. # Query_time: 3.409387  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  375. # Rows_affected: 0  Bytes_sent: 11
  376. SET timestamp=1666755595;
  377. commit;
  378. # User@Host: ids[ids] @  [172.27.9.48]
  379. # Thread_id: 2767616  Schema: trs_ids  QC_hit: No
  380. # Query_time: 2.962938  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  381. # Rows_affected: 0  Bytes_sent: 11
  382. SET timestamp=1666755595;
  383. commit;
  384. # User@Host: ids[ids] @  [172.27.9.48]
  385. # Thread_id: 2767660  Schema: trs_ids  QC_hit: No
  386. # Query_time: 3.234524  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  387. # Rows_affected: 0  Bytes_sent: 11
  388. SET timestamp=1666755595;
  389. commit;
  390. # User@Host: ids[ids] @  [172.27.9.48]
  391. # Thread_id: 2767487  Schema: trs_ids  QC_hit: No
  392. # Query_time: 2.390315  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  393. # Rows_affected: 0  Bytes_sent: 11
  394. SET timestamp=1666755595;
  395. commit;
  396. # User@Host: ids[ids] @  [172.27.9.48]
  397. # Thread_id: 2767183  Schema: trs_ids  QC_hit: No
  398. # Query_time: 3.065140  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  399. # Rows_affected: 0  Bytes_sent: 11
  400. SET timestamp=1666755595;
  401. commit;
  402. # User@Host: ids[ids] @  [172.27.9.48]
  403. # Thread_id: 2767492  Schema: trs_ids  QC_hit: No
  404. # Query_time: 3.631596  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  405. # Rows_affected: 0  Bytes_sent: 11
  406. SET timestamp=1666755595;
  407. commit;
  408. # Time: 221026  3:40:38
  409. # User@Host: ids[ids] @  [172.27.9.48]
  410. # Thread_id: 2767616  Schema: trs_ids  QC_hit: No
  411. # Query_time: 4.389682  Lock_time: 0.000053  Rows_sent: 0  Rows_examined: 0
  412. # Rows_affected: 1  Bytes_sent: 14
  413. SET timestamp=1666755638;
  414. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  415. # User@Host: ids[ids] @  [172.27.9.48]
  416. # Thread_id: 2767402  Schema: trs_ids  QC_hit: No
  417. # Query_time: 3.299221  Lock_time: 0.000146  Rows_sent: 0  Rows_examined: 0
  418. # Rows_affected: 1  Bytes_sent: 14
  419. SET timestamp=1666755638;
  420. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  421. # User@Host: ids[ids] @  [172.27.9.48]
  422. # Thread_id: 2767661  Schema: trs_ids  QC_hit: No
  423. # Query_time: 3.366218  Lock_time: 0.000087  Rows_sent: 0  Rows_examined: 0
  424. # Rows_affected: 1  Bytes_sent: 14
  425. SET timestamp=1666755638;
  426. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  427. # User@Host: ids[ids] @  [172.27.9.48]
  428. # Thread_id: 2767183  Schema: trs_ids  QC_hit: No
  429. # Query_time: 3.306278  Lock_time: 0.000121  Rows_sent: 0  Rows_examined: 0
  430. # Rows_affected: 1  Bytes_sent: 14
  431. SET timestamp=1666755638;
  432. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  433. # User@Host: ids[ids] @  [172.27.9.48]
  434. # Thread_id: 2767492  Schema: trs_ids  QC_hit: No
  435. # Query_time: 2.401411  Lock_time: 0.000177  Rows_sent: 0  Rows_examined: 0
  436. # Rows_affected: 1  Bytes_sent: 14
  437. SET timestamp=1666755638;
  438. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  439. # User@Host: ids[ids] @  [172.27.9.48]
  440. # Thread_id: 2767550  Schema: trs_ids  QC_hit: No
  441. # Query_time: 3.404811  Lock_time: 0.000102  Rows_sent: 0  Rows_examined: 0
  442. # Rows_affected: 1  Bytes_sent: 14
  443. SET timestamp=1666755638;
  444. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  445. # User@Host: ids[ids] @  [172.27.9.48]
  446. # Thread_id: 2767660  Schema: trs_ids  QC_hit: No
  447. # Query_time: 2.371651  Lock_time: 0.000169  Rows_sent: 0  Rows_examined: 0
  448. # Rows_affected: 1  Bytes_sent: 14
  449. SET timestamp=1666755638;
  450. 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', '生态环境局_童雪梅', '', 1, 'IDS发出注销请求', '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);
  451. # Time: 221026  5:25:02
  452. # User@Host: ids[ids] @  [172.27.9.48]
  453. # Thread_id: 2768295  Schema: trs_ids  QC_hit: No
  454. # Query_time: 2.080505  Lock_time: 0.000075  Rows_sent: 2  Rows_examined: 2
  455. # Rows_affected: 0  Bytes_sent: 1562
  456. SET timestamp=1666761902;
  457. 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;
  458. # Time: 221026  6:59:55
  459. # User@Host: ids[ids] @  [172.27.9.48]
  460. # Thread_id: 2768854  Schema: trs_ids  QC_hit: No
  461. # Query_time: 4.340171  Lock_time: 0.000049  Rows_sent: 0  Rows_examined: 0
  462. # Rows_affected: 1  Bytes_sent: 14
  463. SET timestamp=1666767595;
  464. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  465. # User@Host: ids[ids] @  [172.27.9.48]
  466. # Thread_id: 2768626  Schema: trs_ids  QC_hit: No
  467. # Query_time: 3.313328  Lock_time: 0.000163  Rows_sent: 0  Rows_examined: 0
  468. # Rows_affected: 1  Bytes_sent: 14
  469. SET timestamp=1666767595;
  470. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  471. # User@Host: ids[ids] @  [172.27.9.48]
  472. # Thread_id: 2768856  Schema: trs_ids  QC_hit: No
  473. # Query_time: 2.707695  Lock_time: 0.000149  Rows_sent: 0  Rows_examined: 0
  474. # Rows_affected: 1  Bytes_sent: 14
  475. SET timestamp=1666767595;
  476. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  477. # User@Host: ids[ids] @  [172.27.9.48]
  478. # Thread_id: 2768821  Schema: trs_ids  QC_hit: No
  479. # Query_time: 2.341896  Lock_time: 0.000206  Rows_sent: 0  Rows_examined: 0
  480. # Rows_affected: 1  Bytes_sent: 14
  481. SET timestamp=1666767595;
  482. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  483. # User@Host: ids[ids] @  [172.27.9.48]
  484. # Thread_id: 2768768  Schema: trs_ids  QC_hit: No
  485. # Query_time: 3.713903  Lock_time: 0.000168  Rows_sent: 0  Rows_examined: 0
  486. # Rows_affected: 1  Bytes_sent: 14
  487. SET timestamp=1666767595;
  488. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  489. # User@Host: ids[ids] @  [172.27.9.48]
  490. # Thread_id: 2768855  Schema: trs_ids  QC_hit: No
  491. # Query_time: 3.997345  Lock_time: 0.000107  Rows_sent: 0  Rows_examined: 0
  492. # Rows_affected: 1  Bytes_sent: 14
  493. SET timestamp=1666767595;
  494. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  495. # User@Host: ids[ids] @  [172.27.9.48]
  496. # Thread_id: 2768988  Schema: trs_ids  QC_hit: No
  497. # Query_time: 3.719262  Lock_time: 0.000174  Rows_sent: 0  Rows_examined: 0
  498. # Rows_affected: 1  Bytes_sent: 14
  499. SET timestamp=1666767595;
  500. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  501. # User@Host: ids[ids] @  [172.27.9.48]
  502. # Thread_id: 2768986  Schema: trs_ids  QC_hit: No
  503. # Query_time: 4.316618  Lock_time: 0.000127  Rows_sent: 0  Rows_examined: 0
  504. # Rows_affected: 1  Bytes_sent: 14
  505. SET timestamp=1666767595;
  506. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  507. # User@Host: ids[ids] @  [172.27.9.48]
  508. # Thread_id: 2768987  Schema: trs_ids  QC_hit: No
  509. # Query_time: 3.342963  Lock_time: 0.000179  Rows_sent: 0  Rows_examined: 0
  510. # Rows_affected: 1  Bytes_sent: 14
  511. SET timestamp=1666767595;
  512. 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', '南部县双峰乡', '', 1, 'IDS发出注销请求', '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);
  513. # Time: 221026  8:07:36
  514. # User@Host: ids[ids] @  [172.27.9.48]
  515. # Thread_id: 2769438  Schema: trs_ids  QC_hit: No
  516. # Query_time: 4.927149  Lock_time: 0.000046  Rows_sent: 0  Rows_examined: 0
  517. # Rows_affected: 1  Bytes_sent: 14
  518. SET timestamp=1666771656;
  519. 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', '西充县综合行政执法局-审核', '', 1, 'IDS发出注销请求', '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);
  520. # Time: 221026  9:16:14
  521. # User@Host: ids[ids] @  [172.27.9.48]
  522. # Thread_id: 2769622  Schema: trs_ids  QC_hit: No
  523. # Query_time: 5.538084  Lock_time: 0.000107  Rows_sent: 0  Rows_examined: 0
  524. # Rows_affected: 1  Bytes_sent: 14
  525. SET timestamp=1666775774;
  526. 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);
  527. # User@Host: ids[ids] @  [172.27.9.48]
  528. # Thread_id: 2769786  Schema: trs_ids  QC_hit: No
  529. # Query_time: 5.531273  Lock_time: 0.000104  Rows_sent: 0  Rows_examined: 0
  530. # Rows_affected: 1  Bytes_sent: 14
  531. SET timestamp=1666775774;
  532. 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);
  533. # User@Host: ids[ids] @  [172.27.9.48]
  534. # Thread_id: 2769884  Schema: trs_ids  QC_hit: No
  535. # Query_time: 4.780034  Lock_time: 0.000149  Rows_sent: 0  Rows_examined: 0
  536. # Rows_affected: 1  Bytes_sent: 14
  537. SET timestamp=1666775774;
  538. 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);
  539. # User@Host: ids[ids] @  [172.27.9.48]
  540. # Thread_id: 2769882  Schema: trs_ids  QC_hit: No
  541. # Query_time: 4.738372  Lock_time: 0.000156  Rows_sent: 0  Rows_examined: 0
  542. # Rows_affected: 1  Bytes_sent: 14
  543. SET timestamp=1666775774;
  544. 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);
  545. # User@Host: ids[ids] @  [172.27.9.48]
  546. # Thread_id: 2769883  Schema: trs_ids  QC_hit: No
  547. # Query_time: 3.779332  Lock_time: 0.000118  Rows_sent: 0  Rows_examined: 0
  548. # Rows_affected: 1  Bytes_sent: 14
  549. SET timestamp=1666775774;
  550. 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);
  551. # Time: 221026 10:00:36
  552. # User@Host: leadercockpit[leadercockpit] @  [172.27.4.238]
  553. # Thread_id: 2770182  Schema: leadercockpit  QC_hit: No
  554. # Query_time: 8.295103  Lock_time: 0.000093  Rows_sent: 0  Rows_examined: 1
  555. # Rows_affected: 1  Bytes_sent: 52
  556. use leadercockpit;
  557. SET timestamp=1666778436;
  558. UPDATE data_syn_log  SET data_syn_task_id=124531,
  559. request_url='http://59.213.143.247/hyapi/igi/msgboxes/mayor/count',
  560. response='{"code":0,"data":0,"msg":"操作成功"}',
  561. exception='success',
  562. scene='在线信箱',
  563. create_time='2022-10-26 10:03:07'  WHERE data_syn_log_id=178094;
  564. # Time: 221026 10:21:05
  565. # User@Host: igi[igi] @  [172.27.7.22]
  566. # Thread_id: 2769869  Schema: trs_hycloud_igi  QC_hit: No
  567. # Query_time: 3.846060  Lock_time: 0.000061  Rows_sent: 0  Rows_examined: 0
  568. # Rows_affected: 1  Bytes_sent: 14
  569. use trs_hycloud_igi;
  570. SET timestamp=1666779665;
  571. 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"}', '短信通知发送失败,原因:SDK.ServerUnreachable : Server unreachable: java.net.UnknownHostException: dysmsapi.aliyuncs.com', '1', '13990776653', 'GOV_NOTICE_NEW');
  572. # Time: 221026 14:00:56
  573. # User@Host: leadercockpit[leadercockpit] @  [172.27.4.238]
  574. # Thread_id: 2771627  Schema: leadercockpit  QC_hit: No
  575. # Query_time: 4.074533  Lock_time: 0.000040  Rows_sent: 0  Rows_examined: 0
  576. # Rows_affected: 1  Bytes_sent: 14
  577. use leadercockpit;
  578. SET timestamp=1666792856;
  579. INSERT INTO data_syn_log  ( data_syn_task_id,
  580. request_url,
  581. response,
  582. exception,
  583. scene,
  584. create_time )  VALUES  ( 124916,
  585. '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',
  586. '未发送请求/请求发生异常',
  587. 'success',
  588. '服务运行状态详情监控',
  589. '2022-10-26 14:03:30' );
  590. # Time: 221026 16:07:49
  591. # User@Host: ipm[ipm] @  [172.27.6.71]
  592. # Thread_id: 2772499  Schema: trs_hycloud_ipm  QC_hit: No
  593. # Query_time: 3.054128  Lock_time: 0.000124  Rows_sent: 0  Rows_examined: 487
  594. # Rows_affected: 1  Bytes_sent: 52
  595. use trs_hycloud_ipm;
  596. SET timestamp=1666800469;
  597. update issue
  598.         set
  599.             checkTime = '2022-10-27 00:07:56'
  600.         WHERE 1=1
  601.             AND
  602.                     siteId = 50
  603.                    AND  
  604.                     customer2 = '5667'
  605.                    AND  
  606.                     typeId = 101
  607.                    AND  
  608.                     subTypeId = 1011
  609.                    AND  
  610.                     isResolved = 0
  611.                    AND  
  612.                     isDel = 0
  613.                    AND  
  614.                     isResolved = 0
  615.                    AND  
  616.                     isDel = 0;
  617. # User@Host: ipm[ipm] @  [172.27.6.71]
  618. # Thread_id: 2772488  Schema: trs_hycloud_ipm  QC_hit: No
  619. # Query_time: 2.585605  Lock_time: 0.000193  Rows_sent: 0  Rows_examined: 0
  620. # Rows_affected: 1  Bytes_sent: 13
  621. SET timestamp=1666800469;
  622. INSERT INTO performanceindex
  623.         (
  624.         siteId, indexLevel, performance, checkTime
  625.             , singleVeto
  626.             , homePageAvailability
  627.             , homePageChannel
  628.             , levySurvey
  629.             , interactiveInterview
  630.         )
  631.         VALUES
  632.         (
  633.         22, 1, 0.0, '2022-10-27 00:07:56'
  634.             , '站点无法访问;站点不更新;栏目不更新;互动回应差;'
  635.             , '5 * 100.0(%)'
  636.             , '5'
  637.             , '5'
  638.             , '5'
  639.         );
  640. # Time: 221026 17:06:55
  641. # User@Host: ids[ids] @  [172.27.9.48]
  642. # Thread_id: 2772901  Schema: trs_ids  QC_hit: No
  643. # Query_time: 3.882894  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  644. # Rows_affected: 0  Bytes_sent: 11
  645. use trs_ids;
  646. SET timestamp=1666804015;
  647. commit;
  648. # User@Host: igi[igi] @  [172.27.7.22]
  649. # Thread_id: 2770625  Schema: trs_hycloud_igi  QC_hit: No
  650. # Query_time: 2.326791  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  651. # Rows_affected: 0  Bytes_sent: 11
  652. use trs_hycloud_igi;
  653. SET timestamp=1666804015;
  654. commit;
  655. # Time: 221026 17:07:07
  656. # User@Host: mas[mas] @  [172.27.10.89]
  657. # Thread_id: 2418677  Schema: trs_mas  QC_hit: No
  658. # Query_time: 2.258129  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  659. # Rows_affected: 0  Bytes_sent: 11
  660. use trs_mas;
  661. SET timestamp=1666804027;
  662. commit;
  663. # Time: 221026 17:07:54
  664. # User@Host: ids[ids] @  [172.27.9.48]
  665. # Thread_id: 2772902  Schema: trs_ids  QC_hit: No
  666. # Query_time: 3.008971  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  667. # Rows_affected: 0  Bytes_sent: 11
  668. use trs_ids;
  669. SET timestamp=1666804074;
  670. commit;
  671. # Time: 221026 19:01:32
  672. # User@Host: root[root] @  [172.27.1.0]
  673. # Thread_id: 2773651  Schema: leadercockpit  QC_hit: No
  674. # Query_time: 4.863133  Lock_time: 0.000042  Rows_sent: 179359  Rows_examined: 179359
  675. # Rows_affected: 0  Bytes_sent: 184391841
  676. use leadercockpit;
  677. SET timestamp=1666810892;
  678. 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`;
  679. # Time: 221026 19:02:03
  680. # User@Host: root[root] @  [172.27.1.0]
  681. # Thread_id: 2773651  Schema: trs_hycloud_igi  QC_hit: No
  682. # Query_time: 19.358427  Lock_time: 0.000047  Rows_sent: 1107403  Rows_examined: 1107403
  683. # Rows_affected: 0  Bytes_sent: 643887837
  684. use trs_hycloud_igi;
  685. SET timestamp=1666810923;
  686. 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`;
  687. # Time: 221026 19:02:09
  688. # User@Host: root[root] @  [172.27.1.0]
  689. # Thread_id: 2773651  Schema: trs_hycloud_msg  QC_hit: No
  690. # Query_time: 3.249953  Lock_time: 0.000064  Rows_sent: 225517  Rows_examined: 225517
  691. # Rows_affected: 0  Bytes_sent: 89203745
  692. use trs_hycloud_msg;
  693. SET timestamp=1666810929;
  694. 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`;
  695. # Time: 221026 19:02:13
  696. # User@Host: root[root] @  [172.27.1.0]
  697. # Thread_id: 2773651  Schema: trs_hycloud_msg  QC_hit: No
  698. # Query_time: 3.798709  Lock_time: 0.000040  Rows_sent: 760078  Rows_examined: 760078
  699. # Rows_affected: 0  Bytes_sent: 37822394
  700. SET timestamp=1666810933;
  701. SELECT /*!40001 SQL_NO_CACHE */ `id`, `group_id`, `module_id`, `msg_id`, `reader_type`, `reader_id`, `cr_time` FROM `msg_reader`;
  702. # Time: 221026 19:04:41
  703. # User@Host: root[root] @  [172.27.1.0]
  704. # Thread_id: 2773651  Schema: trs_ids  QC_hit: No
  705. # Query_time: 144.767234  Lock_time: 0.000115  Rows_sent: 6704082  Rows_examined: 6704082
  706. # Rows_affected: 0  Bytes_sent: 5009273781
  707. use trs_ids;
  708. SET timestamp=1666811081;
  709. 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`;
  710. # Time: 221026 19:04:42
  711. # User@Host: igi[igi] @  [172.27.7.23]
  712. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  713. # Query_time: 52.343538  Lock_time: 0.000538  Rows_sent: 6  Rows_examined: 63701
  714. # Rows_affected: 0  Bytes_sent: 21074
  715. use trs_hycloud_igi;
  716. SET timestamp=1666811082;
  717. 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;
  718. # User@Host: igi[igi] @  [172.27.7.22]
  719. # Thread_id: 2773671  Schema: trs_hycloud_igi  QC_hit: No
  720. # Query_time: 41.628405  Lock_time: 0.000448  Rows_sent: 6  Rows_examined: 63701
  721. # Rows_affected: 0  Bytes_sent: 25772
  722. SET timestamp=1666811082;
  723. 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;
  724. # User@Host: igi[igi] @  [172.27.7.22]
  725. # Thread_id: 2773313  Schema: trs_hycloud_igi  QC_hit: No
  726. # Query_time: 62.764443  Lock_time: 0.000448  Rows_sent: 7  Rows_examined: 63702
  727. # Rows_affected: 0  Bytes_sent: 27195
  728. SET timestamp=1666811082;
  729. 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;
  730. # Time: 221026 19:04:50
  731. # User@Host: root[root] @  [172.27.1.0]
  732. # Thread_id: 2773651  Schema: trs_ids  QC_hit: No
  733. # Query_time: 5.457925  Lock_time: 0.000053  Rows_sent: 6064  Rows_examined: 6064
  734. # Rows_affected: 0  Bytes_sent: 17639900
  735. use trs_ids;
  736. SET timestamp=1666811090;
  737. SELECT /*!40001 SQL_NO_CACHE */ `ID`, `COAPPNAME`, `USERNAME`, `OPERATION`, `LOCKER`, `LOCKEDTIME`, `CREATEDTIME`, `FOLLOWTIME`, `TRIEDCOUNT`, `REASON`, `STATUS`, `PROPERTIES`, `SOURCENAME`, `OBJTYPE` FROM `idsusersyncjob`;
  738. # Time: 221026 19:04:54
  739. # User@Host: igi[igi] @  [172.27.7.22]
  740. # Thread_id: 2773313  Schema: trs_hycloud_igi  QC_hit: No
  741. # Query_time: 2.453342  Lock_time: 0.000311  Rows_sent: 6  Rows_examined: 63701
  742. # Rows_affected: 0  Bytes_sent: 21074
  743. use trs_hycloud_igi;
  744. SET timestamp=1666811094;
  745. 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;
  746. # Time: 221026 19:05:05
  747. # User@Host: root[root] @  [172.27.1.0]
  748. # Thread_id: 2773651  Schema: trs_mas  QC_hit: No
  749. # Query_time: 4.842019  Lock_time: 0.000056  Rows_sent: 474281  Rows_examined: 474281
  750. # Rows_affected: 0  Bytes_sent: 133134598
  751. use trs_mas;
  752. SET timestamp=1666811105;
  753. 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`;
  754. # Time: 221026 19:07:38
  755. # User@Host: igi[igi] @  [172.27.7.23]
  756. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  757. # Query_time: 2.253104  Lock_time: 0.000331  Rows_sent: 3  Rows_examined: 140176
  758. # Rows_affected: 0  Bytes_sent: 9091
  759. use trs_hycloud_igi;
  760. SET timestamp=1666811258;
  761. 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;
  762. # Time: 221026 19:07:46
  763. # User@Host: igi[igi] @  [172.27.7.23]
  764. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  765. # Query_time: 8.406159  Lock_time: 0.000177  Rows_sent: 1  Rows_examined: 61924
  766. # Rows_affected: 0  Bytes_sent: 7397
  767. SET timestamp=1666811266;
  768. 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;
  769. # Time: 221026 19:10:03
  770. # User@Host: igi[igi] @  [172.27.7.23]
  771. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  772. # Query_time: 2.922208  Lock_time: 0.000259  Rows_sent: 0  Rows_examined: 63695
  773. # Rows_affected: 0  Bytes_sent: 9231
  774. SET timestamp=1666811403;
  775. 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;
  776. # Time: 221026 19:24:59
  777. # User@Host: igi[igi] @  [172.27.7.22]
  778. # Thread_id: 2770625  Schema: trs_hycloud_igi  QC_hit: No
  779. # Query_time: 3.789189  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  780. # Rows_affected: 0  Bytes_sent: 11
  781. SET timestamp=1666812299;
  782. commit;
  783. # User@Host: mas[mas] @  [172.27.10.89]
  784. # Thread_id: 2418700  Schema: trs_mas  QC_hit: No
  785. # Query_time: 3.527154  Lock_time: 0.050343  Rows_sent: 0  Rows_examined: 4
  786. # Rows_affected: 0  Bytes_sent: 1498
  787. use trs_mas;
  788. SET timestamp=1666812299;
  789. 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;
  790. # User@Host: ipm[ipm] @  [172.27.6.71]
  791. # Thread_id: 1173218  Schema: trs_hycloud_ipm  QC_hit: No
  792. # Query_time: 4.021290  Lock_time: 0.050219  Rows_sent: 1  Rows_examined: 1
  793. # Rows_affected: 0  Bytes_sent: 529
  794. use trs_hycloud_ipm;
  795. SET timestamp=1666812299;
  796. SELECT * FROM QRTZ_SCHEDULER_STATE WHERE SCHED_NAME = 'kpi';
  797. # User@Host: mas[mas] @  [172.27.10.89]
  798. # Thread_id: 2412354  Schema: trs_mas  QC_hit: No
  799. # Query_time: 3.266587  Lock_time: 0.050510  Rows_sent: 0  Rows_examined: 0
  800. # Rows_affected: 0  Bytes_sent: 4382
  801. use trs_mas;
  802. SET timestamp=1666812299;
  803. 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;
  804. # User@Host: igi[igi] @  [172.27.7.23]
  805. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  806. # Query_time: 4.038223  Lock_time: 0.000073  Rows_sent: 2  Rows_examined: 2
  807. # Rows_affected: 0  Bytes_sent: 637
  808. use trs_hycloud_igi;
  809. SET timestamp=1666812299;
  810. SELECT * FROM qrtz_SCHEDULER_STATE WHERE SCHED_NAME = 'quartzScheduler';
  811. # Time: 221026 19:25:02
  812. # User@Host: ipm[ipm] @  [172.27.6.71]
  813. # Thread_id: 1173218  Schema: trs_hycloud_ipm  QC_hit: No
  814. # Query_time: 2.912537  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  815. # Rows_affected: 0  Bytes_sent: 11
  816. use trs_hycloud_ipm;
  817. SET timestamp=1666812302;
  818. commit;
  819. # User@Host: igi[igi] @  [172.27.7.23]
  820. # Thread_id: 2773636  Schema: trs_hycloud_igi  QC_hit: No
  821. # Query_time: 2.912705  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  822. # Rows_affected: 0  Bytes_sent: 11
  823. use trs_hycloud_igi;
  824. SET timestamp=1666812302;
  825. commit;
  826. # Time: 221026 19:25:03
  827. # User@Host: mas[mas] @  [172.27.10.89]
  828. # Thread_id: 2418710  Schema: trs_mas  QC_hit: No
  829. # Query_time: 2.682208  Lock_time: 0.050374  Rows_sent: 0  Rows_examined: 0
  830. # Rows_affected: 0  Bytes_sent: 4382
  831. use trs_mas;
  832. SET timestamp=1666812303;
  833. 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;
  834. # User@Host: igi[igi] @  [172.27.7.23]
  835. # Thread_id: 2773253  Schema: trs_hycloud_igi  QC_hit: No
  836. # Query_time: 2.627624  Lock_time: 0.050452  Rows_sent: 1  Rows_examined: 10
  837. # Rows_affected: 0  Bytes_sent: 4782
  838. use trs_hycloud_igi;
  839. SET timestamp=1666812303;
  840. 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;
  841. # User@Host: ids[ids] @  [172.27.9.48]
  842. # Thread_id: 2773707  Schema: trs_ids  QC_hit: No
  843. # Query_time: 2.767730  Lock_time: 0.000157  Rows_sent: 86  Rows_examined: 172
  844. # Rows_affected: 0  Bytes_sent: 21507
  845. use trs_ids;
  846. SET timestamp=1666812303;
  847. 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;
  848. # User@Host: igi[igi] @  [172.27.7.22]
  849. # Thread_id: 2773312  Schema: trs_hycloud_igi  QC_hit: No
  850. # Query_time: 2.698749  Lock_time: 0.050396  Rows_sent: 5  Rows_examined: 63700
  851. # Rows_affected: 0  Bytes_sent: 17045
  852. use trs_hycloud_igi;
  853. SET timestamp=1666812303;
  854. 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;
  855. # Time: 221026 20:06:33
  856. # User@Host: ipm[ipm] @  [172.27.6.71]
  857. # Thread_id: 1173216  Schema: trs_hycloud_ipm  QC_hit: No
  858. # Query_time: 2.563619  Lock_time: 0.000000  Rows_sent: 0  Rows_examined: 0
  859. # Rows_affected: 0  Bytes_sent: 11
  860. use trs_hycloud_ipm;
  861. SET timestamp=1666814793;
  862. commit;
  863. # Time: 221027  0:09:17
  864. # User@Host: msg[msg] @  [172.27.6.20]
  865. # Thread_id: 2775622  Schema: trs_hycloud_msg  QC_hit: No
  866. # Query_time: 4.824891  Lock_time: 0.000443  Rows_sent: 1  Rows_examined: 23368
  867. # Rows_affected: 0  Bytes_sent: 59
  868. use trs_hycloud_msg;
  869. SET timestamp=1666829357;
  870. select count(*)
  871.         from
  872.         (select DISTINCT d.id
  873.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  874.         WHERE
  875.         (
  876.          (  
  877.             (r.receiver_type = 203
  878.             and r.receiver_id in
  879.              (  
  880.                 '927'
  881.              ,
  882.                 '934'
  883.              ,
  884.                 '935'
  885.              ,
  886.                 '1183'
  887.              ,
  888.                 '2'
  889.              )
  890.             )
  891.          or
  892.             (r.receiver_type = 204
  893.             and r.receiver_id in
  894.              (  
  895.                 '528'
  896.              )
  897.             )
  898.          or
  899.             (r.receiver_type = 201
  900.             and r.receiver_id in
  901.              (  
  902.                 '569'
  903.              )
  904.             )
  905.          )
  906.         )
  907.         and (d.notice_status = 'published' or d.notice_status is null)
  908.             and d.pub_time >= '2022-05-11 19:18:48'
  909.         and not exists (
  910.         SELECT
  911.         rd.id
  912.         from msg_reader rd
  913.         WHERE
  914.         rd.reader_id in
  915.          (  
  916.             '528'
  917.          )
  918.         and rd.reader_type = 204
  919.         and d.id = rd.msg_id
  920.         )
  921.         ) msg_ids;
  922. # Time: 221027  0:21:55
  923. # User@Host: msg[msg] @  [172.27.6.20]
  924. # Thread_id: 2775622  Schema: trs_hycloud_msg  QC_hit: No
  925. # Query_time: 7.405037  Lock_time: 0.000635  Rows_sent: 1  Rows_examined: 5460
  926. # Rows_affected: 0  Bytes_sent: 57
  927. SET timestamp=1666830115;
  928. select count(*)
  929.         from
  930.         (select DISTINCT d.id
  931.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  932.         WHERE
  933.         (
  934.          (  
  935.             (r.receiver_type = 203
  936.             and r.receiver_id in
  937.              (  
  938.                 '570'
  939.              ,
  940.                 '577'
  941.              ,
  942.                 '578'
  943.              ,
  944.                 '580'
  945.              ,
  946.                 '583'
  947.              ,
  948.                 '586'
  949.              ,
  950.                 '746'
  951.              ,
  952.                 '1174'
  953.              ,
  954.                 '1536'
  955.              ,
  956.                 '1537'
  957.              ,
  958.                 '2'
  959.              )
  960.             )
  961.          or
  962.             (r.receiver_type = 204
  963.             and r.receiver_id in
  964.              (  
  965.                 '170'
  966.              )
  967.             )
  968.          or
  969.             (r.receiver_type = 201
  970.             and r.receiver_id in
  971.              (  
  972.                 '305'
  973.              )
  974.             )
  975.          )
  976.         )
  977.         and (d.notice_status = 'published' or d.notice_status is null)
  978.             and d.pub_time >= '2022-04-08 10:32:51'
  979.         and not exists (
  980.         SELECT
  981.         rd.id
  982.         from msg_reader rd
  983.         WHERE
  984.         rd.reader_id in
  985.          (  
  986.             '170'
  987.          )
  988.         and rd.reader_type = 204
  989.         and d.id = rd.msg_id
  990.         )
  991.         ) msg_ids;
  992. # Time: 221027  0:24:08
  993. # User@Host: msg[msg] @  [172.27.6.20]
  994. # Thread_id: 2775622  Schema: trs_hycloud_msg  QC_hit: No
  995. # Query_time: 2.092562  Lock_time: 0.000559  Rows_sent: 1  Rows_examined: 150596
  996. # Rows_affected: 0  Bytes_sent: 60
  997. SET timestamp=1666830248;
  998. select count(*)
  999.         from
  1000.         (select DISTINCT d.id
  1001.         from msg_detail d join msg_receiver r on r.msg_id = d.id
  1002.         WHERE
  1003.         (
  1004.          (  
  1005.             (r.receiver_type = 203
  1006.             and r.receiver_id in
  1007.              (  
  1008.                 '889'
  1009.              ,
  1010.                 '894'
  1011.              ,
  1012.                 '899'
  1013.              ,
  1014.                 '902'
  1015.              ,
  1016.                 '905'
  1017.              ,
  1018.                 '1190'
  1019.              ,
  1020.                 '1191'
  1021.              ,
  1022.                 '1192'
  1023.              ,
  1024.                 '1193'
  1025.              ,
  1026.                 '1447'
  1027.              ,
  1028.                 '1703'
  1029.              ,
  1030.                 '2'
  1031.              )
  1032.             )
  1033.          or
  1034.             (r.receiver_type = 204
  1035.             and r.receiver_id in
  1036.              (  
  1037.                 '712'
  1038.              )
  1039.             )
  1040.          or
  1041.             (r.receiver_type = 201
  1042.             and r.receiver_id in
  1043.              (  
  1044.                 '13'
  1045.              ,
  1046.                 '851'
  1047.              )
  1048.             )
  1049.          )
  1050.         )
  1051.         and (d.notice_status = 'published' or d.notice_status is null)
  1052.             and d.pub_time >= '2022-05-15 11:20:18'
  1053.         and not exists (
  1054.         SELECT
  1055.         rd.id
  1056.         from msg_reader rd
  1057.         WHERE
  1058.         rd.reader_id in
  1059.          (  
  1060.             '712'
  1061.          )
  1062.         and rd.reader_type = 204
  1063.         and d.id = rd.msg_id
  1064.         )
  1065.         ) msg_ids;
复制代码
总结

到此这篇关于Java实现格式化打印慢SQL日志的文章就介绍到这了,更多相关Java格式化打印慢SQL日志内容请搜索中国红客联盟以前的文章或继续浏览下面的相关文章希望大家以后多多支持中国红客联盟!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

×
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

中国红客联盟公众号

联系站长QQ:5520533

admin@chnhonker.com
Copyright © 2001-2025 Discuz Team. Powered by Discuz! X3.5 ( 粤ICP备13060014号 )|天天打卡 本站已运行