YLang

目录

介绍

这个命令用来执行 Ylang 脚本。

run-y 命令是对这个子命令的包装,使用起来更加方便, 推荐使用 run-y 命令来执行 Ylang 脚本。

回到目录

用法

Usage: orxray ylang [OPTIONS] [ylang file]

OPTIONS:
    -a, --agent integer                Agent ID. Specify the agent to run the ylang script.
    -e string                          Y language script. Only one of ylang file and -e option can be set.
    -v, --verbose                      Print verbose informations.
    -q, --quiet                        Avoid print verbose informations.
    --print-job-uri                    Print the job uri after running the script.
    -p, --pid integer                  Target process ID.  Specify the process ID to be analyzed by the ylang.
    -f, --file string                  process file. Specify the path to the process file to be analyzed in ylang.

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

-x, --pid "pid number"

指定你想要分析的进程 ID。

-a, --agent "agent id"

指定运行此脚本的 agent,如果不指定,Ylang 脚本会运行在默认 agent 上。

回到目录

示例

运行 Ylang 脚本

orxray ylang res_mem.y -x 6378

创建 Ylang 工具

以下的指令可以创建一个 Ylang 脚本的分析器,名字为 res_mem。

你也可以使用orxray analyzer create命令来创建 Ylang 分析器。

orxray new-ylang res_mem res_mem.y --desc "calculator process res memory."

回到目录