YSQL

目录

介绍

这个子命令用来执行 YSQL 脚本。

回到目录

用法

Usage: orxray ysql [OPTIONS] [YSQL file]

OPTIONS:
    -p, --pid integer                  Target process ID. Specify the process ID to be analyzed by the YSQL.
    -a, --agent integer                Agent ID. Specify the agent to run the YSQL script.
    -e string                          YSQL statement.
    -t integer                         Sample time in seconds.
    --no-need-unwind                   The script no need unwind data.

GLOBAL OPTIONS:
    --help
    --config                           specify config file, default is ~/.orxray/config.

[YSQL file]

指定要运行的 YSQL 脚本文件。

-p, --pid "pid number"

指定想要分析的进程 ID。

-a, --agent "agent id"

指定分析器运行在哪个 agent 上。

-e "YSQL statement"

指定运行的 YSQL 语句。

回到目录

示例

执行 YSQL 语句

以下命令在默认 agent 上执行了一段 YSQL 语句, 分析进程6378的内存使用情况。

orxray ysql "select res_mem from proc" -x 6378

使用 YSQL 语句创建一个基于 YSQL 的分析器

orxray new-ysql res_mem -c "select res_mem from proc"

使用 YSQL 脚本文本创建一个基于 YSQL 的分析器

orxray new-ysql res_mem res_mem.ysql

回到目录