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

回到目錄