小辣椒昆明网站开发wordpress二次开发手册chm

当前位置: 首页 > news >正文

小辣椒昆明网站开发,wordpress二次开发手册chm,网站建设 客户要退款,地方建立网站做SEM1. 前言 obdiag是OceanBase的敏捷诊断工具。1.2版本中#xff0c;obdiag支持快速收集诊断信息#xff0c;但仅有收集能力是不够的#xff0c;还需要有分析能力。因此在obdiag的1.3.0版本中#xff0c;我们加入了OB集群的日志分析功能。用户可以一键进行集群的OB日志的分析…1. 前言 obdiag是OceanBase的敏捷诊断工具。1.2版本中obdiag支持快速收集诊断信息但仅有收集能力是不够的还需要有分析能力。因此在obdiag的1.3.0版本中我们加入了OB集群的日志分析功能。用户可以一键进行集群的OB日志的分析以便发现可能存在的异常情况。

  1. obdiag 日志分析设计 2.1  架构设计 主体架构还是依托于obdiag的集中式采集模式当用户发起obdiag 的分析的时候需要去各个节点上进行采集将采集回来的数据集中进行分析处理。 2.2 obdiag执行在线日志分析的时序图
  2. 用户设置配置文件配置文件的路径在obdiag安装目录的config/config.yml中主要是设置所要分析的OceanBase集群的ssh登陆信息因为obdiag需要通过ssh方式去集群拉取日志到obdiag的节点上进行分析
  3. 执行obdiag analyze log option 命令
  4. obdiag 接收到用户的analyze命令后会去解析option 内的参数
  5. obdiag解析完analyze参数后会启动日志拉取的环节拉取的节点是步骤一中用户配置的拉取的日志的时间范围、过滤条件等都是步骤三option设定的
  6. obdiag 发送远程主机的执行指令
  7. 远程执行日志的grep或者cp命令来获取日志
  8. 符合条件的日志会统一放到临时文件中便于后续的回传
  9. 下载远程主机上筛选出来的符合条件的日志
  10. 下载完毕后发送临时文件清理指令
  11. 远程主机临时文件会被清理
  12. obdiag 对远程主机拉取回来的日志文件进行分析对于日志分析主要规则是针对日志中的retcode进行分析统计各retcode出现的次数、最早开始时间、最晚出现的时间以及其对应的trace_id的等信息
  13. obdiag分析完日志后会在黑屏上打印出总览的日志分析信息
  14. obdiag分析日志的详细信息会输出到文件中
  15. 用户可以通过obdiag 输出的文件地址查看详细的日志分析报告 3. obdiag日志分析实践 obdiag analyze analyze type [options] analyze type 包含如下 log一键分析 OceanBase 的日志。 3.1 obdiag analyze log 使用该命令可以一键在线分析 OceanBase 集群的日志或者通过 –files 开启离线分析模式。 本文所指的在线分析指的是 OceanBase 集群在线运行状态日志分布在各个 OBServer 节点上。本文所指的离线分析模式是 –files 参数传递下可以分析已经收集到机 obdiag 部署机器上的 OBServer 节点日志。需要确保已经在 obdiag 配置文件 config.yml 中配置好需要收集节点的登录信息。相关的详细配置介绍参见 obdiag 配置。 例子 obdiag analyze log –scope observer –from 2023-10-08 10:25:00 –to 2023-10-08 11:30:00… FileListInfo: ————————————————————————————————————————————————————————————————————————————— | Node | LogList || xx.xx.xx.xx | [observer.log.20231008104204260, observer.log.20231008111305072, observer.log.20231008114410668, observer.log.wf.20231008104204260, observer.log.wf.20231008111305072, observer.log.wf.20231008114410668] | ————————————————————————————————————————————————————————————————————————————— …Analyze OceanBase Online Log Summary: ————————————————————————————————————————————————————————————————————————————————————– | Node | Status | FileName | ErrorCode | Message | Count || xx.xx.xx.xx | Completed | analyze_pack_20231008171201/xx_xx_xx_xx/observer.log.20231008104204260 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 2 | ————————————————————————————————————————————————————————————————————————————————————– | xx.xx.xx.xx | Completed | analyze_pack_20231008171201/xx_xx_xx_xx/observer.log.20231008111305072 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 8 | ————————————————————————————————————————————————————————————————————————————————————– | xx.xx.xx.xx | Completed | analyze_pack_20231008171201/xx_xx_xx_xx/observer.log.20231008114410668 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 10 | ————————————————————————————————————————————————————————————————————————————————————– | xx.xx.xx.xx | Completed | analyze_pack_20231008171201/xx_xx_xx_xx/observer.log.20231008114410668 | -4009 | IO error | 20 | ————————————————————————————————————————————————————————————————————————————————————– For more details, please run cmd cat analyze_pack_20231008171201/result_details.txt快捷分析最近一段时间的日志 在线分析最近一小时的日志该指令执行的时候会从远程主机上拉取最近一小时的日志进行分析诊断出出现过的错误 obdiag gather log –scope observer –since 1h# 在线分析最近 30 分钟的日志该指令执行的时候会从远程主机上拉取最近30分钟的日志进行分析诊断出出现过的错误 obdiag analyze log –scope observer –since 30m离线分析日志 ls -lh test/ -rw-r–r– 1 admin staff 256M Oct 8 17:24 observer.log.20231008104204260 -rw-r–r– 1 admin staff 256M Oct 8 17:24 observer.log.20231008111305072 -rw-r–r– 1 admin staff 256M Oct 8 17:24 observer.log.20231008114410668 -rw-r–r– 1 admin staff 18K Oct 8 17:24 observer.log.wf.20231008104204260 -rw-r–r– 1 admin staff 19K Oct 8 17:24 observer.log.wf.20231008111305072 -rw-r–r– 1 admin staff 18K Oct 8 17:24 observer.log.wf.20231008114410668obdiag analyze log –files test/Analyze OceanBase Offline Log Summary: ————————————————————————————————————————————————————————————————————————————————– | Node | Status | FileName | ErrorCode | Message | Count || 127.0.0.1 | Completed | analyze_pack_20231008172144127_0_01/observer.log.20231008104204260 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 2 | ————————————————————————————————————————————————————————————————————————————————– | 127.0.0.1 | Completed | analyze_pack_20231008172144127_0_01/observer.log.20231008111305072 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 8 | ————————————————————————————————————————————————————————————————————————————————– | 127.0.0.1 | Completed | analyze_pack_20231008172144127_0_01/observer.log.20231008114410668 | -5006 | You have an error in your SQL syntax; check the manual that corresponds to your OceanBase version for the right syntax to use | 10 | ————————————————————————————————————————————————————————————————————————————————– | 127.0.0.1 | Completed | analyze_pack_20231008172144127_0_01/observer.log.20231008114410668 | -4009 | IO error | 20 | ————————————————————————————————————————————————————————————————————————————————– For more details, please run cmd cat analyze_pack_20231008172144/result_details.txt 《OceanBase诊断系列》分享持续更新也欢迎大家贡献自己的诊断OceanBase的方法。 第一篇如何修炼成“神医”——《OceanBase诊断系列》之一第二篇走进SQL审计视图——《OceanBase诊断系列》之二第三篇​​​​​​​快速收集诊断信息敏捷诊断工具obdiag应用实践——《OceanBase诊断系列》之三​​​​​​​第四篇如何快速分析OB集群日志敏捷诊断工具obdiag分析能力实践——《OceanBase诊断系列》之四