static char *opt_channel_name;
static char *opt_session_name;
static int opt_kernel;
-static int opt_pid_all;
static int opt_userspace;
static char *opt_cmd_name;
static pid_t opt_pid;
{"event", 'e', POPT_ARG_STRING, &opt_event_name, 0, 0, 0},
{"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
{"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
- {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
{"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
{"type", 't', POPT_ARG_STRING, &opt_type, OPT_TYPE, 0, 0},
{0, 0, 0, 0, 0, 0, 0}
fprintf(ofp, " -e, --event NAME Apply on event\n");
fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
- fprintf(ofp, " --all If -u, apply on all traceable apps\n");
- fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
+ fprintf(ofp, " If no CMD, the domain used is UST global\n");
+ fprintf(ofp, " or else the domain is UST EXEC_NAME\n");
+ fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n");
fprintf(ofp, " -t, --type TYPE Context type. You can repeat that option on\n");
fprintf(ofp, " the command line.\n");
fprintf(ofp, " TYPE can be one of the strings below:\n");
dom.type = LTTNG_DOMAIN_UST_EXEC_NAME;
strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX);
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
#include "../utils.h"
static char *opt_channels;
-static char *opt_kernel;
+static int opt_kernel;
static char *opt_session_name;
-static int opt_pid_all;
static int opt_userspace;
static char *opt_cmd_name;
static pid_t opt_pid;
{"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
{"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
{"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
- {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
{"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0}
};
fprintf(ofp, " -s, --session Apply on session name\n");
fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
- fprintf(ofp, " --all If -u, apply on all traceable apps\n");
- fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
+ fprintf(ofp, " If no CMD, the domain used is UST global\n");
+ fprintf(ofp, " or else the domain is UST EXEC_NAME\n");
+ fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n");
fprintf(ofp, "\n");
}
dom.type = LTTNG_DOMAIN_UST_EXEC_NAME;
strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX);
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
static int opt_kernel;
static char *opt_channel_name;
static char *opt_session_name;
-static int opt_pid_all;
static int opt_userspace;
static char *opt_cmd_name;
static int opt_disable_all;
{"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
{"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
{"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
- {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
{"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
{0, 0, 0, 0, 0, 0, 0}
};
fprintf(ofp, " -a, --all-events Disable all tracepoints\n");
fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
- fprintf(ofp, " --all If -u, apply on all traceable apps\n");
- fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
+ fprintf(ofp, " If no CMD, the domain used is UST global\n");
+ fprintf(ofp, " or else the domain is UST EXEC_NAME\n");
+ fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n");
fprintf(ofp, "\n");
}
channel_name = opt_channel_name;
}
+ if (opt_kernel && opt_userspace) {
+ ERR("Can't use -k/--kernel and -u/--userspace together");
+ ret = CMD_FATAL;
+ goto error;
+ }
+
if (opt_kernel) {
dom.type = LTTNG_DOMAIN_KERNEL;
} else if (opt_pid != 0) {
strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX);
dom.attr.exec_name[NAME_MAX - 1] = '\0';
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
DBG("Disabling kernel event %s in channel %s",
event_name, channel_name);
} else if (opt_userspace) { /* User-space tracer action */
- if (!opt_pid_all) {
- MSG("Only supporting tracing all UST processes (-u --all) for now.");
+ if (opt_cmd_name != NULL || opt_pid) {
+ MSG("Only supporting tracing all UST processes (-u) for now.");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
DBG("Disabling UST event %s in channel %s",
event_name, channel_name);
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
goto error;
}
static int opt_kernel;
static char *opt_cmd_name;
static char *opt_session_name;
-static int opt_pid_all;
static int opt_userspace;
static char *opt_cmd_name;
static pid_t opt_pid;
{"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
{"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
{"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
- {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
{"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
{"discard", 0, POPT_ARG_NONE, 0, OPT_DISCARD, 0, 0},
{"overwrite", 0, POPT_ARG_NONE, 0, OPT_OVERWRITE, 0, 0},
fprintf(ofp, " -h, --help Show this help\n");
fprintf(ofp, " -s, --session Apply on session name\n");
fprintf(ofp, " -k, --kernel Apply on the kernel tracer\n");
- fprintf(ofp, " -u, --userspace [CMD] Apply on the user-space tracer\n");
- fprintf(ofp, " --all If -u, apply on all traceable apps\n");
- fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
+ fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
+ fprintf(ofp, " If no CMD, the domain used is UST global\n");
+ fprintf(ofp, " or else the domain is UST EXEC_NAME\n");
+ fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n");
fprintf(ofp, "\n");
fprintf(ofp, "Channel options:\n");
fprintf(ofp, " --discard Discard event when buffers are full%s\n",
dom.type = LTTNG_DOMAIN_UST_EXEC_NAME;
strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX);
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
static int opt_event_type;
static int opt_kernel;
static char *opt_session_name;
-static int opt_pid_all;
static int opt_userspace;
static char *opt_cmd_name;
static int opt_enable_all;
/* longName, shortName, argInfo, argPtr, value, descrip, argDesc */
{"help", 'h', POPT_ARG_NONE, 0, OPT_HELP, 0, 0},
{"session", 's', POPT_ARG_STRING, &opt_session_name, 0, 0, 0},
- {"all-events", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
+ {"all", 'a', POPT_ARG_VAL, &opt_enable_all, 1, 0, 0},
{"channel", 'c', POPT_ARG_STRING, &opt_channel_name, 0, 0, 0},
{"kernel", 'k', POPT_ARG_VAL, &opt_kernel, 1, 0, 0},
{"userspace", 'u', POPT_ARG_STRING | POPT_ARGFLAG_OPTIONAL, &opt_cmd_name, OPT_USERSPACE, 0, 0},
- {"all", 0, POPT_ARG_VAL, &opt_pid_all, 1, 0, 0},
{"pid", 'p', POPT_ARG_INT, &opt_pid, 0, 0, 0},
{"tracepoint", 0, POPT_ARG_NONE, 0, OPT_TRACEPOINT, 0, 0},
{"probe", 0, POPT_ARG_STRING, &opt_probe, OPT_PROBE, 0, 0},
fprintf(ofp, " -h, --help Show this help\n");
fprintf(ofp, " -s, --session Apply on session name\n");
fprintf(ofp, " -c, --channel Apply on this channel\n");
- fprintf(ofp, " -a, --all-events Enable all tracepoints\n");
+ fprintf(ofp, " -a, --all Enable all tracepoints\n");
fprintf(ofp, " -k, --kernel Apply for the kernel tracer\n");
fprintf(ofp, " -u, --userspace [CMD] Apply for the user-space tracer\n");
- fprintf(ofp, " --all If -u, apply on all traceable apps\n");
- fprintf(ofp, " -p, --pid PID If -u, apply on a specific PID\n");
+ fprintf(ofp, " If no CMD, the domain used is UST global\n");
+ fprintf(ofp, " or else the domain is UST EXEC_NAME\n");
+ fprintf(ofp, " -p, --pid PID If -u, apply to specific PID (domain: UST PID)\n");
fprintf(ofp, "\n");
fprintf(ofp, "Event options:\n");
fprintf(ofp, " --tracepoint Tracepoint event (default)\n");
}
if (opt_kernel && opt_userspace) {
- MSG("Choose only one of --kernel or --userspace");
+ ERR("Can't use -k/--kernel and -u/--userspace together");
ret = CMD_FATAL;
goto error;
}
dom.type = LTTNG_DOMAIN_UST_EXEC_NAME;
strncpy(dom.attr.exec_name, opt_cmd_name, NAME_MAX);
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
goto error;
}
} else if (opt_userspace) { /* User-space tracer action */
- if (!opt_pid_all) {
- MSG("Only supporting tracing all UST processes "
- "(-u --all) for now.");
+ if (opt_cmd_name != NULL || opt_pid) {
+ MSG("Only supporting tracing all UST processes (-u) for now.");
ret = CMD_NOT_IMPLEMENTED;
goto error;
}
goto error;
}
} else {
- ERR("Please specify a tracer (--kernel or --userspace)");
+ ERR("Please specify a tracer (-k/--kernel or -u/--userspace)");
goto error;
}