X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=src%2Fbin%2Flttng%2Fcommands%2Fload.c;h=e732baa80e9f1200fc4e1994f94533d77c718b6e;hb=2c521c63a46d6c79a7819a822d109ccdd48b6064;hp=4d38c792b82cc4e9ffe69253b04457410906eb9a;hpb=1114378362fe014288ccaab1d1fed52f7b5703f8;p=lttng-tools.git diff --git a/src/bin/lttng/commands/load.c b/src/bin/lttng/commands/load.c index 4d38c792b..e732baa80 100644 --- a/src/bin/lttng/commands/load.c +++ b/src/bin/lttng/commands/load.c @@ -55,10 +55,14 @@ static void usage(FILE *ofp) fprintf(ofp, "usage: lttng load [OPTIONS] [SESSION]\n"); fprintf(ofp, "\n"); fprintf(ofp, "Options:\n"); - fprintf(ofp, " -h, --help Show this help\n"); - fprintf(ofp, " -a, --all Load all sessions (default)\n"); - fprintf(ofp, " -i, --input-path Input path of the session configuration(s)\n"); - fprintf(ofp, " -f, --force Override existing session configuration(s)\n"); + fprintf(ofp, " -h, --help Show this help\n"); + fprintf(ofp, " -a, --all Load all sessions (default)\n"); + fprintf(ofp, " -i, --input-path PATH Input path of the session file(s).\n"); + fprintf(ofp, " If a directory, load all files in it\n"); + fprintf(ofp, " else try to load the given file.\n"); + fprintf(ofp, " -f, --force Override existing session(s).\n"); + fprintf(ofp, " This will destroy existing session(s)\n"); + fprintf(ofp, " before creating new one(s).\n"); } /* @@ -93,18 +97,23 @@ int cmd_load(int argc, const char **argv) if (!opt_load_all) { session_name = poptGetArg(pc); - if (!session_name) { - ERR("A session name must be provided if the \"all\" option is not used."); - ret = CMD_ERROR; - goto end; + if (session_name) { + DBG2("Loading session name: %s", session_name); } - DBG2("Loading session name: %s", session_name); } ret = config_load_session(opt_input_path, session_name, opt_force); if (ret) { ERR("%s", lttng_strerror(ret)); ret = -ret; + } else { + if (opt_load_all) { + MSG("All sessions have been loaded successfully"); + } else if (session_name) { + MSG("Session %s has been loaded successfully", session_name); + } else { + MSG("Session has been loaded successfully"); + } } end: poptFreeContext(pc);